1 | @charset "UTF-8";
|
---|
2 | /*!
|
---|
3 | * FullCalendar v3.7.0 Stylesheet
|
---|
4 | * Docs & License: https://fullcalendar.io/
|
---|
5 | * (c) 2017 Adam Shaw
|
---|
6 | */
|
---|
7 | .fc button, .fc table {
|
---|
8 | font-size: 1em;
|
---|
9 | }
|
---|
10 |
|
---|
11 | body .fc {
|
---|
12 | font-size: 1em;
|
---|
13 | }
|
---|
14 |
|
---|
15 | .fc-bg {
|
---|
16 | bottom: 0;
|
---|
17 | }
|
---|
18 |
|
---|
19 | .fc-row .fc-bgevent-skeleton, .fc-row .fc-highlight-skeleton {
|
---|
20 | bottom: 0;
|
---|
21 | }
|
---|
22 |
|
---|
23 | .fc-icon, .fc-unselectable {
|
---|
24 | -webkit-touch-callout: none;
|
---|
25 | -khtml-user-select: none;
|
---|
26 | }
|
---|
27 |
|
---|
28 | .fc {
|
---|
29 | direction: ltr;
|
---|
30 | text-align: left;
|
---|
31 | }
|
---|
32 |
|
---|
33 | .fc-rtl {
|
---|
34 | text-align: right;
|
---|
35 | }
|
---|
36 |
|
---|
37 | .fc th, .fc-basic-view td.fc-week-number, .fc-icon, .fc-toolbar {
|
---|
38 | text-align: center;
|
---|
39 | }
|
---|
40 |
|
---|
41 | .fc-highlight {
|
---|
42 | background: #bce8f1;
|
---|
43 | opacity: 0.3;
|
---|
44 | }
|
---|
45 |
|
---|
46 | .fc-bgevent {
|
---|
47 | background: #8fdf82;
|
---|
48 | opacity: 0.3;
|
---|
49 | }
|
---|
50 |
|
---|
51 | .fc-nonbusiness {
|
---|
52 | background: #d7d7d7;
|
---|
53 | }
|
---|
54 |
|
---|
55 | .fc button {
|
---|
56 | box-sizing: border-box;
|
---|
57 | margin: 0;
|
---|
58 | height: 2.1em;
|
---|
59 | padding: 0 .6em;
|
---|
60 | white-space: nowrap;
|
---|
61 | cursor: pointer;
|
---|
62 | }
|
---|
63 |
|
---|
64 | .fc button::-moz-focus-inner {
|
---|
65 | margin: 0;
|
---|
66 | padding: 0;
|
---|
67 | }
|
---|
68 |
|
---|
69 | .fc-state-default {
|
---|
70 | border: 1px solid;
|
---|
71 | background-color: #f5f5f5;
|
---|
72 | background-image: linear-gradient(to bottom, #fff, #e6e6e6);
|
---|
73 | background-repeat: repeat-x;
|
---|
74 | border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
---|
75 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
---|
76 | color: #333;
|
---|
77 | text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
---|
78 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
---|
79 | }
|
---|
80 |
|
---|
81 | .fc-state-default.fc-corner-left {
|
---|
82 | border-top-left-radius: 4px;
|
---|
83 | border-bottom-left-radius: 4px;
|
---|
84 | }
|
---|
85 |
|
---|
86 | .fc-state-default.fc-corner-right {
|
---|
87 | border-top-right-radius: 4px;
|
---|
88 | border-bottom-right-radius: 4px;
|
---|
89 | }
|
---|
90 |
|
---|
91 | .fc button .fc-icon {
|
---|
92 | position: relative;
|
---|
93 | top: -.05em;
|
---|
94 | margin: 0 .2em;
|
---|
95 | vertical-align: middle;
|
---|
96 | }
|
---|
97 |
|
---|
98 | .fc-state-active, .fc-state-disabled, .fc-state-down {
|
---|
99 | color: #333;
|
---|
100 | background-color: #e6e6e6;
|
---|
101 | }
|
---|
102 |
|
---|
103 | .fc-state-hover {
|
---|
104 | color: #333;
|
---|
105 | background-color: #e6e6e6;
|
---|
106 | color: #333;
|
---|
107 | text-decoration: none;
|
---|
108 | background-position: 0 -15px;
|
---|
109 | transition: background-position 0.1s linear;
|
---|
110 | }
|
---|
111 |
|
---|
112 | .fc-state-active, .fc-state-down {
|
---|
113 | background-color: #ccc;
|
---|
114 | background-image: none;
|
---|
115 | box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
---|
116 | }
|
---|
117 |
|
---|
118 | .fc-state-disabled {
|
---|
119 | cursor: default;
|
---|
120 | background-image: none;
|
---|
121 | opacity: .65;
|
---|
122 | box-shadow: none;
|
---|
123 | }
|
---|
124 |
|
---|
125 | .fc-event.fc-draggable, .fc-event[href] {
|
---|
126 | cursor: pointer;
|
---|
127 | }
|
---|
128 |
|
---|
129 | .fc-popover .fc-header .fc-close, a[data-goto] {
|
---|
130 | cursor: pointer;
|
---|
131 | }
|
---|
132 |
|
---|
133 | .fc-button-group {
|
---|
134 | display: inline-block;
|
---|
135 | }
|
---|
136 |
|
---|
137 | .fc .fc-button-group > * {
|
---|
138 | float: left;
|
---|
139 | margin: 0 0 0 -1px;
|
---|
140 | }
|
---|
141 |
|
---|
142 | .fc .fc-button-group > :first-child {
|
---|
143 | margin-left: 0;
|
---|
144 | }
|
---|
145 |
|
---|
146 | .fc-popover {
|
---|
147 | position: absolute;
|
---|
148 | box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
---|
149 | }
|
---|
150 |
|
---|
151 | .fc-popover .fc-header {
|
---|
152 | padding: 2px 4px;
|
---|
153 | }
|
---|
154 |
|
---|
155 | .fc-popover .fc-header .fc-title {
|
---|
156 | margin: 0 2px;
|
---|
157 | }
|
---|
158 |
|
---|
159 | .fc-ltr .fc-popover .fc-header .fc-title, .fc-rtl .fc-popover .fc-header .fc-close {
|
---|
160 | float: left;
|
---|
161 | }
|
---|
162 |
|
---|
163 | .fc-ltr .fc-popover .fc-header .fc-close, .fc-rtl .fc-popover .fc-header .fc-title {
|
---|
164 | float: right;
|
---|
165 | }
|
---|
166 |
|
---|
167 | .fc-divider {
|
---|
168 | border-style: solid;
|
---|
169 | border-width: 1px;
|
---|
170 | }
|
---|
171 |
|
---|
172 | hr.fc-divider {
|
---|
173 | height: 0;
|
---|
174 | margin: 0;
|
---|
175 | padding: 0 0 2px;
|
---|
176 | border-width: 1px 0;
|
---|
177 | }
|
---|
178 |
|
---|
179 | .fc-bg table {
|
---|
180 | height: 100%;
|
---|
181 | }
|
---|
182 |
|
---|
183 | .fc-row .fc-bgevent-skeleton table, .fc-row .fc-highlight-skeleton table {
|
---|
184 | height: 100%;
|
---|
185 | }
|
---|
186 |
|
---|
187 | .fc-clear {
|
---|
188 | clear: both;
|
---|
189 | }
|
---|
190 |
|
---|
191 | .fc-bg, .fc-bgevent-skeleton, .fc-helper-skeleton, .fc-highlight-skeleton {
|
---|
192 | position: absolute;
|
---|
193 | top: 0;
|
---|
194 | left: 0;
|
---|
195 | right: 0;
|
---|
196 | }
|
---|
197 |
|
---|
198 | .fc table {
|
---|
199 | width: 100%;
|
---|
200 | box-sizing: border-box;
|
---|
201 | table-layout: fixed;
|
---|
202 | border-collapse: collapse;
|
---|
203 | border-spacing: 0;
|
---|
204 | }
|
---|
205 |
|
---|
206 | .fc td, .fc th {
|
---|
207 | border-style: solid;
|
---|
208 | border-width: 1px;
|
---|
209 | padding: 0;
|
---|
210 | vertical-align: top;
|
---|
211 | }
|
---|
212 |
|
---|
213 | .fc td.fc-today {
|
---|
214 | border-style: double;
|
---|
215 | }
|
---|
216 |
|
---|
217 | a[data-goto]:hover {
|
---|
218 | text-decoration: underline;
|
---|
219 | }
|
---|
220 |
|
---|
221 | .fc .fc-row {
|
---|
222 | border-style: solid;
|
---|
223 | border-width: 0;
|
---|
224 | }
|
---|
225 |
|
---|
226 | .fc-row {
|
---|
227 | position: relative;
|
---|
228 | }
|
---|
229 |
|
---|
230 | .fc-row table {
|
---|
231 | border-left: 0 hidden transparent;
|
---|
232 | border-right: 0 hidden transparent;
|
---|
233 | border-bottom: 0 hidden transparent;
|
---|
234 | }
|
---|
235 |
|
---|
236 | .fc-row:first-child table {
|
---|
237 | border-top: 0 hidden transparent;
|
---|
238 | }
|
---|
239 |
|
---|
240 | .fc-row .fc-bg {
|
---|
241 | z-index: 1;
|
---|
242 | }
|
---|
243 |
|
---|
244 | .fc-row .fc-bgevent-skeleton td, .fc-row .fc-highlight-skeleton td {
|
---|
245 | border-color: transparent;
|
---|
246 | }
|
---|
247 |
|
---|
248 | .fc-row .fc-bgevent-skeleton {
|
---|
249 | z-index: 2;
|
---|
250 | }
|
---|
251 |
|
---|
252 | .fc-row .fc-highlight-skeleton {
|
---|
253 | z-index: 3;
|
---|
254 | }
|
---|
255 |
|
---|
256 | .fc-row .fc-content-skeleton {
|
---|
257 | position: relative;
|
---|
258 | z-index: 4;
|
---|
259 | padding-bottom: 2px;
|
---|
260 | }
|
---|
261 |
|
---|
262 | .fc-row .fc-helper-skeleton {
|
---|
263 | z-index: 5;
|
---|
264 | }
|
---|
265 |
|
---|
266 | .fc .fc-row .fc-content-skeleton table, .fc .fc-row .fc-content-skeleton td {
|
---|
267 | background: 0 0;
|
---|
268 | border-color: transparent;
|
---|
269 | }
|
---|
270 |
|
---|
271 | .fc .fc-row .fc-helper-skeleton td {
|
---|
272 | background: 0 0;
|
---|
273 | border-color: transparent;
|
---|
274 | }
|
---|
275 |
|
---|
276 | .fc-row .fc-content-skeleton td, .fc-row .fc-helper-skeleton td {
|
---|
277 | border-bottom: 0;
|
---|
278 | }
|
---|
279 |
|
---|
280 | .fc-row .fc-content-skeleton tbody td, .fc-row .fc-helper-skeleton tbody td {
|
---|
281 | border-top: 0;
|
---|
282 | }
|
---|
283 |
|
---|
284 | .fc-scroller {
|
---|
285 | -webkit-overflow-scrolling: touch;
|
---|
286 | }
|
---|
287 |
|
---|
288 | .fc-icon, .fc-row.fc-rigid, .fc-time-grid-event {
|
---|
289 | overflow: hidden;
|
---|
290 | }
|
---|
291 |
|
---|
292 | .fc-scroller > .fc-day-grid, .fc-scroller > .fc-time-grid {
|
---|
293 | position: relative;
|
---|
294 | width: 100%;
|
---|
295 | }
|
---|
296 |
|
---|
297 | .fc-event {
|
---|
298 | position: relative;
|
---|
299 | display: block;
|
---|
300 | font-size: .85em;
|
---|
301 | line-height: 1.3;
|
---|
302 | border-radius: 2px;
|
---|
303 | border-left: 3px solid rgba(0, 40, 100, 0.12);
|
---|
304 | border-top: 1px solid rgba(0, 40, 100, 0.12) !important;
|
---|
305 | border-right: 1px solid rgba(0, 40, 100, 0.12) !important;
|
---|
306 | border-bottom: 1px solid rgba(0, 40, 100, 0.12) !important;
|
---|
307 | background-color: #fff !important;
|
---|
308 | }
|
---|
309 |
|
---|
310 | .fc-event-dot {
|
---|
311 | background-color: #3a87ad;
|
---|
312 | }
|
---|
313 |
|
---|
314 | .fc-event {
|
---|
315 | text-decoration: none;
|
---|
316 | }
|
---|
317 |
|
---|
318 | .fc-event:hover {
|
---|
319 | text-decoration: none;
|
---|
320 | }
|
---|
321 |
|
---|
322 | .fc-not-allowed {
|
---|
323 | cursor: not-allowed;
|
---|
324 | }
|
---|
325 |
|
---|
326 | .fc-not-allowed .fc-event {
|
---|
327 | cursor: not-allowed;
|
---|
328 | }
|
---|
329 |
|
---|
330 | .fc-event .fc-bg {
|
---|
331 | z-index: 1;
|
---|
332 | background: #fff;
|
---|
333 | opacity: 0.25;
|
---|
334 | }
|
---|
335 |
|
---|
336 | .fc-event .fc-content {
|
---|
337 | position: relative;
|
---|
338 | z-index: 2;
|
---|
339 | }
|
---|
340 |
|
---|
341 | .fc-event .fc-resizer {
|
---|
342 | position: absolute;
|
---|
343 | z-index: 4;
|
---|
344 | display: none;
|
---|
345 | }
|
---|
346 |
|
---|
347 | .fc-event.fc-allow-mouse-resize .fc-resizer {
|
---|
348 | display: block;
|
---|
349 | }
|
---|
350 |
|
---|
351 | .fc-event.fc-selected {
|
---|
352 | z-index: 9999 !important;
|
---|
353 | box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
---|
354 | }
|
---|
355 |
|
---|
356 | .fc-event.fc-selected .fc-resizer {
|
---|
357 | display: block;
|
---|
358 | }
|
---|
359 |
|
---|
360 | .fc-event.fc-selected .fc-resizer:before {
|
---|
361 | content: "";
|
---|
362 | position: absolute;
|
---|
363 | z-index: 9999;
|
---|
364 | top: 50%;
|
---|
365 | left: 50%;
|
---|
366 | width: 40px;
|
---|
367 | height: 40px;
|
---|
368 | margin-left: -20px;
|
---|
369 | margin-top: -20px;
|
---|
370 | }
|
---|
371 |
|
---|
372 | .fc-event.fc-selected.fc-dragging {
|
---|
373 | box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
|
---|
374 | }
|
---|
375 |
|
---|
376 | .fc-h-event.fc-selected:before {
|
---|
377 | content: "";
|
---|
378 | position: absolute;
|
---|
379 | z-index: 3;
|
---|
380 | top: -10px;
|
---|
381 | bottom: -10px;
|
---|
382 | left: 0;
|
---|
383 | right: 0;
|
---|
384 | }
|
---|
385 |
|
---|
386 | .fc-ltr .fc-h-event.fc-not-start, .fc-rtl .fc-h-event.fc-not-end {
|
---|
387 | margin-left: 0;
|
---|
388 | border-left-width: 0;
|
---|
389 | padding-left: 1px;
|
---|
390 | border-top-left-radius: 0;
|
---|
391 | border-bottom-left-radius: 0;
|
---|
392 | }
|
---|
393 |
|
---|
394 | .fc-ltr .fc-h-event.fc-not-end,
|
---|
395 | .fc-rtl .fc-h-event.fc-not-start {
|
---|
396 | margin-right: -1px;
|
---|
397 | border-right-width: 0;
|
---|
398 | padding-right: 1px;
|
---|
399 | border-top-right-radius: 0;
|
---|
400 | border-bottom-right-radius: 0;
|
---|
401 | }
|
---|
402 |
|
---|
403 | .fc-ltr .fc-h-event .fc-start-resizer, .fc-rtl .fc-h-event .fc-end-resizer {
|
---|
404 | cursor: w-resize;
|
---|
405 | left: -1px;
|
---|
406 | }
|
---|
407 |
|
---|
408 | .fc-ltr .fc-h-event .fc-end-resizer, .fc-rtl .fc-h-event .fc-start-resizer {
|
---|
409 | cursor: e-resize;
|
---|
410 | right: -1px;
|
---|
411 | }
|
---|
412 |
|
---|
413 | .fc-h-event.fc-allow-mouse-resize .fc-resizer {
|
---|
414 | width: 7px;
|
---|
415 | top: -1px;
|
---|
416 | bottom: -1px;
|
---|
417 | }
|
---|
418 |
|
---|
419 | .fc-h-event.fc-selected .fc-resizer {
|
---|
420 | border-radius: 4px;
|
---|
421 | border-width: 1px;
|
---|
422 | width: 6px;
|
---|
423 | height: 6px;
|
---|
424 | border-style: solid;
|
---|
425 | border-color: inherit;
|
---|
426 | background: #fff;
|
---|
427 | top: 50%;
|
---|
428 | margin-top: -4px;
|
---|
429 | }
|
---|
430 |
|
---|
431 | .fc-ltr .fc-h-event.fc-selected .fc-start-resizer, .fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
|
---|
432 | margin-left: -4px;
|
---|
433 | }
|
---|
434 |
|
---|
435 | .fc-ltr .fc-h-event.fc-selected .fc-end-resizer, .fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
|
---|
436 | margin-right: -4px;
|
---|
437 | }
|
---|
438 |
|
---|
439 | .fc-day-grid-event {
|
---|
440 | margin: 1px 2px 0;
|
---|
441 | padding: 4px 6px;
|
---|
442 | }
|
---|
443 |
|
---|
444 | tr:first-child > td > .fc-day-grid-event {
|
---|
445 | margin-top: 2px;
|
---|
446 | }
|
---|
447 |
|
---|
448 | .fc-day-grid-event.fc-selected:after {
|
---|
449 | content: "";
|
---|
450 | position: absolute;
|
---|
451 | z-index: 1;
|
---|
452 | top: -1px;
|
---|
453 | right: -1px;
|
---|
454 | bottom: -1px;
|
---|
455 | left: -1px;
|
---|
456 | background: #000;
|
---|
457 | opacity: 0.25;
|
---|
458 | }
|
---|
459 |
|
---|
460 | .fc-day-grid-event .fc-content {
|
---|
461 | white-space: nowrap;
|
---|
462 | overflow: hidden;
|
---|
463 | }
|
---|
464 |
|
---|
465 | .fc-day-grid-event .fc-time {
|
---|
466 | font-weight: 700;
|
---|
467 | float: right;
|
---|
468 | }
|
---|
469 |
|
---|
470 | .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer, .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
|
---|
471 | margin-left: -2px;
|
---|
472 | }
|
---|
473 |
|
---|
474 | .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer, .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
|
---|
475 | margin-right: -2px;
|
---|
476 | }
|
---|
477 |
|
---|
478 | a.fc-more {
|
---|
479 | margin: 1px 3px;
|
---|
480 | font-size: .85em;
|
---|
481 | cursor: pointer;
|
---|
482 | text-decoration: none;
|
---|
483 | }
|
---|
484 |
|
---|
485 | a.fc-more:hover {
|
---|
486 | text-decoration: underline;
|
---|
487 | }
|
---|
488 |
|
---|
489 | .fc.fc-bootstrap3 a, .ui-widget .fc-event {
|
---|
490 | text-decoration: none;
|
---|
491 | }
|
---|
492 |
|
---|
493 | .fc-limited {
|
---|
494 | display: none;
|
---|
495 | }
|
---|
496 |
|
---|
497 | .fc-icon, .fc-toolbar .fc-center {
|
---|
498 | display: inline-block;
|
---|
499 | }
|
---|
500 |
|
---|
501 | .fc-day-grid .fc-row {
|
---|
502 | z-index: 1;
|
---|
503 | }
|
---|
504 |
|
---|
505 | .fc-more-popover {
|
---|
506 | z-index: 2;
|
---|
507 | width: 220px;
|
---|
508 | }
|
---|
509 |
|
---|
510 | .fc-more-popover .fc-event-container {
|
---|
511 | padding: 10px;
|
---|
512 | }
|
---|
513 |
|
---|
514 | .fc-now-indicator {
|
---|
515 | position: absolute;
|
---|
516 | border: 0 solid red;
|
---|
517 | }
|
---|
518 |
|
---|
519 | .fc-icon:after, .fc-toolbar button {
|
---|
520 | position: relative;
|
---|
521 | }
|
---|
522 |
|
---|
523 | .fc-unselectable {
|
---|
524 | -webkit-user-select: none;
|
---|
525 | -moz-user-select: none;
|
---|
526 | -ms-user-select: none;
|
---|
527 | user-select: none;
|
---|
528 | -webkit-tap-highlight-color: transparent;
|
---|
529 | }
|
---|
530 |
|
---|
531 | .fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td, .fc-unthemed th, .fc-unthemed thead {
|
---|
532 | border-color: #ddd;
|
---|
533 | }
|
---|
534 |
|
---|
535 | .fc-unthemed .fc-popover {
|
---|
536 | background-color: #fff;
|
---|
537 | border-width: 1px;
|
---|
538 | border-style: solid;
|
---|
539 | }
|
---|
540 |
|
---|
541 | .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-popover .fc-header {
|
---|
542 | background: #eee;
|
---|
543 | }
|
---|
544 |
|
---|
545 | .fc-unthemed td.fc-today {
|
---|
546 | background: #fcf8e3;
|
---|
547 | }
|
---|
548 |
|
---|
549 | .fc-unthemed .fc-disabled-day {
|
---|
550 | background: #d7d7d7;
|
---|
551 | opacity: 0.3;
|
---|
552 | }
|
---|
553 |
|
---|
554 | .fc-icon {
|
---|
555 | height: 1em;
|
---|
556 | line-height: 1em;
|
---|
557 | font-size: 1em;
|
---|
558 | font-family: "Courier New", Courier, monospace;
|
---|
559 | -webkit-user-select: none;
|
---|
560 | -moz-user-select: none;
|
---|
561 | -ms-user-select: none;
|
---|
562 | user-select: none;
|
---|
563 | }
|
---|
564 |
|
---|
565 | .fc-icon-left-single-arrow:after {
|
---|
566 | content: "\02039";
|
---|
567 | font-weight: 700;
|
---|
568 | font-size: 200%;
|
---|
569 | top: -7%;
|
---|
570 | }
|
---|
571 |
|
---|
572 | .fc-icon-right-single-arrow:after {
|
---|
573 | content: "\0203A";
|
---|
574 | font-weight: 700;
|
---|
575 | font-size: 200%;
|
---|
576 | top: -7%;
|
---|
577 | }
|
---|
578 |
|
---|
579 | .fc-icon-left-double-arrow:after {
|
---|
580 | content: "\000AB";
|
---|
581 | font-size: 160%;
|
---|
582 | top: -7%;
|
---|
583 | }
|
---|
584 |
|
---|
585 | .fc-icon-right-double-arrow:after {
|
---|
586 | content: "\000BB";
|
---|
587 | font-size: 160%;
|
---|
588 | top: -7%;
|
---|
589 | }
|
---|
590 |
|
---|
591 | .fc-icon-left-triangle:after {
|
---|
592 | content: "\25C4";
|
---|
593 | font-size: 125%;
|
---|
594 | top: 3%;
|
---|
595 | }
|
---|
596 |
|
---|
597 | .fc-icon-right-triangle:after {
|
---|
598 | content: "\25BA";
|
---|
599 | font-size: 125%;
|
---|
600 | top: 3%;
|
---|
601 | }
|
---|
602 |
|
---|
603 | .fc-icon-down-triangle:after {
|
---|
604 | content: "\25BC";
|
---|
605 | font-size: 125%;
|
---|
606 | top: 2%;
|
---|
607 | }
|
---|
608 |
|
---|
609 | .fc-icon-x:after {
|
---|
610 | content: "\000D7";
|
---|
611 | font-size: 200%;
|
---|
612 | top: 6%;
|
---|
613 | }
|
---|
614 |
|
---|
615 | .fc-unthemed .fc-popover .fc-header .fc-close {
|
---|
616 | color: #666;
|
---|
617 | font-size: .9em;
|
---|
618 | margin-top: 2px;
|
---|
619 | }
|
---|
620 |
|
---|
621 | .fc-unthemed .fc-list-item:hover td {
|
---|
622 | background-color: #f5f5f5;
|
---|
623 | }
|
---|
624 |
|
---|
625 | .ui-widget .fc-disabled-day {
|
---|
626 | background-image: none;
|
---|
627 | }
|
---|
628 |
|
---|
629 | .fc-bootstrap3 .fc-time-grid .fc-slats table, .fc-time-grid .fc-slats .ui-widget-content {
|
---|
630 | background: 0 0;
|
---|
631 | }
|
---|
632 |
|
---|
633 | .fc-popover > .ui-widget-header + .ui-widget-content {
|
---|
634 | border-top: 0;
|
---|
635 | }
|
---|
636 |
|
---|
637 | .ui-widget .fc-event {
|
---|
638 | color: #fff;
|
---|
639 | font-weight: 400;
|
---|
640 | }
|
---|
641 |
|
---|
642 | .ui-widget td.fc-axis {
|
---|
643 | font-weight: 400;
|
---|
644 | }
|
---|
645 |
|
---|
646 | .fc.fc-bootstrap3 a[data-goto]:hover {
|
---|
647 | text-decoration: underline;
|
---|
648 | }
|
---|
649 |
|
---|
650 | .fc-bootstrap3 hr.fc-divider {
|
---|
651 | border-color: inherit;
|
---|
652 | }
|
---|
653 |
|
---|
654 | .fc-bootstrap3 .fc-today.alert {
|
---|
655 | border-radius: 0;
|
---|
656 | }
|
---|
657 |
|
---|
658 | .fc-bootstrap3 .fc-popover .panel-body {
|
---|
659 | padding: 0;
|
---|
660 | }
|
---|
661 |
|
---|
662 | .fc-toolbar.fc-header-toolbar {
|
---|
663 | margin-bottom: 1em;
|
---|
664 | }
|
---|
665 |
|
---|
666 | .fc-toolbar.fc-footer-toolbar {
|
---|
667 | margin-top: 1em;
|
---|
668 | }
|
---|
669 |
|
---|
670 | .fc-toolbar .fc-left {
|
---|
671 | float: left;
|
---|
672 | }
|
---|
673 |
|
---|
674 | .fc-toolbar .fc-right {
|
---|
675 | float: right;
|
---|
676 | }
|
---|
677 |
|
---|
678 | .fc .fc-toolbar > * > * {
|
---|
679 | float: left;
|
---|
680 | margin-left: 0.75em;
|
---|
681 | }
|
---|
682 |
|
---|
683 | .fc .fc-toolbar > * > :first-child {
|
---|
684 | margin-left: 0;
|
---|
685 | }
|
---|
686 |
|
---|
687 | .fc-toolbar h2 {
|
---|
688 | margin: 0;
|
---|
689 | font-weight: 400;
|
---|
690 | font-size: 1.3rem;
|
---|
691 | line-height: 2rem;
|
---|
692 | }
|
---|
693 |
|
---|
694 | .fc-toolbar .fc-state-hover,
|
---|
695 | .fc-toolbar .ui-state-hover {
|
---|
696 | z-index: 2;
|
---|
697 | }
|
---|
698 |
|
---|
699 | .fc-toolbar .fc-state-down {
|
---|
700 | z-index: 3;
|
---|
701 | }
|
---|
702 |
|
---|
703 | .fc-toolbar .fc-state-active, .fc-toolbar .ui-state-active {
|
---|
704 | z-index: 4;
|
---|
705 | }
|
---|
706 |
|
---|
707 | .fc-toolbar button:focus {
|
---|
708 | z-index: 5;
|
---|
709 | }
|
---|
710 |
|
---|
711 | .fc-view-container *, .fc-view-container :after, .fc-view-container :before {
|
---|
712 | box-sizing: content-box;
|
---|
713 | }
|
---|
714 |
|
---|
715 | .fc-view {
|
---|
716 | position: relative;
|
---|
717 | z-index: 1;
|
---|
718 | }
|
---|
719 |
|
---|
720 | .fc-view > table {
|
---|
721 | position: relative;
|
---|
722 | z-index: 1;
|
---|
723 | }
|
---|
724 |
|
---|
725 | .fc-basicDay-view .fc-content-skeleton, .fc-basicWeek-view .fc-content-skeleton {
|
---|
726 | padding-bottom: 1em;
|
---|
727 | }
|
---|
728 |
|
---|
729 | .fc-basic-view .fc-body .fc-row {
|
---|
730 | min-height: 4em;
|
---|
731 | }
|
---|
732 |
|
---|
733 | .fc-row.fc-rigid .fc-content-skeleton {
|
---|
734 | position: absolute;
|
---|
735 | top: 0;
|
---|
736 | left: 0;
|
---|
737 | right: 0;
|
---|
738 | }
|
---|
739 |
|
---|
740 | .fc-day-top.fc-other-month {
|
---|
741 | opacity: 0.3;
|
---|
742 | font-weight: 400;
|
---|
743 | }
|
---|
744 |
|
---|
745 | .fc-basic-view .fc-day-number,
|
---|
746 | .fc-basic-view .fc-week-number {
|
---|
747 | padding: 4px 8px;
|
---|
748 | font-weight: 600;
|
---|
749 | }
|
---|
750 |
|
---|
751 | .fc-basic-view th.fc-day-number, .fc-basic-view th.fc-week-number {
|
---|
752 | padding: 0 2px;
|
---|
753 | }
|
---|
754 |
|
---|
755 | .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
|
---|
756 | float: right;
|
---|
757 | }
|
---|
758 |
|
---|
759 | .fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
|
---|
760 | float: left;
|
---|
761 | }
|
---|
762 |
|
---|
763 | .fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
|
---|
764 | float: left;
|
---|
765 | border-radius: 0 0 3px;
|
---|
766 | }
|
---|
767 |
|
---|
768 | .fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
|
---|
769 | float: right;
|
---|
770 | border-radius: 0 0 0 3px;
|
---|
771 | }
|
---|
772 |
|
---|
773 | .fc-basic-view .fc-day-top .fc-week-number {
|
---|
774 | min-width: 1.5em;
|
---|
775 | text-align: center;
|
---|
776 | background-color: #f2f2f2;
|
---|
777 | color: grey;
|
---|
778 | }
|
---|
779 |
|
---|
780 | .fc-basic-view td.fc-week-number > * {
|
---|
781 | display: inline-block;
|
---|
782 | min-width: 1.25em;
|
---|
783 | }
|
---|
784 |
|
---|
785 | .fc-agenda-view .fc-day-grid {
|
---|
786 | position: relative;
|
---|
787 | z-index: 2;
|
---|
788 | }
|
---|
789 |
|
---|
790 | .fc-agenda-view .fc-day-grid .fc-row {
|
---|
791 | min-height: 3em;
|
---|
792 | }
|
---|
793 |
|
---|
794 | .fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
|
---|
795 | padding-bottom: 1em;
|
---|
796 | }
|
---|
797 |
|
---|
798 | .fc .fc-axis {
|
---|
799 | vertical-align: middle;
|
---|
800 | padding: 0 4px;
|
---|
801 | white-space: nowrap;
|
---|
802 | }
|
---|
803 |
|
---|
804 | .fc-ltr .fc-axis {
|
---|
805 | text-align: right;
|
---|
806 | }
|
---|
807 |
|
---|
808 | .fc-rtl .fc-axis {
|
---|
809 | text-align: left;
|
---|
810 | }
|
---|
811 |
|
---|
812 | .fc-time-grid, .fc-time-grid-container {
|
---|
813 | position: relative;
|
---|
814 | z-index: 1;
|
---|
815 | }
|
---|
816 |
|
---|
817 | .fc-time-grid {
|
---|
818 | min-height: 100%;
|
---|
819 | }
|
---|
820 |
|
---|
821 | .fc-time-grid table {
|
---|
822 | border: 0 hidden transparent;
|
---|
823 | }
|
---|
824 |
|
---|
825 | .fc-time-grid > .fc-bg {
|
---|
826 | z-index: 1;
|
---|
827 | }
|
---|
828 |
|
---|
829 | .fc-time-grid .fc-slats, .fc-time-grid > hr {
|
---|
830 | position: relative;
|
---|
831 | z-index: 2;
|
---|
832 | }
|
---|
833 |
|
---|
834 | .fc-time-grid .fc-content-col {
|
---|
835 | position: relative;
|
---|
836 | }
|
---|
837 |
|
---|
838 | .fc-time-grid .fc-content-skeleton {
|
---|
839 | position: absolute;
|
---|
840 | z-index: 3;
|
---|
841 | top: 0;
|
---|
842 | left: 0;
|
---|
843 | right: 0;
|
---|
844 | }
|
---|
845 |
|
---|
846 | .fc-time-grid .fc-business-container {
|
---|
847 | position: relative;
|
---|
848 | z-index: 1;
|
---|
849 | }
|
---|
850 |
|
---|
851 | .fc-time-grid .fc-bgevent-container {
|
---|
852 | position: relative;
|
---|
853 | z-index: 2;
|
---|
854 | }
|
---|
855 |
|
---|
856 | .fc-time-grid .fc-highlight-container {
|
---|
857 | z-index: 3;
|
---|
858 | position: relative;
|
---|
859 | }
|
---|
860 |
|
---|
861 | .fc-time-grid .fc-event-container {
|
---|
862 | position: relative;
|
---|
863 | z-index: 4;
|
---|
864 | }
|
---|
865 |
|
---|
866 | .fc-time-grid .fc-now-indicator-line {
|
---|
867 | z-index: 5;
|
---|
868 | }
|
---|
869 |
|
---|
870 | .fc-time-grid .fc-helper-container {
|
---|
871 | position: relative;
|
---|
872 | z-index: 6;
|
---|
873 | }
|
---|
874 |
|
---|
875 | .fc-time-grid .fc-slats td {
|
---|
876 | height: 1.5em;
|
---|
877 | border-bottom: 0;
|
---|
878 | }
|
---|
879 |
|
---|
880 | .fc-time-grid .fc-slats .fc-minor td {
|
---|
881 | border-top-style: dotted;
|
---|
882 | }
|
---|
883 |
|
---|
884 | .fc-time-grid .fc-highlight {
|
---|
885 | position: absolute;
|
---|
886 | left: 0;
|
---|
887 | right: 0;
|
---|
888 | }
|
---|
889 |
|
---|
890 | .fc-ltr .fc-time-grid .fc-event-container {
|
---|
891 | margin: 0 2.5% 0 2px;
|
---|
892 | }
|
---|
893 |
|
---|
894 | .fc-rtl .fc-time-grid .fc-event-container {
|
---|
895 | margin: 0 2px 0 2.5%;
|
---|
896 | }
|
---|
897 |
|
---|
898 | .fc-time-grid .fc-bgevent,
|
---|
899 | .fc-time-grid .fc-event {
|
---|
900 | position: absolute;
|
---|
901 | z-index: 1;
|
---|
902 | }
|
---|
903 |
|
---|
904 | .fc-time-grid .fc-bgevent {
|
---|
905 | left: 0;
|
---|
906 | right: 0;
|
---|
907 | }
|
---|
908 |
|
---|
909 | .fc-v-event.fc-not-start {
|
---|
910 | border-top-width: 0;
|
---|
911 | padding-top: 1px;
|
---|
912 | border-top-left-radius: 0;
|
---|
913 | border-top-right-radius: 0;
|
---|
914 | }
|
---|
915 |
|
---|
916 | .fc-v-event.fc-not-end {
|
---|
917 | border-bottom-width: 0;
|
---|
918 | padding-bottom: 1px;
|
---|
919 | border-bottom-left-radius: 0;
|
---|
920 | border-bottom-right-radius: 0;
|
---|
921 | }
|
---|
922 |
|
---|
923 | .fc-time-grid-event.fc-selected {
|
---|
924 | overflow: visible;
|
---|
925 | }
|
---|
926 |
|
---|
927 | .fc-time-grid-event.fc-selected .fc-bg {
|
---|
928 | display: none;
|
---|
929 | }
|
---|
930 |
|
---|
931 | .fc-time-grid-event .fc-content {
|
---|
932 | overflow: hidden;
|
---|
933 | }
|
---|
934 |
|
---|
935 | .fc-time-grid-event .fc-time, .fc-time-grid-event .fc-title {
|
---|
936 | padding: 0 1px;
|
---|
937 | }
|
---|
938 |
|
---|
939 | .fc-time-grid-event .fc-time {
|
---|
940 | font-size: .85em;
|
---|
941 | white-space: nowrap;
|
---|
942 | }
|
---|
943 |
|
---|
944 | .fc-time-grid-event.fc-short .fc-content {
|
---|
945 | white-space: nowrap;
|
---|
946 | }
|
---|
947 |
|
---|
948 | .fc-time-grid-event.fc-short .fc-time, .fc-time-grid-event.fc-short .fc-title {
|
---|
949 | display: inline-block;
|
---|
950 | vertical-align: top;
|
---|
951 | }
|
---|
952 |
|
---|
953 | .fc-time-grid-event.fc-short .fc-time span {
|
---|
954 | display: none;
|
---|
955 | }
|
---|
956 |
|
---|
957 | .fc-time-grid-event.fc-short .fc-time:before {
|
---|
958 | content: attr(data-start);
|
---|
959 | }
|
---|
960 |
|
---|
961 | .fc-time-grid-event.fc-short .fc-time:after {
|
---|
962 | content: " - ";
|
---|
963 | }
|
---|
964 |
|
---|
965 | .fc-time-grid-event.fc-short .fc-title {
|
---|
966 | font-size: .85em;
|
---|
967 | padding: 0;
|
---|
968 | }
|
---|
969 |
|
---|
970 | .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
|
---|
971 | left: 0;
|
---|
972 | right: 0;
|
---|
973 | bottom: 0;
|
---|
974 | height: 8px;
|
---|
975 | overflow: hidden;
|
---|
976 | line-height: 8px;
|
---|
977 | font-size: 11px;
|
---|
978 | font-family: monospace;
|
---|
979 | text-align: center;
|
---|
980 | cursor: s-resize;
|
---|
981 | }
|
---|
982 |
|
---|
983 | .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
|
---|
984 | content: "=";
|
---|
985 | }
|
---|
986 |
|
---|
987 | .fc-time-grid-event.fc-selected .fc-resizer {
|
---|
988 | border-radius: 5px;
|
---|
989 | border-width: 1px;
|
---|
990 | width: 8px;
|
---|
991 | height: 8px;
|
---|
992 | border-style: solid;
|
---|
993 | border-color: inherit;
|
---|
994 | background: #fff;
|
---|
995 | left: 50%;
|
---|
996 | margin-left: -5px;
|
---|
997 | bottom: -5px;
|
---|
998 | }
|
---|
999 |
|
---|
1000 | .fc-time-grid .fc-now-indicator-line {
|
---|
1001 | border-top-width: 1px;
|
---|
1002 | left: 0;
|
---|
1003 | right: 0;
|
---|
1004 | }
|
---|
1005 |
|
---|
1006 | .fc-time-grid .fc-now-indicator-arrow {
|
---|
1007 | margin-top: -5px;
|
---|
1008 | }
|
---|
1009 |
|
---|
1010 | .fc-ltr .fc-time-grid .fc-now-indicator-arrow {
|
---|
1011 | left: 0;
|
---|
1012 | border-width: 5px 0 5px 6px;
|
---|
1013 | border-top-color: transparent;
|
---|
1014 | border-bottom-color: transparent;
|
---|
1015 | }
|
---|
1016 |
|
---|
1017 | .fc-rtl .fc-time-grid .fc-now-indicator-arrow {
|
---|
1018 | right: 0;
|
---|
1019 | border-width: 5px 6px 5px 0;
|
---|
1020 | border-top-color: transparent;
|
---|
1021 | border-bottom-color: transparent;
|
---|
1022 | }
|
---|
1023 |
|
---|
1024 | .fc-event-dot {
|
---|
1025 | display: inline-block;
|
---|
1026 | width: 10px;
|
---|
1027 | height: 10px;
|
---|
1028 | border-radius: 5px;
|
---|
1029 | }
|
---|
1030 |
|
---|
1031 | .fc-rtl .fc-list-view {
|
---|
1032 | direction: rtl;
|
---|
1033 | }
|
---|
1034 |
|
---|
1035 | .fc-list-view {
|
---|
1036 | border-width: 1px;
|
---|
1037 | border-style: solid;
|
---|
1038 | }
|
---|
1039 |
|
---|
1040 | .fc .fc-list-table {
|
---|
1041 | table-layout: auto;
|
---|
1042 | }
|
---|
1043 |
|
---|
1044 | .fc-list-table td {
|
---|
1045 | border-width: 1px 0 0;
|
---|
1046 | padding: 8px 14px;
|
---|
1047 | }
|
---|
1048 |
|
---|
1049 | .fc-list-table tr:first-child td {
|
---|
1050 | border-top-width: 0;
|
---|
1051 | }
|
---|
1052 |
|
---|
1053 | .fc-list-heading {
|
---|
1054 | border-bottom-width: 1px;
|
---|
1055 | }
|
---|
1056 |
|
---|
1057 | .fc-list-heading td {
|
---|
1058 | font-weight: 700;
|
---|
1059 | }
|
---|
1060 |
|
---|
1061 | .fc-ltr .fc-list-heading-main {
|
---|
1062 | float: left;
|
---|
1063 | }
|
---|
1064 |
|
---|
1065 | .fc-ltr .fc-list-heading-alt {
|
---|
1066 | float: right;
|
---|
1067 | }
|
---|
1068 |
|
---|
1069 | .fc-rtl .fc-list-heading-main {
|
---|
1070 | float: right;
|
---|
1071 | }
|
---|
1072 |
|
---|
1073 | .fc-rtl .fc-list-heading-alt {
|
---|
1074 | float: left;
|
---|
1075 | }
|
---|
1076 |
|
---|
1077 | .fc-list-item.fc-has-url {
|
---|
1078 | cursor: pointer;
|
---|
1079 | }
|
---|
1080 |
|
---|
1081 | .fc-list-item-marker, .fc-list-item-time {
|
---|
1082 | white-space: nowrap;
|
---|
1083 | width: 1px;
|
---|
1084 | }
|
---|
1085 |
|
---|
1086 | .fc-ltr .fc-list-item-marker {
|
---|
1087 | padding-right: 0;
|
---|
1088 | }
|
---|
1089 |
|
---|
1090 | .fc-rtl .fc-list-item-marker {
|
---|
1091 | padding-left: 0;
|
---|
1092 | }
|
---|
1093 |
|
---|
1094 | .fc-list-item-title a {
|
---|
1095 | text-decoration: none;
|
---|
1096 | color: inherit;
|
---|
1097 | }
|
---|
1098 |
|
---|
1099 | .fc-list-item-title a[href]:hover {
|
---|
1100 | text-decoration: underline;
|
---|
1101 | }
|
---|
1102 |
|
---|
1103 | .fc-list-empty-wrap2 {
|
---|
1104 | position: absolute;
|
---|
1105 | top: 0;
|
---|
1106 | left: 0;
|
---|
1107 | right: 0;
|
---|
1108 | bottom: 0;
|
---|
1109 | }
|
---|
1110 |
|
---|
1111 | .fc-list-empty-wrap1 {
|
---|
1112 | width: 100%;
|
---|
1113 | height: 100%;
|
---|
1114 | display: table;
|
---|
1115 | }
|
---|
1116 |
|
---|
1117 | .fc-list-empty {
|
---|
1118 | display: table-cell;
|
---|
1119 | vertical-align: middle;
|
---|
1120 | text-align: center;
|
---|
1121 | }
|
---|
1122 |
|
---|
1123 | .fc-unthemed .fc-list-empty {
|
---|
1124 | background-color: #eee;
|
---|
1125 | }
|
---|