fullcalendar.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494
  1. /*!
  2. * FullCalendar v3.5.1 Stylesheet
  3. * Docs & License: https://fullcalendar.io/
  4. * (c) 2017 Adam Shaw
  5. */
  6. .fc {
  7. direction: ltr;
  8. text-align: left;
  9. }
  10. .fc-rtl {
  11. text-align: right;
  12. }
  13. body .fc { /* extra precedence to overcome jqui */
  14. font-size: 1em;
  15. }
  16. /* Colors
  17. --------------------------------------------------------------------------------------------------*/
  18. .fc-highlight { /* when user is selecting cells */
  19. background: #bce8f1;
  20. opacity: .3;
  21. }
  22. .fc-bgevent { /* default look for background events */
  23. background: rgb(143, 223, 130);
  24. opacity: .3;
  25. }
  26. .fc-nonbusiness { /* default look for non-business-hours areas */
  27. /* will inherit .fc-bgevent's styles */
  28. background: #d7d7d7;
  29. }
  30. /* Buttons (styled <button> tags, normalized to work cross-browser)
  31. --------------------------------------------------------------------------------------------------*/
  32. .fc button {
  33. /* force height to include the border and padding */
  34. -moz-box-sizing: border-box;
  35. -webkit-box-sizing: border-box;
  36. box-sizing: border-box;
  37. /* dimensions */
  38. margin: 0;
  39. height: 2.1em;
  40. padding: 0 .6em;
  41. /* text & cursor */
  42. font-size: 1em; /* normalize */
  43. white-space: nowrap;
  44. cursor: pointer;
  45. }
  46. /* Firefox has an annoying inner border */
  47. .fc button::-moz-focus-inner { margin: 0; padding: 0; }
  48. .fc-state-default { /* non-theme */
  49. border: 1px solid;
  50. }
  51. .fc-state-default.fc-corner-left { /* non-theme */
  52. border-top-left-radius: 4px;
  53. border-bottom-left-radius: 4px;
  54. }
  55. .fc-state-default.fc-corner-right { /* non-theme */
  56. border-top-right-radius: 4px;
  57. border-bottom-right-radius: 4px;
  58. }
  59. /* icons in buttons */
  60. .fc button .fc-icon { /* non-theme */
  61. position: relative;
  62. top: -0.05em; /* seems to be a good adjustment across browsers */
  63. margin: 0 .2em;
  64. vertical-align: middle;
  65. }
  66. /*
  67. button states
  68. borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
  69. */
  70. .fc-state-default {
  71. background-color: #f5f5f5;
  72. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  73. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  74. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  75. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  76. background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  77. background-repeat: repeat-x;
  78. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  79. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  80. color: #333;
  81. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  82. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  83. }
  84. .fc-state-hover,
  85. .fc-state-down,
  86. .fc-state-active,
  87. .fc-state-disabled {
  88. color: #333333;
  89. background-color: #e6e6e6;
  90. }
  91. .fc-state-hover {
  92. color: #333333;
  93. text-decoration: none;
  94. background-position: 0 -15px;
  95. -webkit-transition: background-position 0.1s linear;
  96. -moz-transition: background-position 0.1s linear;
  97. -o-transition: background-position 0.1s linear;
  98. transition: background-position 0.1s linear;
  99. }
  100. .fc-state-down,
  101. .fc-state-active {
  102. background-color: #cccccc;
  103. background-image: none;
  104. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  105. }
  106. .fc-state-disabled {
  107. cursor: default;
  108. background-image: none;
  109. opacity: 0.65;
  110. box-shadow: none;
  111. }
  112. /* Buttons Groups
  113. --------------------------------------------------------------------------------------------------*/
  114. .fc-button-group {
  115. display: inline-block;
  116. }
  117. /*
  118. every button that is not first in a button group should scootch over one pixel and cover the
  119. previous button's border...
  120. */
  121. .fc .fc-button-group > * { /* extra precedence b/c buttons have margin set to zero */
  122. float: left;
  123. margin: 0 0 0 -1px;
  124. }
  125. .fc .fc-button-group > :first-child { /* same */
  126. margin-left: 0;
  127. }
  128. /* Popover
  129. --------------------------------------------------------------------------------------------------*/
  130. .fc-popover {
  131. position: absolute;
  132. box-shadow: 0 2px 6px rgba(0,0,0,.15);
  133. }
  134. .fc-popover .fc-header { /* TODO: be more consistent with fc-head/fc-body */
  135. padding: 2px 4px;
  136. }
  137. .fc-popover .fc-header .fc-title {
  138. margin: 0 2px;
  139. }
  140. .fc-popover .fc-header .fc-close {
  141. cursor: pointer;
  142. }
  143. .fc-ltr .fc-popover .fc-header .fc-title,
  144. .fc-rtl .fc-popover .fc-header .fc-close {
  145. float: left;
  146. }
  147. .fc-rtl .fc-popover .fc-header .fc-title,
  148. .fc-ltr .fc-popover .fc-header .fc-close {
  149. float: right;
  150. }
  151. /* Misc Reusable Components
  152. --------------------------------------------------------------------------------------------------*/
  153. .fc-divider {
  154. border-style: solid;
  155. border-width: 1px;
  156. }
  157. hr.fc-divider {
  158. height: 0;
  159. margin: 0;
  160. padding: 0 0 2px; /* height is unreliable across browsers, so use padding */
  161. border-width: 1px 0;
  162. }
  163. .fc-clear {
  164. clear: both;
  165. }
  166. .fc-bg,
  167. .fc-bgevent-skeleton,
  168. .fc-highlight-skeleton,
  169. .fc-helper-skeleton {
  170. /* these element should always cling to top-left/right corners */
  171. position: absolute;
  172. top: 0;
  173. left: 0;
  174. right: 0;
  175. }
  176. .fc-bg {
  177. bottom: 0; /* strech bg to bottom edge */
  178. }
  179. .fc-bg table {
  180. height: 100%; /* strech bg to bottom edge */
  181. }
  182. /* Tables
  183. --------------------------------------------------------------------------------------------------*/
  184. .fc table {
  185. width: 100%;
  186. box-sizing: border-box; /* fix scrollbar issue in firefox */
  187. table-layout: fixed;
  188. border-collapse: collapse;
  189. border-spacing: 0;
  190. font-size: 1em; /* normalize cross-browser */
  191. }
  192. .fc th {
  193. text-align: center;
  194. }
  195. .fc th,
  196. .fc td {
  197. border-style: solid;
  198. border-width: 1px;
  199. padding: 0;
  200. vertical-align: top;
  201. }
  202. .fc td.fc-today {
  203. border-style: double; /* overcome neighboring borders */
  204. }
  205. /* Internal Nav Links
  206. --------------------------------------------------------------------------------------------------*/
  207. a[data-goto] {
  208. cursor: pointer;
  209. }
  210. a[data-goto]:hover {
  211. text-decoration: underline;
  212. }
  213. /* Fake Table Rows
  214. --------------------------------------------------------------------------------------------------*/
  215. .fc .fc-row { /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  216. /* no visible border by default. but make available if need be (scrollbar width compensation) */
  217. border-style: solid;
  218. border-width: 0;
  219. }
  220. .fc-row table {
  221. /* don't put left/right border on anything within a fake row.
  222. the outer tbody will worry about this */
  223. border-left: 0 hidden transparent;
  224. border-right: 0 hidden transparent;
  225. /* no bottom borders on rows */
  226. border-bottom: 0 hidden transparent;
  227. }
  228. .fc-row:first-child table {
  229. border-top: 0 hidden transparent; /* no top border on first row */
  230. }
  231. /* Day Row (used within the header and the DayGrid)
  232. --------------------------------------------------------------------------------------------------*/
  233. .fc-row {
  234. position: relative;
  235. }
  236. .fc-row .fc-bg {
  237. z-index: 1;
  238. }
  239. /* highlighting cells & background event skeleton */
  240. .fc-row .fc-bgevent-skeleton,
  241. .fc-row .fc-highlight-skeleton {
  242. bottom: 0; /* stretch skeleton to bottom of row */
  243. }
  244. .fc-row .fc-bgevent-skeleton table,
  245. .fc-row .fc-highlight-skeleton table {
  246. height: 100%; /* stretch skeleton to bottom of row */
  247. }
  248. .fc-row .fc-highlight-skeleton td,
  249. .fc-row .fc-bgevent-skeleton td {
  250. border-color: transparent;
  251. }
  252. .fc-row .fc-bgevent-skeleton {
  253. z-index: 2;
  254. }
  255. .fc-row .fc-highlight-skeleton {
  256. z-index: 3;
  257. }
  258. /*
  259. row content (which contains day/week numbers and events) as well as "helper" (which contains
  260. temporary rendered events).
  261. */
  262. .fc-row .fc-content-skeleton {
  263. position: relative;
  264. z-index: 4;
  265. padding-bottom: 2px; /* matches the space above the events */
  266. }
  267. .fc-row .fc-helper-skeleton {
  268. z-index: 5;
  269. }
  270. .fc .fc-row .fc-content-skeleton table,
  271. .fc .fc-row .fc-content-skeleton td,
  272. .fc .fc-row .fc-helper-skeleton td {
  273. /* see-through to the background below */
  274. /* extra precedence to prevent theme-provided backgrounds */
  275. background: none; /* in case <td>s are globally styled */
  276. border-color: transparent;
  277. }
  278. .fc-row .fc-content-skeleton td,
  279. .fc-row .fc-helper-skeleton td {
  280. /* don't put a border between events and/or the day number */
  281. border-bottom: 0;
  282. }
  283. .fc-row .fc-content-skeleton tbody td, /* cells with events inside (so NOT the day number cell) */
  284. .fc-row .fc-helper-skeleton tbody td {
  285. /* don't put a border between event cells */
  286. border-top: 0;
  287. }
  288. /* Scrolling Container
  289. --------------------------------------------------------------------------------------------------*/
  290. .fc-scroller {
  291. -webkit-overflow-scrolling: touch;
  292. }
  293. /* TODO: move to agenda/basic */
  294. .fc-scroller > .fc-day-grid,
  295. .fc-scroller > .fc-time-grid {
  296. position: relative; /* re-scope all positions */
  297. width: 100%; /* hack to force re-sizing this inner element when scrollbars appear/disappear */
  298. }
  299. /* Global Event Styles
  300. --------------------------------------------------------------------------------------------------*/
  301. .fc-event {
  302. position: relative; /* for resize handle and other inner positioning */
  303. display: block; /* make the <a> tag block */
  304. font-size: .85em;
  305. line-height: 1.3;
  306. border-radius: 3px;
  307. border: 1px solid #3a87ad; /* default BORDER color */
  308. }
  309. .fc-event,
  310. .fc-event-dot {
  311. background-color: #3a87ad; /* default BACKGROUND color */
  312. }
  313. .fc-event,
  314. .fc-event:hover {
  315. color: #fff; /* default TEXT color */
  316. text-decoration: none; /* if <a> has an href */
  317. }
  318. .fc-event[href],
  319. .fc-event.fc-draggable {
  320. cursor: pointer; /* give events with links and draggable events a hand mouse pointer */
  321. }
  322. .fc-not-allowed, /* causes a "warning" cursor. applied on body */
  323. .fc-not-allowed .fc-event { /* to override an event's custom cursor */
  324. cursor: not-allowed;
  325. }
  326. .fc-event .fc-bg { /* the generic .fc-bg already does position */
  327. z-index: 1;
  328. background: #fff;
  329. opacity: .25;
  330. }
  331. .fc-event .fc-content {
  332. position: relative;
  333. z-index: 2;
  334. }
  335. /* resizer (cursor AND touch devices) */
  336. .fc-event .fc-resizer {
  337. position: absolute;
  338. z-index: 4;
  339. }
  340. /* resizer (touch devices) */
  341. .fc-event .fc-resizer {
  342. display: none;
  343. }
  344. .fc-event.fc-allow-mouse-resize .fc-resizer,
  345. .fc-event.fc-selected .fc-resizer {
  346. /* only show when hovering or selected (with touch) */
  347. display: block;
  348. }
  349. /* hit area */
  350. .fc-event.fc-selected .fc-resizer:before {
  351. /* 40x40 touch area */
  352. content: "";
  353. position: absolute;
  354. z-index: 9999; /* user of this util can scope within a lower z-index */
  355. top: 50%;
  356. left: 50%;
  357. width: 40px;
  358. height: 40px;
  359. margin-left: -20px;
  360. margin-top: -20px;
  361. }
  362. /* Event Selection (only for touch devices)
  363. --------------------------------------------------------------------------------------------------*/
  364. .fc-event.fc-selected {
  365. z-index: 9999 !important; /* overcomes inline z-index */
  366. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  367. }
  368. .fc-event.fc-selected.fc-dragging {
  369. box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  370. }
  371. /* Horizontal Events
  372. --------------------------------------------------------------------------------------------------*/
  373. /* bigger touch area when selected */
  374. .fc-h-event.fc-selected:before {
  375. content: "";
  376. position: absolute;
  377. z-index: 3; /* below resizers */
  378. top: -10px;
  379. bottom: -10px;
  380. left: 0;
  381. right: 0;
  382. }
  383. /* events that are continuing to/from another week. kill rounded corners and butt up against edge */
  384. .fc-ltr .fc-h-event.fc-not-start,
  385. .fc-rtl .fc-h-event.fc-not-end {
  386. margin-left: 0;
  387. border-left-width: 0;
  388. padding-left: 1px; /* replace the border with padding */
  389. border-top-left-radius: 0;
  390. border-bottom-left-radius: 0;
  391. }
  392. .fc-ltr .fc-h-event.fc-not-end,
  393. .fc-rtl .fc-h-event.fc-not-start {
  394. margin-right: 0;
  395. border-right-width: 0;
  396. padding-right: 1px; /* replace the border with padding */
  397. border-top-right-radius: 0;
  398. border-bottom-right-radius: 0;
  399. }
  400. /* resizer (cursor AND touch devices) */
  401. /* left resizer */
  402. .fc-ltr .fc-h-event .fc-start-resizer,
  403. .fc-rtl .fc-h-event .fc-end-resizer {
  404. cursor: w-resize;
  405. left: -1px; /* overcome border */
  406. }
  407. /* right resizer */
  408. .fc-ltr .fc-h-event .fc-end-resizer,
  409. .fc-rtl .fc-h-event .fc-start-resizer {
  410. cursor: e-resize;
  411. right: -1px; /* overcome border */
  412. }
  413. /* resizer (mouse devices) */
  414. .fc-h-event.fc-allow-mouse-resize .fc-resizer {
  415. width: 7px;
  416. top: -1px; /* overcome top border */
  417. bottom: -1px; /* overcome bottom border */
  418. }
  419. /* resizer (touch devices) */
  420. .fc-h-event.fc-selected .fc-resizer {
  421. /* 8x8 little dot */
  422. border-radius: 4px;
  423. border-width: 1px;
  424. width: 6px;
  425. height: 6px;
  426. border-style: solid;
  427. border-color: inherit;
  428. background: #fff;
  429. /* vertically center */
  430. top: 50%;
  431. margin-top: -4px;
  432. }
  433. /* left resizer */
  434. .fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
  435. .fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  436. margin-left: -4px; /* centers the 8x8 dot on the left edge */
  437. }
  438. /* right resizer */
  439. .fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
  440. .fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  441. margin-right: -4px; /* centers the 8x8 dot on the right edge */
  442. }
  443. /* DayGrid events
  444. ----------------------------------------------------------------------------------------------------
  445. We use the full "fc-day-grid-event" class instead of using descendants because the event won't
  446. be a descendant of the grid when it is being dragged.
  447. */
  448. .fc-day-grid-event {
  449. margin: 1px 2px 0; /* spacing between events and edges */
  450. padding: 0 1px;
  451. }
  452. tr:first-child > td > .fc-day-grid-event {
  453. margin-top: 2px; /* a little bit more space before the first event */
  454. }
  455. .fc-day-grid-event.fc-selected:after {
  456. content: "";
  457. position: absolute;
  458. z-index: 1; /* same z-index as fc-bg, behind text */
  459. /* overcome the borders */
  460. top: -1px;
  461. right: -1px;
  462. bottom: -1px;
  463. left: -1px;
  464. /* darkening effect */
  465. background: #000;
  466. opacity: .25;
  467. }
  468. .fc-day-grid-event .fc-content { /* force events to be one-line tall */
  469. white-space: nowrap;
  470. overflow: hidden;
  471. }
  472. .fc-day-grid-event .fc-time {
  473. font-weight: bold;
  474. }
  475. /* resizer (cursor devices) */
  476. /* left resizer */
  477. .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
  478. .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  479. margin-left: -2px; /* to the day cell's edge */
  480. }
  481. /* right resizer */
  482. .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
  483. .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  484. margin-right: -2px; /* to the day cell's edge */
  485. }
  486. /* Event Limiting
  487. --------------------------------------------------------------------------------------------------*/
  488. /* "more" link that represents hidden events */
  489. a.fc-more {
  490. margin: 1px 3px;
  491. font-size: .85em;
  492. cursor: pointer;
  493. text-decoration: none;
  494. }
  495. a.fc-more:hover {
  496. text-decoration: underline;
  497. }
  498. .fc-limited { /* rows and cells that are hidden because of a "more" link */
  499. display: none;
  500. }
  501. /* popover that appears when "more" link is clicked */
  502. .fc-day-grid .fc-row {
  503. z-index: 1; /* make the "more" popover one higher than this */
  504. }
  505. .fc-more-popover {
  506. z-index: 2;
  507. width: 220px;
  508. }
  509. .fc-more-popover .fc-event-container {
  510. padding: 10px;
  511. }
  512. /* Now Indicator
  513. --------------------------------------------------------------------------------------------------*/
  514. .fc-now-indicator {
  515. position: absolute;
  516. border: 0 solid red;
  517. }
  518. /* Utilities
  519. --------------------------------------------------------------------------------------------------*/
  520. .fc-unselectable {
  521. -webkit-user-select: none;
  522. -khtml-user-select: none;
  523. -moz-user-select: none;
  524. -ms-user-select: none;
  525. user-select: none;
  526. -webkit-touch-callout: none;
  527. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  528. }
  529. /*
  530. TODO: more distinction between this file and common.css
  531. */
  532. /* Colors
  533. --------------------------------------------------------------------------------------------------*/
  534. .fc-unthemed th,
  535. .fc-unthemed td,
  536. .fc-unthemed thead,
  537. .fc-unthemed tbody,
  538. .fc-unthemed .fc-divider,
  539. .fc-unthemed .fc-row,
  540. .fc-unthemed .fc-content, /* for gutter border */
  541. .fc-unthemed .fc-popover,
  542. .fc-unthemed .fc-list-view,
  543. .fc-unthemed .fc-list-heading td {
  544. border-color: #ddd;
  545. }
  546. .fc-unthemed .fc-popover {
  547. background-color: #fff;
  548. }
  549. .fc-unthemed .fc-divider,
  550. .fc-unthemed .fc-popover .fc-header,
  551. .fc-unthemed .fc-list-heading td {
  552. background: #eee;
  553. }
  554. .fc-unthemed .fc-popover .fc-header .fc-close {
  555. color: #666;
  556. }
  557. .fc-unthemed td.fc-today {
  558. background: #fcf8e3;
  559. }
  560. .fc-unthemed .fc-disabled-day {
  561. background: #d7d7d7;
  562. opacity: .3;
  563. }
  564. /* Icons (inline elements with styled text that mock arrow icons)
  565. --------------------------------------------------------------------------------------------------*/
  566. .fc-icon {
  567. display: inline-block;
  568. height: 1em;
  569. line-height: 1em;
  570. font-size: 1em;
  571. text-align: center;
  572. overflow: hidden;
  573. font-family: "Courier New", Courier, monospace;
  574. /* don't allow browser text-selection */
  575. -webkit-touch-callout: none;
  576. -webkit-user-select: none;
  577. -khtml-user-select: none;
  578. -moz-user-select: none;
  579. -ms-user-select: none;
  580. user-select: none;
  581. }
  582. /*
  583. Acceptable font-family overrides for individual icons:
  584. "Arial", sans-serif
  585. "Times New Roman", serif
  586. NOTE: use percentage font sizes or else old IE chokes
  587. */
  588. .fc-icon:after {
  589. position: relative;
  590. }
  591. .fc-icon-left-single-arrow:after {
  592. content: "\02039";
  593. font-weight: bold;
  594. font-size: 200%;
  595. top: -7%;
  596. }
  597. .fc-icon-right-single-arrow:after {
  598. content: "\0203A";
  599. font-weight: bold;
  600. font-size: 200%;
  601. top: -7%;
  602. }
  603. .fc-icon-left-double-arrow:after {
  604. content: "\000AB";
  605. font-size: 160%;
  606. top: -7%;
  607. }
  608. .fc-icon-right-double-arrow:after {
  609. content: "\000BB";
  610. font-size: 160%;
  611. top: -7%;
  612. }
  613. .fc-icon-left-triangle:after {
  614. content: "\25C4";
  615. font-size: 125%;
  616. top: 3%;
  617. }
  618. .fc-icon-right-triangle:after {
  619. content: "\25BA";
  620. font-size: 125%;
  621. top: 3%;
  622. }
  623. .fc-icon-down-triangle:after {
  624. content: "\25BC";
  625. font-size: 125%;
  626. top: 2%;
  627. }
  628. .fc-icon-x:after {
  629. content: "\000D7";
  630. font-size: 200%;
  631. top: 6%;
  632. }
  633. /* Popover
  634. --------------------------------------------------------------------------------------------------*/
  635. .fc-unthemed .fc-popover {
  636. border-width: 1px;
  637. border-style: solid;
  638. }
  639. .fc-unthemed .fc-popover .fc-header .fc-close {
  640. font-size: .9em;
  641. margin-top: 2px;
  642. }
  643. /* List View
  644. --------------------------------------------------------------------------------------------------*/
  645. .fc-unthemed .fc-list-item:hover td {
  646. background-color: #f5f5f5;
  647. }
  648. /* Colors
  649. --------------------------------------------------------------------------------------------------*/
  650. .ui-widget .fc-disabled-day {
  651. background-image: none;
  652. }
  653. /* Popover
  654. --------------------------------------------------------------------------------------------------*/
  655. .fc-popover > .ui-widget-header + .ui-widget-content {
  656. border-top: 0; /* where they meet, let the header have the border */
  657. }
  658. /* Global Event Styles
  659. --------------------------------------------------------------------------------------------------*/
  660. .ui-widget .fc-event {
  661. /* overpower jqui's styles on <a> tags. TODO: more DRY */
  662. color: #fff; /* default TEXT color */
  663. text-decoration: none; /* if <a> has an href */
  664. /* undo ui-widget-header bold */
  665. font-weight: normal;
  666. }
  667. /* TimeGrid axis running down the side (for both the all-day area and the slot area)
  668. --------------------------------------------------------------------------------------------------*/
  669. .ui-widget td.fc-axis {
  670. font-weight: normal; /* overcome bold */
  671. }
  672. /* TimeGrid Slats (lines that run horizontally)
  673. --------------------------------------------------------------------------------------------------*/
  674. .fc-time-grid .fc-slats .ui-widget-content {
  675. background: none; /* see through to fc-bg */
  676. }
  677. .fc.fc-bootstrap3 a {
  678. text-decoration: none;
  679. }
  680. .fc.fc-bootstrap3 a[data-goto]:hover {
  681. text-decoration: underline;
  682. }
  683. .fc-bootstrap3 hr.fc-divider {
  684. border-color: inherit;
  685. }
  686. .fc-bootstrap3 .fc-today.alert {
  687. border-radius: 0;
  688. }
  689. /* Popover
  690. --------------------------------------------------------------------------------------------------*/
  691. .fc-bootstrap3 .fc-popover .panel-body {
  692. padding: 0; /* undo built-in padding */
  693. }
  694. /* TimeGrid Slats (lines that run horizontally)
  695. --------------------------------------------------------------------------------------------------*/
  696. .fc-bootstrap3 .fc-time-grid .fc-slats table {
  697. /* some themes have background color. see through to slats */
  698. background: none;
  699. }
  700. /* Toolbar
  701. --------------------------------------------------------------------------------------------------*/
  702. .fc-toolbar {
  703. text-align: center;
  704. }
  705. .fc-toolbar.fc-header-toolbar {
  706. margin-bottom: 1em;
  707. }
  708. .fc-toolbar.fc-footer-toolbar {
  709. margin-top: 1em;
  710. }
  711. .fc-toolbar .fc-left {
  712. float: left;
  713. }
  714. .fc-toolbar .fc-right {
  715. float: right;
  716. }
  717. .fc-toolbar .fc-center {
  718. display: inline-block;
  719. }
  720. /* the things within each left/right/center section */
  721. .fc .fc-toolbar > * > * { /* extra precedence to override button border margins */
  722. float: left;
  723. margin-left: .75em;
  724. }
  725. /* the first thing within each left/center/right section */
  726. .fc .fc-toolbar > * > :first-child { /* extra precedence to override button border margins */
  727. margin-left: 0;
  728. }
  729. /* title text */
  730. .fc-toolbar h2 {
  731. margin: 0;
  732. }
  733. /* button layering (for border precedence) */
  734. .fc-toolbar button {
  735. position: relative;
  736. }
  737. .fc-toolbar .fc-state-hover,
  738. .fc-toolbar .ui-state-hover {
  739. z-index: 2;
  740. }
  741. .fc-toolbar .fc-state-down {
  742. z-index: 3;
  743. }
  744. .fc-toolbar .fc-state-active,
  745. .fc-toolbar .ui-state-active {
  746. z-index: 4;
  747. }
  748. .fc-toolbar button:focus {
  749. z-index: 5;
  750. }
  751. /* View Structure
  752. --------------------------------------------------------------------------------------------------*/
  753. /* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
  754. /* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
  755. .fc-view-container *,
  756. .fc-view-container *:before,
  757. .fc-view-container *:after {
  758. -webkit-box-sizing: content-box;
  759. -moz-box-sizing: content-box;
  760. box-sizing: content-box;
  761. }
  762. .fc-view, /* scope positioning and z-index's for everything within the view */
  763. .fc-view > table { /* so dragged elements can be above the view's main element */
  764. position: relative;
  765. z-index: 1;
  766. }
  767. /* BasicView
  768. --------------------------------------------------------------------------------------------------*/
  769. /* day row structure */
  770. .fc-basicWeek-view .fc-content-skeleton,
  771. .fc-basicDay-view .fc-content-skeleton {
  772. /* there may be week numbers in these views, so no padding-top */
  773. padding-bottom: 1em; /* ensure a space at bottom of cell for user selecting/clicking */
  774. }
  775. .fc-basic-view .fc-body .fc-row {
  776. min-height: 4em; /* ensure that all rows are at least this tall */
  777. }
  778. /* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
  779. .fc-row.fc-rigid {
  780. overflow: hidden;
  781. }
  782. .fc-row.fc-rigid .fc-content-skeleton {
  783. position: absolute;
  784. top: 0;
  785. left: 0;
  786. right: 0;
  787. }
  788. /* week and day number styling */
  789. .fc-day-top.fc-other-month {
  790. opacity: 0.3;
  791. }
  792. .fc-basic-view .fc-week-number,
  793. .fc-basic-view .fc-day-number {
  794. padding: 2px;
  795. }
  796. .fc-basic-view th.fc-week-number,
  797. .fc-basic-view th.fc-day-number {
  798. padding: 0 2px; /* column headers can't have as much v space */
  799. }
  800. .fc-ltr .fc-basic-view .fc-day-top .fc-day-number { float: right; }
  801. .fc-rtl .fc-basic-view .fc-day-top .fc-day-number { float: left; }
  802. .fc-ltr .fc-basic-view .fc-day-top .fc-week-number { float: left; border-radius: 0 0 3px 0; }
  803. .fc-rtl .fc-basic-view .fc-day-top .fc-week-number { float: right; border-radius: 0 0 0 3px; }
  804. .fc-basic-view .fc-day-top .fc-week-number {
  805. min-width: 1.5em;
  806. text-align: center;
  807. background-color: #f2f2f2;
  808. color: #808080;
  809. }
  810. /* when week/day number have own column */
  811. .fc-basic-view td.fc-week-number {
  812. text-align: center;
  813. }
  814. .fc-basic-view td.fc-week-number > * {
  815. /* work around the way we do column resizing and ensure a minimum width */
  816. display: inline-block;
  817. min-width: 1.25em;
  818. }
  819. /* AgendaView all-day area
  820. --------------------------------------------------------------------------------------------------*/
  821. .fc-agenda-view .fc-day-grid {
  822. position: relative;
  823. z-index: 2; /* so the "more.." popover will be over the time grid */
  824. }
  825. .fc-agenda-view .fc-day-grid .fc-row {
  826. min-height: 3em; /* all-day section will never get shorter than this */
  827. }
  828. .fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  829. padding-bottom: 1em; /* give space underneath events for clicking/selecting days */
  830. }
  831. /* TimeGrid axis running down the side (for both the all-day area and the slot area)
  832. --------------------------------------------------------------------------------------------------*/
  833. .fc .fc-axis { /* .fc to overcome default cell styles */
  834. vertical-align: middle;
  835. padding: 0 4px;
  836. white-space: nowrap;
  837. }
  838. .fc-ltr .fc-axis {
  839. text-align: right;
  840. }
  841. .fc-rtl .fc-axis {
  842. text-align: left;
  843. }
  844. /* TimeGrid Structure
  845. --------------------------------------------------------------------------------------------------*/
  846. .fc-time-grid-container, /* so scroll container's z-index is below all-day */
  847. .fc-time-grid { /* so slats/bg/content/etc positions get scoped within here */
  848. position: relative;
  849. z-index: 1;
  850. }
  851. .fc-time-grid {
  852. min-height: 100%; /* so if height setting is 'auto', .fc-bg stretches to fill height */
  853. }
  854. .fc-time-grid table { /* don't put outer borders on slats/bg/content/etc */
  855. border: 0 hidden transparent;
  856. }
  857. .fc-time-grid > .fc-bg {
  858. z-index: 1;
  859. }
  860. .fc-time-grid .fc-slats,
  861. .fc-time-grid > hr { /* the <hr> AgendaView injects when grid is shorter than scroller */
  862. position: relative;
  863. z-index: 2;
  864. }
  865. .fc-time-grid .fc-content-col {
  866. position: relative; /* because now-indicator lives directly inside */
  867. }
  868. .fc-time-grid .fc-content-skeleton {
  869. position: absolute;
  870. z-index: 3;
  871. top: 0;
  872. left: 0;
  873. right: 0;
  874. }
  875. /* divs within a cell within the fc-content-skeleton */
  876. .fc-time-grid .fc-business-container {
  877. position: relative;
  878. z-index: 1;
  879. }
  880. .fc-time-grid .fc-bgevent-container {
  881. position: relative;
  882. z-index: 2;
  883. }
  884. .fc-time-grid .fc-highlight-container {
  885. position: relative;
  886. z-index: 3;
  887. }
  888. .fc-time-grid .fc-event-container {
  889. position: relative;
  890. z-index: 4;
  891. }
  892. .fc-time-grid .fc-now-indicator-line {
  893. z-index: 5;
  894. }
  895. .fc-time-grid .fc-helper-container { /* also is fc-event-container */
  896. position: relative;
  897. z-index: 6;
  898. }
  899. /* TimeGrid Slats (lines that run horizontally)
  900. --------------------------------------------------------------------------------------------------*/
  901. .fc-time-grid .fc-slats td {
  902. height: 1.5em;
  903. border-bottom: 0; /* each cell is responsible for its top border */
  904. }
  905. .fc-time-grid .fc-slats .fc-minor td {
  906. border-top-style: dotted;
  907. }
  908. /* TimeGrid Highlighting Slots
  909. --------------------------------------------------------------------------------------------------*/
  910. .fc-time-grid .fc-highlight-container { /* a div within a cell within the fc-highlight-skeleton */
  911. position: relative; /* scopes the left/right of the fc-highlight to be in the column */
  912. }
  913. .fc-time-grid .fc-highlight {
  914. position: absolute;
  915. left: 0;
  916. right: 0;
  917. /* top and bottom will be in by JS */
  918. }
  919. /* TimeGrid Event Containment
  920. --------------------------------------------------------------------------------------------------*/
  921. .fc-ltr .fc-time-grid .fc-event-container { /* space on the sides of events for LTR (default) */
  922. margin: 0 2.5% 0 2px;
  923. }
  924. .fc-rtl .fc-time-grid .fc-event-container { /* space on the sides of events for RTL */
  925. margin: 0 2px 0 2.5%;
  926. }
  927. .fc-time-grid .fc-event,
  928. .fc-time-grid .fc-bgevent {
  929. position: absolute;
  930. z-index: 1; /* scope inner z-index's */
  931. }
  932. .fc-time-grid .fc-bgevent {
  933. /* background events always span full width */
  934. left: 0;
  935. right: 0;
  936. }
  937. /* Generic Vertical Event
  938. --------------------------------------------------------------------------------------------------*/
  939. .fc-v-event.fc-not-start { /* events that are continuing from another day */
  940. /* replace space made by the top border with padding */
  941. border-top-width: 0;
  942. padding-top: 1px;
  943. /* remove top rounded corners */
  944. border-top-left-radius: 0;
  945. border-top-right-radius: 0;
  946. }
  947. .fc-v-event.fc-not-end {
  948. /* replace space made by the top border with padding */
  949. border-bottom-width: 0;
  950. padding-bottom: 1px;
  951. /* remove bottom rounded corners */
  952. border-bottom-left-radius: 0;
  953. border-bottom-right-radius: 0;
  954. }
  955. /* TimeGrid Event Styling
  956. ----------------------------------------------------------------------------------------------------
  957. We use the full "fc-time-grid-event" class instead of using descendants because the event won't
  958. be a descendant of the grid when it is being dragged.
  959. */
  960. .fc-time-grid-event {
  961. overflow: hidden; /* don't let the bg flow over rounded corners */
  962. }
  963. .fc-time-grid-event.fc-selected {
  964. /* need to allow touch resizers to extend outside event's bounding box */
  965. /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  966. overflow: visible;
  967. }
  968. .fc-time-grid-event.fc-selected .fc-bg {
  969. display: none; /* hide semi-white background, to appear darker */
  970. }
  971. .fc-time-grid-event .fc-content {
  972. overflow: hidden; /* for when .fc-selected */
  973. }
  974. .fc-time-grid-event .fc-time,
  975. .fc-time-grid-event .fc-title {
  976. padding: 0 1px;
  977. }
  978. .fc-time-grid-event .fc-time {
  979. font-size: .85em;
  980. white-space: nowrap;
  981. }
  982. /* short mode, where time and title are on the same line */
  983. .fc-time-grid-event.fc-short .fc-content {
  984. /* don't wrap to second line (now that contents will be inline) */
  985. white-space: nowrap;
  986. }
  987. .fc-time-grid-event.fc-short .fc-time,
  988. .fc-time-grid-event.fc-short .fc-title {
  989. /* put the time and title on the same line */
  990. display: inline-block;
  991. vertical-align: top;
  992. }
  993. .fc-time-grid-event.fc-short .fc-time span {
  994. display: none; /* don't display the full time text... */
  995. }
  996. .fc-time-grid-event.fc-short .fc-time:before {
  997. content: attr(data-start); /* ...instead, display only the start time */
  998. }
  999. .fc-time-grid-event.fc-short .fc-time:after {
  1000. content: "\000A0-\000A0"; /* seperate with a dash, wrapped in nbsp's */
  1001. }
  1002. .fc-time-grid-event.fc-short .fc-title {
  1003. font-size: .85em; /* make the title text the same size as the time */
  1004. padding: 0; /* undo padding from above */
  1005. }
  1006. /* resizer (cursor device) */
  1007. .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  1008. left: 0;
  1009. right: 0;
  1010. bottom: 0;
  1011. height: 8px;
  1012. overflow: hidden;
  1013. line-height: 8px;
  1014. font-size: 11px;
  1015. font-family: monospace;
  1016. text-align: center;
  1017. cursor: s-resize;
  1018. }
  1019. .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  1020. content: "=";
  1021. }
  1022. /* resizer (touch device) */
  1023. .fc-time-grid-event.fc-selected .fc-resizer {
  1024. /* 10x10 dot */
  1025. border-radius: 5px;
  1026. border-width: 1px;
  1027. width: 8px;
  1028. height: 8px;
  1029. border-style: solid;
  1030. border-color: inherit;
  1031. background: #fff;
  1032. /* horizontally center */
  1033. left: 50%;
  1034. margin-left: -5px;
  1035. /* center on the bottom edge */
  1036. bottom: -5px;
  1037. }
  1038. /* Now Indicator
  1039. --------------------------------------------------------------------------------------------------*/
  1040. .fc-time-grid .fc-now-indicator-line {
  1041. border-top-width: 1px;
  1042. left: 0;
  1043. right: 0;
  1044. }
  1045. /* arrow on axis */
  1046. .fc-time-grid .fc-now-indicator-arrow {
  1047. margin-top: -5px; /* vertically center on top coordinate */
  1048. }
  1049. .fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  1050. left: 0;
  1051. /* triangle pointing right... */
  1052. border-width: 5px 0 5px 6px;
  1053. border-top-color: transparent;
  1054. border-bottom-color: transparent;
  1055. }
  1056. .fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  1057. right: 0;
  1058. /* triangle pointing left... */
  1059. border-width: 5px 6px 5px 0;
  1060. border-top-color: transparent;
  1061. border-bottom-color: transparent;
  1062. }
  1063. /* List View
  1064. --------------------------------------------------------------------------------------------------*/
  1065. /* possibly reusable */
  1066. .fc-event-dot {
  1067. display: inline-block;
  1068. width: 10px;
  1069. height: 10px;
  1070. border-radius: 5px;
  1071. }
  1072. /* view wrapper */
  1073. .fc-rtl .fc-list-view {
  1074. direction: rtl; /* unlike core views, leverage browser RTL */
  1075. }
  1076. .fc-list-view {
  1077. border-width: 1px;
  1078. border-style: solid;
  1079. }
  1080. /* table resets */
  1081. .fc .fc-list-table {
  1082. table-layout: auto; /* for shrinkwrapping cell content */
  1083. }
  1084. .fc-list-table td {
  1085. border-width: 1px 0 0;
  1086. padding: 8px 14px;
  1087. }
  1088. .fc-list-table tr:first-child td {
  1089. border-top-width: 0;
  1090. }
  1091. /* day headings with the list */
  1092. .fc-list-heading {
  1093. border-bottom-width: 1px;
  1094. }
  1095. .fc-list-heading td {
  1096. font-weight: bold;
  1097. }
  1098. .fc-ltr .fc-list-heading-main { float: left; }
  1099. .fc-ltr .fc-list-heading-alt { float: right; }
  1100. .fc-rtl .fc-list-heading-main { float: right; }
  1101. .fc-rtl .fc-list-heading-alt { float: left; }
  1102. /* event list items */
  1103. .fc-list-item.fc-has-url {
  1104. cursor: pointer; /* whole row will be clickable */
  1105. }
  1106. .fc-list-item-marker,
  1107. .fc-list-item-time {
  1108. white-space: nowrap;
  1109. width: 1px;
  1110. }
  1111. /* make the dot closer to the event title */
  1112. .fc-ltr .fc-list-item-marker { padding-right: 0; }
  1113. .fc-rtl .fc-list-item-marker { padding-left: 0; }
  1114. .fc-list-item-title a {
  1115. /* every event title cell has an <a> tag */
  1116. text-decoration: none;
  1117. color: inherit;
  1118. }
  1119. .fc-list-item-title a[href]:hover {
  1120. /* hover effect only on titles with hrefs */
  1121. text-decoration: underline;
  1122. }
  1123. /* message when no events */
  1124. .fc-list-empty-wrap2 {
  1125. position: absolute;
  1126. top: 0;
  1127. left: 0;
  1128. right: 0;
  1129. bottom: 0;
  1130. }
  1131. .fc-list-empty-wrap1 {
  1132. width: 100%;
  1133. height: 100%;
  1134. display: table;
  1135. }
  1136. .fc-list-empty {
  1137. display: table-cell;
  1138. vertical-align: middle;
  1139. text-align: center;
  1140. }
  1141. .fc-unthemed .fc-list-empty { /* theme will provide own background */
  1142. background-color: #eee;
  1143. }