main.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434
  1. /* classes attached to <body> */
  2. .fc-not-allowed,
  3. .fc-not-allowed .fc-event { /* override events' custom cursors */
  4. cursor: not-allowed;
  5. }
  6. .fc-unselectable {
  7. -webkit-user-select: none;
  8. -moz-user-select: none;
  9. -ms-user-select: none;
  10. user-select: none;
  11. -webkit-touch-callout: none;
  12. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  13. }
  14. .fc {
  15. /* layout of immediate children */
  16. display: flex;
  17. flex-direction: column;
  18. font-size: 1em
  19. }
  20. .fc,
  21. .fc *,
  22. .fc *:before,
  23. .fc *:after {
  24. box-sizing: border-box;
  25. }
  26. .fc table {
  27. border-collapse: collapse;
  28. border-spacing: 0;
  29. font-size: 1em; /* normalize cross-browser */
  30. }
  31. .fc th {
  32. text-align: center;
  33. }
  34. .fc th,
  35. .fc td {
  36. vertical-align: top;
  37. padding: 0;
  38. }
  39. .fc a[data-navlink] {
  40. cursor: pointer;
  41. }
  42. .fc a[data-navlink]:hover {
  43. text-decoration: underline;
  44. }
  45. .fc-direction-ltr {
  46. direction: ltr;
  47. text-align: left;
  48. }
  49. .fc-direction-rtl {
  50. direction: rtl;
  51. text-align: right;
  52. }
  53. .fc-theme-standard td,
  54. .fc-theme-standard th {
  55. border: 1px solid #ddd;
  56. border: 1px solid var(--fc-border-color, #ddd);
  57. }
  58. /* for FF, which doesn't expand a 100% div within a table cell. use absolute positioning */
  59. /* inner-wrappers are responsible for being absolute */
  60. /* TODO: best place for this? */
  61. .fc-liquid-hack td,
  62. .fc-liquid-hack th {
  63. position: relative;
  64. }
  65. @font-face {
  66. font-family: 'fcicons';
  67. src: url("data:application/x-font-ttf;charset=utf-8;base64,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") format('truetype');
  68. font-weight: normal;
  69. font-style: normal;
  70. }
  71. .fc-icon {
  72. /* added for fc */
  73. display: inline-block;
  74. width: 1em;
  75. height: 1em;
  76. text-align: center;
  77. -webkit-user-select: none;
  78. -moz-user-select: none;
  79. -ms-user-select: none;
  80. user-select: none;
  81. /* use !important to prevent issues with browser extensions that change fonts */
  82. font-family: 'fcicons' !important;
  83. speak: none;
  84. font-style: normal;
  85. font-weight: normal;
  86. font-variant: normal;
  87. text-transform: none;
  88. line-height: 1;
  89. /* Better Font Rendering =========== */
  90. -webkit-font-smoothing: antialiased;
  91. -moz-osx-font-smoothing: grayscale;
  92. }
  93. .fc-icon-chevron-left:before {
  94. content: "\e900";
  95. }
  96. .fc-icon-chevron-right:before {
  97. content: "\e901";
  98. }
  99. .fc-icon-chevrons-left:before {
  100. content: "\e902";
  101. }
  102. .fc-icon-chevrons-right:before {
  103. content: "\e903";
  104. }
  105. .fc-icon-minus-square:before {
  106. content: "\e904";
  107. }
  108. .fc-icon-plus-square:before {
  109. content: "\e905";
  110. }
  111. .fc-icon-x:before {
  112. content: "\e906";
  113. }
  114. /*
  115. Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
  116. These styles only apply when the standard-theme is activated.
  117. When it's NOT activated, the fc-button classes won't even be in the DOM.
  118. */
  119. .fc {
  120. /* reset */
  121. }
  122. .fc .fc-button {
  123. border-radius: 0;
  124. overflow: visible;
  125. text-transform: none;
  126. margin: 0;
  127. font-family: inherit;
  128. font-size: inherit;
  129. line-height: inherit;
  130. }
  131. .fc .fc-button:focus {
  132. outline: 1px dotted;
  133. outline: 5px auto -webkit-focus-ring-color;
  134. }
  135. .fc .fc-button {
  136. -webkit-appearance: button;
  137. }
  138. .fc .fc-button:not(:disabled) {
  139. cursor: pointer;
  140. }
  141. .fc .fc-button::-moz-focus-inner {
  142. padding: 0;
  143. border-style: none;
  144. }
  145. .fc {
  146. /* theme */
  147. }
  148. .fc .fc-button {
  149. display: inline-block;
  150. font-weight: 400;
  151. text-align: center;
  152. vertical-align: middle;
  153. -webkit-user-select: none;
  154. -moz-user-select: none;
  155. -ms-user-select: none;
  156. user-select: none;
  157. background-color: transparent;
  158. border: 1px solid transparent;
  159. padding: 0.8vh 1.3vw;
  160. font-size: 2vw;
  161. line-height: 1.5;
  162. border-radius: 0.5vw;
  163. }
  164. .fc .fc-button:hover {
  165. text-decoration: none;
  166. }
  167. .fc .fc-button:focus {
  168. outline: 0;
  169. box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
  170. }
  171. .fc .fc-button:disabled {
  172. opacity: 0.65;
  173. }
  174. .fc {
  175. /* "primary" coloring */
  176. }
  177. .fc .fc-button-primary {
  178. color: #fff;
  179. color: var(--fc-button-text-color, #fff);
  180. background-color: #2C3E50;
  181. background-color: var(--fc-button-bg-color, #2C3E50);
  182. border-color: #2C3E50;
  183. border-color: var(--fc-button-border-color, #2C3E50);
  184. }
  185. .fc .fc-button-primary:hover {
  186. color: #fff;
  187. color: var(--fc-button-text-color, #fff);
  188. background-color: #1e2b37;
  189. background-color: var(--fc-button-hover-bg-color, #1e2b37);
  190. border-color: #1a252f;
  191. border-color: var(--fc-button-hover-border-color, #1a252f);
  192. }
  193. .fc .fc-button-primary:disabled { /* not DRY */
  194. color: #fff;
  195. color: var(--fc-button-text-color, #fff);
  196. background-color: #2C3E50;
  197. background-color: var(--fc-button-bg-color, #2C3E50);
  198. border-color: #2C3E50;
  199. border-color: var(--fc-button-border-color, #2C3E50); /* overrides :hover */
  200. }
  201. .fc .fc-button-primary:focus {
  202. box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
  203. }
  204. .fc .fc-button-primary:not(:disabled):active,
  205. .fc .fc-button-primary:not(:disabled).fc-button-active {
  206. color: #fff;
  207. color: var(--fc-button-text-color, #fff);
  208. background-color: #1a252f;
  209. background-color: var(--fc-button-active-bg-color, #1a252f);
  210. border-color: #151e27;
  211. border-color: var(--fc-button-active-border-color, #151e27);
  212. }
  213. .fc .fc-button-primary:not(:disabled):active:focus,
  214. .fc .fc-button-primary:not(:disabled).fc-button-active:focus {
  215. box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
  216. }
  217. .fc {
  218. /* icons within buttons */
  219. }
  220. .fc .fc-button .fc-icon {
  221. vertical-align: middle;
  222. font-size: 1.5em; /* bump up the size (but don't make it bigger than line-height of button, which is 1.5em also) */
  223. }
  224. .fc .fc-button-group {
  225. position: relative;
  226. display: inline-flex;
  227. vertical-align: middle;
  228. }
  229. .fc .fc-button-group > .fc-button {
  230. position: relative;
  231. flex: 1 1 auto;
  232. }
  233. .fc .fc-button-group > .fc-button:hover {
  234. z-index: 1;
  235. }
  236. .fc .fc-button-group > .fc-button:focus,
  237. .fc .fc-button-group > .fc-button:active,
  238. .fc .fc-button-group > .fc-button.fc-button-active {
  239. z-index: 1;
  240. }
  241. .fc-direction-ltr .fc-button-group > .fc-button:not(:first-child) {
  242. margin-left: -1px;
  243. border-top-left-radius: 0;
  244. border-bottom-left-radius: 0;
  245. }
  246. .fc-direction-ltr .fc-button-group > .fc-button:not(:last-child) {
  247. border-top-right-radius: 0;
  248. border-bottom-right-radius: 0;
  249. }
  250. .fc-direction-rtl .fc-button-group > .fc-button:not(:first-child) {
  251. margin-right: -1px;
  252. border-top-right-radius: 0;
  253. border-bottom-right-radius: 0;
  254. }
  255. .fc-direction-rtl .fc-button-group > .fc-button:not(:last-child) {
  256. border-top-left-radius: 0;
  257. border-bottom-left-radius: 0;
  258. }
  259. .fc .fc-toolbar {
  260. display: flex;
  261. justify-content: space-between;
  262. align-items: center;
  263. }
  264. .fc .fc-toolbar.fc-header-toolbar {
  265. margin-bottom: 1.5em;
  266. }
  267. .fc .fc-toolbar.fc-footer-toolbar {
  268. margin-top: 1.5em;
  269. }
  270. .fc .fc-toolbar-title {
  271. font-size: 1.75vw;
  272. margin: 0;
  273. }
  274. .fc-direction-ltr .fc-toolbar > * > :not(:first-child) {
  275. margin-left: .75em; /* space between */
  276. }
  277. .fc-direction-rtl .fc-toolbar > * > :not(:first-child) {
  278. margin-right: .75em; /* space between */
  279. }
  280. .fc-direction-rtl .fc-toolbar-ltr { /* when the toolbar-chunk positioning system is explicitly left-to-right */
  281. flex-direction: row-reverse;
  282. }
  283. .fc .fc-scroller {
  284. -webkit-overflow-scrolling: touch;
  285. position: relative; /* for abs-positioned elements within */
  286. }
  287. .fc .fc-scroller-liquid {
  288. height: 100%;
  289. }
  290. .fc .fc-scroller-liquid-absolute {
  291. position: absolute;
  292. top: 0;
  293. right: 0;
  294. left: 0;
  295. bottom: 0;
  296. }
  297. .fc .fc-scroller-harness {
  298. position: relative;
  299. overflow: hidden;
  300. direction: ltr;
  301. /* hack for chrome computing the scroller's right/left wrong for rtl. undone below... */
  302. /* TODO: demonstrate in codepen */
  303. }
  304. .fc .fc-scroller-harness-liquid {
  305. height: 100%;
  306. }
  307. .fc-direction-rtl .fc-scroller-harness > .fc-scroller { /* undo above hack */
  308. direction: rtl;
  309. }
  310. .fc-theme-standard .fc-scrollgrid {
  311. border: 1px solid #ddd;
  312. border: 1px solid var(--fc-border-color, #ddd); /* bootstrap does this. match */
  313. }
  314. .fc .fc-scrollgrid,
  315. .fc .fc-scrollgrid table { /* all tables (self included) */
  316. width: 100%; /* because tables don't normally do this */
  317. table-layout: fixed;
  318. }
  319. .fc .fc-scrollgrid table { /* inner tables */
  320. border-top-style: hidden;
  321. border-left-style: hidden;
  322. border-right-style: hidden;
  323. }
  324. .fc .fc-scrollgrid {
  325. border-collapse: separate;
  326. border-right-width: 0;
  327. border-bottom-width: 0;
  328. }
  329. .fc .fc-scrollgrid-liquid {
  330. height: 100%;
  331. }
  332. .fc .fc-scrollgrid-section { /* a <tr> */
  333. height: 1px /* better than 0, for firefox */
  334. }
  335. .fc .fc-scrollgrid-section > td {
  336. height: 1px; /* needs a height so inner div within grow. better than 0, for firefox */
  337. }
  338. .fc .fc-scrollgrid-section table {
  339. height: 1px;
  340. /* for most browsers, if a height isn't set on the table, can't do liquid-height within cells */
  341. /* serves as a min-height. harmless */
  342. }
  343. .fc .fc-scrollgrid-section-liquid {
  344. height: auto
  345. }
  346. .fc .fc-scrollgrid-section-liquid > td {
  347. height: 100%; /* better than `auto`, for firefox */
  348. }
  349. .fc .fc-scrollgrid-section > * {
  350. border-top-width: 0;
  351. border-left-width: 0;
  352. }
  353. .fc .fc-scrollgrid-section-header > *,
  354. .fc .fc-scrollgrid-section-footer > * {
  355. border-bottom-width: 0;
  356. }
  357. .fc .fc-scrollgrid-section-body table,
  358. .fc .fc-scrollgrid-section-footer table {
  359. border-bottom-style: hidden; /* head keeps its bottom border tho */
  360. }
  361. .fc {
  362. /* stickiness */
  363. }
  364. .fc .fc-scrollgrid-section-sticky > * {
  365. background: #fff;
  366. background: var(--fc-page-bg-color, #fff);
  367. position: -webkit-sticky;
  368. position: sticky;
  369. z-index: 2; /* TODO: var */
  370. /* TODO: box-shadow when sticking */
  371. }
  372. .fc .fc-scrollgrid-section-header.fc-scrollgrid-section-sticky > * {
  373. top: 0; /* because border-sharing causes a gap at the top */
  374. /* TODO: give safari -1. has bug */
  375. }
  376. .fc .fc-scrollgrid-section-footer.fc-scrollgrid-section-sticky > * {
  377. bottom: 0; /* known bug: bottom-stickiness doesn't work in safari */
  378. }
  379. .fc .fc-scrollgrid-sticky-shim { /* for horizontal scrollbar */
  380. height: 1px; /* needs height to create scrollbars */
  381. margin-bottom: -1px;
  382. }
  383. .fc-sticky { /* no .fc wrap because used as child of body */
  384. position: -webkit-sticky;
  385. position: sticky;
  386. }
  387. .fc .fc-view-harness {
  388. flex-grow: 1; /* because this harness is WITHIN the .fc's flexbox */
  389. position: relative;
  390. }
  391. .fc {
  392. /* when the harness controls the height, make the view liquid */
  393. }
  394. .fc .fc-view-harness-active > .fc-view {
  395. position: absolute;
  396. top: 0;
  397. right: 0;
  398. bottom: 0;
  399. left: 0;
  400. }
  401. .fc .fc-col-header-cell-cushion {
  402. display: inline-block; /* x-browser for when sticky (when multi-tier header) */
  403. padding: 2px 4px;
  404. }
  405. .fc .fc-bg-event,
  406. .fc .fc-non-business,
  407. .fc .fc-highlight {
  408. /* will always have a harness with position:relative/absolute, so absolutely expand */
  409. position: absolute;
  410. top: 0;
  411. left: 0;
  412. right: 0;
  413. bottom: 0;
  414. }
  415. .fc .fc-non-business {
  416. background: rgba(215, 215, 215, 0.3);
  417. background: var(--fc-non-business-color, rgba(215, 215, 215, 0.3));
  418. }
  419. .fc .fc-bg-event {
  420. background: rgb(143, 223, 130);
  421. background: var(--fc-bg-event-color, rgb(143, 223, 130));
  422. opacity: 0.3;
  423. opacity: var(--fc-bg-event-opacity, 0.3)
  424. }
  425. .fc .fc-bg-event .fc-event-title {
  426. margin: .5em;
  427. font-size: .85em;
  428. font-size: var(--fc-small-font-size, .85em);
  429. font-style: italic;
  430. }
  431. .fc .fc-highlight {
  432. background: rgba(188, 232, 241, 0.3);
  433. background: var(--fc-highlight-color, rgba(188, 232, 241, 0.3));
  434. }
  435. .fc .fc-cell-shaded,
  436. .fc .fc-day-disabled {
  437. background: rgba(208, 208, 208, 0.3);
  438. background: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
  439. }
  440. /* link resets */
  441. /* ---------------------------------------------------------------------------------------------------- */
  442. a.fc-event,
  443. a.fc-event:hover {
  444. text-decoration: none;
  445. }
  446. /* cursor */
  447. .fc-event[href],
  448. .fc-event.fc-event-draggable {
  449. cursor: pointer;
  450. }
  451. /* event text content */
  452. /* ---------------------------------------------------------------------------------------------------- */
  453. .fc-event .fc-event-main {
  454. position: relative;
  455. z-index: 2;
  456. }
  457. /* dragging */
  458. /* ---------------------------------------------------------------------------------------------------- */
  459. .fc-event-dragging:not(.fc-event-selected) { /* MOUSE */
  460. opacity: 0.75;
  461. }
  462. .fc-event-dragging.fc-event-selected { /* TOUCH */
  463. box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  464. }
  465. /* resizing */
  466. /* ---------------------------------------------------------------------------------------------------- */
  467. /* (subclasses should hone positioning for touch and non-touch) */
  468. .fc-event .fc-event-resizer {
  469. display: none;
  470. position: absolute;
  471. z-index: 4;
  472. }
  473. .fc-event:hover, /* MOUSE */
  474. .fc-event-selected { /* TOUCH */
  475. }
  476. .fc-event:hover .fc-event-resizer, .fc-event-selected .fc-event-resizer {
  477. display: block;
  478. }
  479. .fc-event-selected .fc-event-resizer {
  480. border-radius: 4px;
  481. border-radius: calc(var(--fc-event-resizer-dot-total-width, 8px) / 2);
  482. border-width: 1px;
  483. border-width: var(--fc-event-resizer-dot-border-width, 1px);
  484. width: 8px;
  485. width: var(--fc-event-resizer-dot-total-width, 8px);
  486. height: 8px;
  487. height: var(--fc-event-resizer-dot-total-width, 8px);
  488. border-style: solid;
  489. border-color: inherit;
  490. background: #fff;
  491. background: var(--fc-page-bg-color, #fff)
  492. /* expand hit area */
  493. }
  494. .fc-event-selected .fc-event-resizer:before {
  495. content: '';
  496. position: absolute;
  497. top: -20px;
  498. left: -20px;
  499. right: -20px;
  500. bottom: -20px;
  501. }
  502. /* selecting (always TOUCH) */
  503. /* ---------------------------------------------------------------------------------------------------- */
  504. .fc-event-selected {
  505. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2)
  506. /* expand hit area (subclasses should expand) */
  507. }
  508. .fc-event-selected:before {
  509. content: "";
  510. position: absolute;
  511. z-index: 3;
  512. top: 0;
  513. left: 0;
  514. right: 0;
  515. bottom: 0;
  516. }
  517. .fc-event-selected {
  518. /* dimmer effect */
  519. }
  520. .fc-event-selected:after {
  521. content: "";
  522. background: rgba(0, 0, 0, 0.25);
  523. background: var(--fc-event-selected-overlay-color, rgba(0, 0, 0, 0.25));
  524. position: absolute;
  525. z-index: 1;
  526. /* assume there's a border on all sides. overcome it. */
  527. /* sometimes there's NOT a border, in which case the dimmer will go over */
  528. /* an adjacent border, which looks fine. */
  529. top: -1px;
  530. left: -1px;
  531. right: -1px;
  532. bottom: -1px;
  533. }
  534. /*
  535. A HORIZONTAL event
  536. */
  537. .fc-h-event { /* allowed to be top-level */
  538. display: block;
  539. border: 1px solid #3788d8;
  540. border: 1px solid var(--fc-event-border-color, #3788d8);
  541. background-color: #3788d8;
  542. background-color: var(--fc-event-bg-color, #3788d8)
  543. }
  544. .fc-h-event .fc-event-main {
  545. color: #fff;
  546. color: var(--fc-event-text-color, #fff);
  547. }
  548. .fc-h-event .fc-event-main-frame {
  549. display: flex; /* for make fc-event-title-container expand */
  550. }
  551. .fc-h-event .fc-event-time {
  552. max-width: 100%; /* clip overflow on this element */
  553. overflow: hidden;
  554. }
  555. .fc-h-event .fc-event-title-container { /* serves as a container for the sticky cushion */
  556. flex-grow: 1;
  557. flex-shrink: 1;
  558. min-width: 0; /* important for allowing to shrink all the way */
  559. }
  560. .fc-h-event .fc-event-title {
  561. display: inline-block; /* need this to be sticky cross-browser */
  562. vertical-align: top; /* for not messing up line-height */
  563. left: 0; /* for sticky */
  564. right: 0; /* for sticky */
  565. max-width: 100%; /* clip overflow on this element */
  566. overflow: hidden;
  567. }
  568. .fc-h-event.fc-event-selected:before {
  569. /* expand hit area */
  570. top: -10px;
  571. bottom: -10px;
  572. }
  573. /* adjust border and border-radius (if there is any) for non-start/end */
  574. .fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-start),
  575. .fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-end) {
  576. border-top-left-radius: 0;
  577. border-bottom-left-radius: 0;
  578. border-left-width: 0;
  579. }
  580. .fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-end),
  581. .fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-start) {
  582. border-top-right-radius: 0;
  583. border-bottom-right-radius: 0;
  584. border-right-width: 0;
  585. }
  586. /* resizers */
  587. .fc-h-event:not(.fc-event-selected) .fc-event-resizer {
  588. top: 0;
  589. bottom: 0;
  590. width: 8px;
  591. width: var(--fc-event-resizer-thickness, 8px);
  592. }
  593. .fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start,
  594. .fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end {
  595. cursor: w-resize;
  596. left: -4px;
  597. left: calc(var(--fc-event-resizer-thickness, 8px) / -2);
  598. }
  599. .fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end,
  600. .fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start {
  601. cursor: e-resize;
  602. right: -4px;
  603. right: calc(var(--fc-event-resizer-thickness, 8px) / -2);
  604. }
  605. /* resizers for TOUCH */
  606. .fc-h-event.fc-event-selected .fc-event-resizer {
  607. top: 50%;
  608. margin-top: -4px;
  609. margin-top: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
  610. }
  611. .fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-start,
  612. .fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-end {
  613. left: -4px;
  614. left: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
  615. }
  616. .fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-end,
  617. .fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-start {
  618. right: -4px;
  619. right: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
  620. }
  621. :root {
  622. --fc-daygrid-event-dot-width: 8px;
  623. }
  624. .fc .fc-popover {
  625. position: fixed;
  626. top: 0; /* for when not positioned yet */
  627. box-shadow: 0 2px 6px rgba(0,0,0,.15);
  628. }
  629. .fc .fc-popover-header {
  630. display: flex;
  631. flex-direction: row;
  632. justify-content: space-between;
  633. align-items: center;
  634. padding: 3px 4px;
  635. }
  636. .fc .fc-popover-title {
  637. margin: 0 2px;
  638. }
  639. .fc .fc-popover-close {
  640. cursor: pointer;
  641. opacity: 0.65;
  642. font-size: 1.1em;
  643. }
  644. .fc-theme-standard .fc-popover {
  645. border: 1px solid #ddd;
  646. border: 1px solid var(--fc-border-color, #ddd);
  647. background: #fff;
  648. background: var(--fc-page-bg-color, #fff);
  649. }
  650. .fc-theme-standard .fc-popover-header {
  651. background: rgba(208, 208, 208, 0.3);
  652. background: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
  653. }
  654. /* help things clear margins of inner content */
  655. .fc-daygrid-day-frame,
  656. .fc-daygrid-day-events,
  657. .fc-daygrid-event-harness { /* for event top/bottom margins */
  658. }
  659. .fc-daygrid-day-frame:before, .fc-daygrid-day-events:before, .fc-daygrid-event-harness:before {
  660. content: "";
  661. clear: both;
  662. display: table; }
  663. .fc-daygrid-day-frame:after, .fc-daygrid-day-events:after, .fc-daygrid-event-harness:after {
  664. content: "";
  665. clear: both;
  666. display: table; }
  667. .fc .fc-daygrid-body { /* a <div> that wraps the table */
  668. position: relative;
  669. z-index: 1; /* container inner z-index's because <tr>s can't do it */
  670. }
  671. .fc .fc-daygrid-day.fc-day-today {
  672. background-color: rgba(255, 220, 40, 0.15);
  673. background-color: var(--fc-today-bg-color, rgba(255, 220, 40, 0.15));
  674. }
  675. .fc .fc-daygrid-day-frame {
  676. position: relative;
  677. min-height: 100%; /* seems to work better than `height` because sets height after rows/cells naturally do it */
  678. }
  679. .fc {
  680. /* cell top */
  681. }
  682. .fc .fc-daygrid-day-top {
  683. display: flex;
  684. flex-direction: row-reverse;
  685. position: absolute;
  686. font-size: 4vw;
  687. opacity: 50%;
  688. right: 0;
  689. bottom: 0;
  690. }
  691. .fc .fc-day-other .fc-daygrid-day-top {
  692. opacity: 0.3;
  693. }
  694. .fc {
  695. /* day number (within cell top) */
  696. }
  697. .fc .fc-daygrid-day-number {
  698. position: relative;
  699. z-index: 4;
  700. padding: 4px;
  701. }
  702. .fc {
  703. /* event container */
  704. }
  705. .fc .fc-daygrid-day-events {
  706. margin-top: 1px; /* needs to be margin, not padding, so that available cell height can be computed */
  707. }
  708. .fc {
  709. /* positioning for balanced vs natural */
  710. }
  711. .fc .fc-daygrid-body-balanced .fc-daygrid-day-events {
  712. position: absolute;
  713. left: 0;
  714. right: 0;
  715. }
  716. .fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
  717. position: relative; /* for containing abs positioned event harnesses */
  718. min-height: 2em; /* in addition to being a min-height during natural height, equalizes the heights a little bit */
  719. }
  720. .fc .fc-daygrid-body-natural { /* can coexist with -unbalanced */
  721. }
  722. .fc .fc-daygrid-body-natural .fc-daygrid-day-events {
  723. margin-bottom: 1em;
  724. }
  725. .fc {
  726. /* event harness */
  727. }
  728. .fc .fc-daygrid-event-harness {
  729. position: relative;
  730. }
  731. .fc .fc-daygrid-event-harness-abs {
  732. position: absolute;
  733. top: 0; /* fallback coords for when cannot yet be computed */
  734. left: 0; /* */
  735. right: 0; /* */
  736. }
  737. .fc .fc-daygrid-bg-harness {
  738. position: absolute;
  739. top: 0;
  740. bottom: 0;
  741. }
  742. .fc {
  743. /* bg content */
  744. }
  745. .fc .fc-daygrid-day-bg .fc-non-business { z-index: 1 }
  746. .fc .fc-daygrid-day-bg .fc-bg-event { z-index: 2 }
  747. .fc .fc-daygrid-day-bg .fc-highlight { z-index: 3 }
  748. .fc {
  749. /* events */
  750. }
  751. .fc .fc-daygrid-event {
  752. z-index: 6;
  753. margin-top: 1px;
  754. }
  755. .fc .fc-daygrid-event.fc-event-mirror {
  756. z-index: 7;
  757. }
  758. .fc {
  759. /* cell bottom (within day-events) */
  760. }
  761. .fc .fc-daygrid-day-bottom {
  762. font-size: .85em;
  763. margin: 2px 3px 0;
  764. }
  765. .fc .fc-daygrid-more-link {
  766. position: relative;
  767. z-index: 4;
  768. cursor: pointer;
  769. }
  770. .fc {
  771. /* week number (within frame) */
  772. }
  773. .fc .fc-daygrid-week-number {
  774. position: absolute;
  775. z-index: 5;
  776. top: 0;
  777. padding: 2px;
  778. min-width: 1.5em;
  779. text-align: center;
  780. background-color: rgba(208, 208, 208, 0.3);
  781. background-color: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
  782. color: #808080;
  783. color: var(--fc-neutral-text-color, #808080);
  784. }
  785. .fc {
  786. /* popover */
  787. }
  788. .fc .fc-more-popover {
  789. z-index: 8;
  790. }
  791. .fc .fc-more-popover .fc-popover-body {
  792. min-width: 220px;
  793. padding: 10px;
  794. }
  795. .fc-direction-ltr .fc-daygrid-event.fc-event-start,
  796. .fc-direction-rtl .fc-daygrid-event.fc-event-end {
  797. margin-left: 2px;
  798. }
  799. .fc-direction-ltr .fc-daygrid-event.fc-event-end,
  800. .fc-direction-rtl .fc-daygrid-event.fc-event-start {
  801. margin-right: 2px;
  802. }
  803. .fc-direction-ltr .fc-daygrid-week-number {
  804. left: 0;
  805. border-radius: 0 0 3px 0;
  806. }
  807. .fc-direction-rtl .fc-daygrid-week-number {
  808. right: 0;
  809. border-radius: 0 0 0 3px;
  810. }
  811. .fc-liquid-hack .fc-daygrid-day-frame {
  812. position: static; /* will cause inner absolute stuff to expand to <td> */
  813. }
  814. .fc-daygrid-event { /* make root-level, because will be dragged-and-dropped outside of a component root */
  815. position: relative; /* for z-indexes assigned later */
  816. white-space: nowrap;
  817. border-radius: 3px; /* dot event needs this to when selected */
  818. font-size: .85em;
  819. font-size: var(--fc-small-font-size, .85em);
  820. }
  821. /* --- the rectangle ("block") style of event --- */
  822. .fc-daygrid-block-event .fc-event-time {
  823. font-weight: bold;
  824. }
  825. .fc-daygrid-block-event .fc-event-time,
  826. .fc-daygrid-block-event .fc-event-title {
  827. padding: 1px;
  828. }
  829. /* --- the dot style of event --- */
  830. .fc-daygrid-dot-event {
  831. display: flex;
  832. align-items: center;
  833. padding: 2px 0
  834. }
  835. .fc-daygrid-dot-event .fc-event-title {
  836. flex-grow: 1;
  837. flex-shrink: 1;
  838. min-width: 0; /* important for allowing to shrink all the way */
  839. overflow: hidden;
  840. font-weight: bold;
  841. }
  842. .fc-daygrid-dot-event:hover,
  843. .fc-daygrid-dot-event.fc-event-mirror {
  844. background: rgba(0, 0, 0, 0.1);
  845. }
  846. .fc-daygrid-dot-event.fc-event-selected:before {
  847. /* expand hit area */
  848. top: -10px;
  849. bottom: -10px;
  850. }
  851. .fc-daygrid-event-dot { /* the actual dot */
  852. margin: 0 4px;
  853. box-sizing: content-box;
  854. width: 0;
  855. height: 0;
  856. border: 4px solid #3788d8;
  857. border: calc(var(--fc-daygrid-event-dot-width, 8px) / 2) solid var(--fc-event-border-color, #3788d8);
  858. border-radius: 4px;
  859. border-radius: calc(var(--fc-daygrid-event-dot-width, 8px) / 2);
  860. }
  861. /* --- spacing between time and title --- */
  862. .fc-direction-ltr .fc-daygrid-event .fc-event-time {
  863. margin-right: 3px;
  864. }
  865. .fc-direction-rtl .fc-daygrid-event .fc-event-time {
  866. margin-left: 3px;
  867. }
  868. /*
  869. A VERTICAL event
  870. */
  871. .fc-v-event { /* allowed to be top-level */
  872. display: block;
  873. border: 1px solid #3788d8;
  874. border: 1px solid var(--fc-event-border-color, #3788d8);
  875. background-color: #3788d8;
  876. background-color: var(--fc-event-bg-color, #3788d8)
  877. }
  878. .fc-v-event .fc-event-main {
  879. color: #fff;
  880. color: var(--fc-event-text-color, #fff);
  881. height: 100%;
  882. }
  883. .fc-v-event .fc-event-main-frame {
  884. height: 100%;
  885. display: flex;
  886. flex-direction: column;
  887. }
  888. .fc-v-event .fc-event-time {
  889. flex-grow: 0;
  890. flex-shrink: 0;
  891. max-height: 100%;
  892. overflow: hidden;
  893. }
  894. .fc-v-event .fc-event-title-container { /* a container for the sticky cushion */
  895. flex-grow: 1;
  896. flex-shrink: 1;
  897. min-height: 0; /* important for allowing to shrink all the way */
  898. }
  899. .fc-v-event .fc-event-title { /* will have fc-sticky on it */
  900. top: 0;
  901. bottom: 0;
  902. max-height: 100%; /* clip overflow */
  903. overflow: hidden;
  904. }
  905. .fc-v-event:not(.fc-event-start) {
  906. border-top-width: 0;
  907. border-top-left-radius: 0;
  908. border-top-right-radius: 0;
  909. }
  910. .fc-v-event:not(.fc-event-end) {
  911. border-bottom-width: 0;
  912. border-bottom-left-radius: 0;
  913. border-bottom-right-radius: 0;
  914. }
  915. .fc-v-event.fc-event-selected:before {
  916. /* expand hit area */
  917. left: -10px;
  918. right: -10px;
  919. }
  920. .fc-v-event {
  921. /* resizer (mouse AND touch) */
  922. }
  923. .fc-v-event .fc-event-resizer-start {
  924. cursor: n-resize;
  925. }
  926. .fc-v-event .fc-event-resizer-end {
  927. cursor: s-resize;
  928. }
  929. .fc-v-event {
  930. /* resizer for MOUSE */
  931. }
  932. .fc-v-event:not(.fc-event-selected) .fc-event-resizer {
  933. height: 8px;
  934. height: var(--fc-event-resizer-thickness, 8px);
  935. left: 0;
  936. right: 0;
  937. }
  938. .fc-v-event:not(.fc-event-selected) .fc-event-resizer-start {
  939. top: -4px;
  940. top: calc(var(--fc-event-resizer-thickness, 8px) / -2);
  941. }
  942. .fc-v-event:not(.fc-event-selected) .fc-event-resizer-end {
  943. bottom: -4px;
  944. bottom: calc(var(--fc-event-resizer-thickness, 8px) / -2);
  945. }
  946. .fc-v-event {
  947. /* resizer for TOUCH (when event is "selected") */
  948. }
  949. .fc-v-event.fc-event-selected .fc-event-resizer {
  950. left: 50%;
  951. margin-left: -4px;
  952. margin-left: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
  953. }
  954. .fc-v-event.fc-event-selected .fc-event-resizer-start {
  955. top: -4px;
  956. top: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
  957. }
  958. .fc-v-event.fc-event-selected .fc-event-resizer-end {
  959. bottom: -4px;
  960. bottom: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
  961. }
  962. .fc .fc-timegrid .fc-daygrid-body { /* the all-day daygrid within the timegrid view */
  963. z-index: 2; /* put above the timegrid-body so that more-popover is above everything. TODO: better solution */
  964. }
  965. .fc .fc-timegrid-divider {
  966. padding: 0 0 2px; /* browsers get confused when you set height. use padding instead */
  967. }
  968. .fc .fc-timegrid-body {
  969. position: relative;
  970. z-index: 1; /* scope the z-indexes of slots and cols */
  971. min-height: 100%; /* fill height always, even when slat table doesn't grow */
  972. }
  973. .fc .fc-timegrid-axis-chunk { /* for advanced ScrollGrid */
  974. position: relative /* offset parent for now-indicator-container */
  975. }
  976. .fc .fc-timegrid-axis-chunk > table {
  977. position: relative;
  978. z-index: 1; /* above the now-indicator-container */
  979. }
  980. .fc .fc-timegrid-slots {
  981. position: relative;
  982. z-index: 1;
  983. }
  984. .fc .fc-timegrid-slot { /* a <td> */
  985. height: 1.5em;
  986. border-bottom: 0 /* each cell owns its top border */
  987. }
  988. .fc .fc-timegrid-slot:empty:before {
  989. content: '\00a0'; /* make sure there's at least an empty space to create height for height syncing */
  990. }
  991. .fc .fc-timegrid-slot-minor {
  992. border-top-style: dotted;
  993. }
  994. .fc .fc-timegrid-slot-label-cushion {
  995. display: inline-block;
  996. white-space: nowrap;
  997. }
  998. .fc .fc-timegrid-slot-label {
  999. vertical-align: middle; /* vertical align the slots */
  1000. }
  1001. .fc {
  1002. /* slots AND axis cells (top-left corner of view including the "all-day" text) */
  1003. }
  1004. .fc .fc-timegrid-axis-cushion,
  1005. .fc .fc-timegrid-slot-label-cushion {
  1006. padding: 0 4px;
  1007. }
  1008. .fc {
  1009. /* axis cells (top-left corner of view including the "all-day" text) */
  1010. /* vertical align is more complicated, uses flexbox */
  1011. }
  1012. .fc .fc-timegrid-axis-frame-liquid {
  1013. height: 100%; /* will need liquid-hack in FF */
  1014. }
  1015. .fc .fc-timegrid-axis-frame {
  1016. overflow: hidden;
  1017. display: flex;
  1018. align-items: center; /* vertical align */
  1019. justify-content: flex-end; /* horizontal align. matches text-align below */
  1020. }
  1021. .fc .fc-timegrid-axis-cushion {
  1022. max-width: 60px; /* limits the width of the "all-day" text */
  1023. flex-shrink: 0; /* allows text to expand how it normally would, regardless of constrained width */
  1024. }
  1025. .fc-direction-ltr .fc-timegrid-slot-label-frame {
  1026. text-align: right;
  1027. }
  1028. .fc-direction-rtl .fc-timegrid-slot-label-frame {
  1029. text-align: left;
  1030. }
  1031. .fc-liquid-hack .fc-timegrid-axis-frame-liquid {
  1032. height: auto;
  1033. position: absolute;
  1034. top: 0;
  1035. right: 0;
  1036. bottom: 0;
  1037. left: 0;
  1038. }
  1039. .fc .fc-timegrid-col.fc-day-today {
  1040. background-color: rgba(255, 220, 40, 0.15);
  1041. background-color: var(--fc-today-bg-color, rgba(255, 220, 40, 0.15));
  1042. }
  1043. .fc .fc-timegrid-col-frame {
  1044. min-height: 100%; /* liquid-hack is below */
  1045. position: relative;
  1046. }
  1047. .fc-liquid-hack .fc-timegrid-col-frame {
  1048. height: auto;
  1049. position: absolute;
  1050. top: 0;
  1051. right: 0;
  1052. bottom: 0;
  1053. left: 0;
  1054. }
  1055. .fc-media-screen .fc-timegrid-cols {
  1056. position: absolute; /* no z-index. children will decide and go above slots */
  1057. top: 0;
  1058. left: 0;
  1059. right: 0;
  1060. bottom: 0
  1061. }
  1062. .fc-media-screen .fc-timegrid-cols > table {
  1063. height: 100%;
  1064. }
  1065. .fc-media-screen .fc-timegrid-col-bg,
  1066. .fc-media-screen .fc-timegrid-col-events,
  1067. .fc-media-screen .fc-timegrid-now-indicator-container {
  1068. position: absolute;
  1069. top: 0;
  1070. left: 0;
  1071. right: 0;
  1072. }
  1073. .fc-media-screen .fc-timegrid-event-harness {
  1074. position: absolute; /* top/left/right/bottom will all be set by JS */
  1075. }
  1076. .fc {
  1077. /* bg */
  1078. }
  1079. .fc .fc-timegrid-col-bg {
  1080. z-index: 2; /* TODO: kill */
  1081. }
  1082. .fc .fc-timegrid-col-bg .fc-non-business { z-index: 1 }
  1083. .fc .fc-timegrid-col-bg .fc-bg-event { z-index: 2 }
  1084. .fc .fc-timegrid-col-bg .fc-highlight { z-index: 3 }
  1085. .fc .fc-timegrid-bg-harness {
  1086. position: absolute; /* top/bottom will be set by JS */
  1087. left: 0;
  1088. right: 0;
  1089. }
  1090. .fc {
  1091. /* fg events */
  1092. /* (the mirror segs are put into a separate container with same classname, */
  1093. /* and they must be after the normal seg container to appear at a higher z-index) */
  1094. }
  1095. .fc .fc-timegrid-col-events {
  1096. z-index: 3;
  1097. /* child event segs have z-indexes that are scoped within this div */
  1098. }
  1099. .fc {
  1100. /* now indicator */
  1101. }
  1102. .fc .fc-timegrid-now-indicator-container {
  1103. bottom: 0;
  1104. overflow: hidden; /* don't let overflow of lines/arrows cause unnecessary scrolling */
  1105. /* z-index is set on the individual elements */
  1106. }
  1107. .fc-direction-ltr .fc-timegrid-col-events {
  1108. margin: 0 2.5% 0 2px;
  1109. }
  1110. .fc-direction-rtl .fc-timegrid-col-events {
  1111. margin: 0 2px 0 2.5%;
  1112. }
  1113. .fc-timegrid-event-harness-inset .fc-timegrid-event,
  1114. .fc-timegrid-event.fc-event-mirror {
  1115. box-shadow: 0px 0px 0px 1px #fff;
  1116. box-shadow: 0px 0px 0px 1px var(--fc-page-bg-color, #fff);
  1117. }
  1118. .fc-timegrid-event { /* events need to be root */
  1119. font-size: .85em;
  1120. font-size: var(--fc-small-font-size, .85em);
  1121. border-radius: 3px
  1122. }
  1123. .fc-timegrid-event .fc-event-main {
  1124. padding: 1px 1px 0;
  1125. }
  1126. .fc-timegrid-event .fc-event-time {
  1127. white-space: nowrap;
  1128. font-size: .85em;
  1129. font-size: var(--fc-small-font-size, .85em);
  1130. margin-bottom: 1px;
  1131. }
  1132. .fc-timegrid-event-condensed .fc-event-main-frame {
  1133. flex-direction: row;
  1134. overflow: hidden;
  1135. }
  1136. .fc-timegrid-event-condensed .fc-event-time:after {
  1137. content: '\00a0-\00a0'; /* dash surrounded by non-breaking spaces */
  1138. }
  1139. .fc-timegrid-event-condensed .fc-event-title {
  1140. font-size: .85em;
  1141. font-size: var(--fc-small-font-size, .85em)
  1142. }
  1143. .fc-media-screen .fc-timegrid-event {
  1144. position: absolute; /* absolute WITHIN the harness */
  1145. top: 0;
  1146. bottom: 1px; /* stay away from bottom slot line */
  1147. left: 0;
  1148. right: 0;
  1149. }
  1150. .fc {
  1151. /* line */
  1152. }
  1153. .fc .fc-timegrid-now-indicator-line {
  1154. position: absolute;
  1155. z-index: 4;
  1156. left: 0;
  1157. right: 0;
  1158. border-style: solid;
  1159. border-color: red;
  1160. border-color: var(--fc-now-indicator-color, red);
  1161. border-width: 1px 0 0;
  1162. }
  1163. .fc {
  1164. /* arrow */
  1165. }
  1166. .fc .fc-timegrid-now-indicator-arrow {
  1167. position: absolute;
  1168. z-index: 4;
  1169. margin-top: -5px; /* vertically center on top coordinate */
  1170. border-style: solid;
  1171. border-color: red;
  1172. border-color: var(--fc-now-indicator-color, red);
  1173. }
  1174. .fc-direction-ltr .fc-timegrid-now-indicator-arrow {
  1175. left: 0;
  1176. /* triangle pointing right. TODO: mixin */
  1177. border-width: 5px 0 5px 6px;
  1178. border-top-color: transparent;
  1179. border-bottom-color: transparent;
  1180. }
  1181. .fc-direction-rtl .fc-timegrid-now-indicator-arrow {
  1182. right: 0;
  1183. /* triangle pointing left. TODO: mixin */
  1184. border-width: 5px 6px 5px 0;
  1185. border-top-color: transparent;
  1186. border-bottom-color: transparent;
  1187. }
  1188. :root {
  1189. --fc-list-event-dot-width: 10px;
  1190. --fc-list-event-hover-bg-color: #f5f5f5;
  1191. }
  1192. .fc-theme-standard .fc-list {
  1193. border: 1px solid #ddd;
  1194. border: 1px solid var(--fc-border-color, #ddd);
  1195. }
  1196. .fc {
  1197. /* message when no events */
  1198. }
  1199. .fc .fc-list-empty {
  1200. background-color: rgba(208, 208, 208, 0.3);
  1201. background-color: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
  1202. height: 100%;
  1203. display: flex;
  1204. justify-content: center;
  1205. align-items: center; /* vertically aligns fc-list-empty-inner */
  1206. }
  1207. .fc .fc-list-empty-cushion {
  1208. margin: 5em 0;
  1209. }
  1210. .fc {
  1211. /* table within the scroller */
  1212. /* ---------------------------------------------------------------------------------------------------- */
  1213. }
  1214. .fc .fc-list-table {
  1215. width: 100%;
  1216. border-style: hidden; /* kill outer border on theme */
  1217. }
  1218. .fc .fc-list-table tr > * {
  1219. border-left: 0;
  1220. border-right: 0;
  1221. }
  1222. .fc .fc-list-sticky .fc-list-day > * { /* the cells */
  1223. position: -webkit-sticky;
  1224. position: sticky;
  1225. top: 0;
  1226. background: #fff;
  1227. background: var(--fc-page-bg-color, #fff); /* for when headers are styled to be transparent and sticky */
  1228. }
  1229. .fc .fc-list-table th {
  1230. padding: 0; /* uses an inner-wrapper instead... */
  1231. }
  1232. .fc .fc-list-table td,
  1233. .fc .fc-list-day-cushion {
  1234. padding: 8px 14px;
  1235. }
  1236. .fc {
  1237. /* date heading rows */
  1238. /* ---------------------------------------------------------------------------------------------------- */
  1239. }
  1240. .fc .fc-list-day-cushion:after {
  1241. content: "";
  1242. clear: both;
  1243. display: table; /* clear floating */
  1244. }
  1245. .fc-theme-standard .fc-list-day-cushion {
  1246. background-color: rgba(208, 208, 208, 0.3);
  1247. background-color: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
  1248. }
  1249. .fc-direction-ltr .fc-list-day-text,
  1250. .fc-direction-rtl .fc-list-day-side-text {
  1251. float: left;
  1252. }
  1253. .fc-direction-ltr .fc-list-day-side-text,
  1254. .fc-direction-rtl .fc-list-day-text {
  1255. float: right;
  1256. }
  1257. /* make the dot closer to the event title */
  1258. .fc-direction-ltr .fc-list-table .fc-list-event-graphic { padding-right: 0 }
  1259. .fc-direction-rtl .fc-list-table .fc-list-event-graphic { padding-left: 0 }
  1260. .fc .fc-list-event.fc-event-forced-url {
  1261. cursor: pointer; /* whole row will seem clickable */
  1262. }
  1263. .fc .fc-list-event:hover td {
  1264. background-color: #f5f5f5;
  1265. background-color: var(--fc-list-event-hover-bg-color, #f5f5f5);
  1266. }
  1267. .fc {
  1268. /* shrink certain cols */
  1269. }
  1270. .fc .fc-list-event-graphic,
  1271. .fc .fc-list-event-time {
  1272. white-space: nowrap;
  1273. width: 1px;
  1274. }
  1275. .fc .fc-list-event-dot {
  1276. display: inline-block;
  1277. box-sizing: content-box;
  1278. width: 0;
  1279. height: 0;
  1280. border: 5px solid #3788d8;
  1281. border: calc(var(--fc-list-event-dot-width, 10px) / 2) solid var(--fc-event-border-color, #3788d8);
  1282. border-radius: 5px;
  1283. border-radius: calc(var(--fc-list-event-dot-width, 10px) / 2);
  1284. }
  1285. .fc {
  1286. /* reset <a> styling */
  1287. }
  1288. .fc .fc-list-event-title a {
  1289. color: inherit;
  1290. text-decoration: none;
  1291. }
  1292. .fc {
  1293. /* underline link when hovering over any part of row */
  1294. }
  1295. .fc .fc-list-event.fc-event-forced-url:hover a {
  1296. text-decoration: underline;
  1297. }
  1298. .fc-theme-bootstrap a:not([href]) {
  1299. color: inherit; /* natural color for navlinks */
  1300. }