main.css 39 KB

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