main.css 39 KB

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