main.css 37 KB

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