@fullcalendar/core 4.0.2 → 4.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/locales/da.js +1 -1
- package/locales-all.js +3 -8
- package/locales-all.min.js +1 -6
- package/main.css +333 -181
- package/main.d.ts +2314 -2412
- package/main.esm.js +8558 -0
- package/main.js +240 -314
- package/main.min.css +1 -5
- package/main.min.js +2 -5
- package/package.json +3 -3
package/main.css
CHANGED
|
@@ -1,41 +1,44 @@
|
|
|
1
|
-
|
|
2
|
-
FullCalendar Core Package v4.0.2
|
|
3
|
-
Docs & License: https://fullcalendar.io/
|
|
4
|
-
(c) 2019 Adam Shaw
|
|
5
|
-
*/
|
|
1
|
+
@charset "UTF-8";
|
|
6
2
|
.fc {
|
|
7
3
|
direction: ltr;
|
|
8
|
-
text-align: left;
|
|
4
|
+
text-align: left;
|
|
5
|
+
}
|
|
9
6
|
|
|
10
7
|
.fc-rtl {
|
|
11
|
-
text-align: right;
|
|
8
|
+
text-align: right;
|
|
9
|
+
}
|
|
12
10
|
|
|
13
11
|
body .fc {
|
|
14
12
|
/* extra precedence to overcome jqui */
|
|
15
|
-
font-size: 1em;
|
|
13
|
+
font-size: 1em;
|
|
14
|
+
}
|
|
16
15
|
|
|
17
16
|
/* Colors
|
|
18
17
|
--------------------------------------------------------------------------------------------------*/
|
|
19
18
|
.fc-highlight {
|
|
20
19
|
/* when user is selecting cells */
|
|
21
20
|
background: #bce8f1;
|
|
22
|
-
opacity: .3;
|
|
21
|
+
opacity: 0.3;
|
|
22
|
+
}
|
|
23
23
|
|
|
24
24
|
.fc-bgevent {
|
|
25
25
|
/* default look for background events */
|
|
26
26
|
background: #8fdf82;
|
|
27
|
-
opacity: .3;
|
|
27
|
+
opacity: 0.3;
|
|
28
|
+
}
|
|
28
29
|
|
|
29
30
|
.fc-nonbusiness {
|
|
30
31
|
/* default look for non-business-hours areas */
|
|
31
32
|
/* will inherit .fc-bgevent's styles */
|
|
32
|
-
background: #d7d7d7;
|
|
33
|
+
background: #d7d7d7;
|
|
34
|
+
}
|
|
33
35
|
|
|
34
36
|
/* Popover
|
|
35
37
|
--------------------------------------------------------------------------------------------------*/
|
|
36
38
|
.fc-popover {
|
|
37
39
|
position: absolute;
|
|
38
|
-
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
40
|
+
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
41
|
+
}
|
|
39
42
|
|
|
40
43
|
.fc-popover .fc-header {
|
|
41
44
|
/* TODO: be more consistent with fc-head/fc-body */
|
|
@@ -43,31 +46,37 @@ body .fc {
|
|
|
43
46
|
flex-direction: row;
|
|
44
47
|
justify-content: space-between;
|
|
45
48
|
align-items: center;
|
|
46
|
-
padding: 2px 4px;
|
|
49
|
+
padding: 2px 4px;
|
|
50
|
+
}
|
|
47
51
|
|
|
48
52
|
.fc-rtl .fc-popover .fc-header {
|
|
49
|
-
flex-direction: row-reverse;
|
|
53
|
+
flex-direction: row-reverse;
|
|
54
|
+
}
|
|
50
55
|
|
|
51
56
|
.fc-popover .fc-header .fc-title {
|
|
52
|
-
margin: 0 2px;
|
|
57
|
+
margin: 0 2px;
|
|
58
|
+
}
|
|
53
59
|
|
|
54
60
|
.fc-popover .fc-header .fc-close {
|
|
55
61
|
cursor: pointer;
|
|
56
62
|
opacity: 0.65;
|
|
57
|
-
font-size: 1.1em;
|
|
63
|
+
font-size: 1.1em;
|
|
64
|
+
}
|
|
58
65
|
|
|
59
66
|
/* Misc Reusable Components
|
|
60
67
|
--------------------------------------------------------------------------------------------------*/
|
|
61
68
|
.fc-divider {
|
|
62
69
|
border-style: solid;
|
|
63
|
-
border-width: 1px;
|
|
70
|
+
border-width: 1px;
|
|
71
|
+
}
|
|
64
72
|
|
|
65
73
|
hr.fc-divider {
|
|
66
74
|
height: 0;
|
|
67
75
|
margin: 0;
|
|
68
76
|
padding: 0 0 2px;
|
|
69
77
|
/* height is unreliable across browsers, so use padding */
|
|
70
|
-
border-width: 1px 0;
|
|
78
|
+
border-width: 1px 0;
|
|
79
|
+
}
|
|
71
80
|
|
|
72
81
|
.fc-bg,
|
|
73
82
|
.fc-bgevent-skeleton,
|
|
@@ -77,15 +86,18 @@ hr.fc-divider {
|
|
|
77
86
|
position: absolute;
|
|
78
87
|
top: 0;
|
|
79
88
|
left: 0;
|
|
80
|
-
right: 0;
|
|
89
|
+
right: 0;
|
|
90
|
+
}
|
|
81
91
|
|
|
82
92
|
.fc-bg {
|
|
83
93
|
bottom: 0;
|
|
84
|
-
/* strech bg to bottom edge */
|
|
94
|
+
/* strech bg to bottom edge */
|
|
95
|
+
}
|
|
85
96
|
|
|
86
97
|
.fc-bg table {
|
|
87
98
|
height: 100%;
|
|
88
|
-
/* strech bg to bottom edge */
|
|
99
|
+
/* strech bg to bottom edge */
|
|
100
|
+
}
|
|
89
101
|
|
|
90
102
|
/* Tables
|
|
91
103
|
--------------------------------------------------------------------------------------------------*/
|
|
@@ -97,29 +109,35 @@ hr.fc-divider {
|
|
|
97
109
|
border-collapse: collapse;
|
|
98
110
|
border-spacing: 0;
|
|
99
111
|
font-size: 1em;
|
|
100
|
-
/* normalize cross-browser */
|
|
112
|
+
/* normalize cross-browser */
|
|
113
|
+
}
|
|
101
114
|
|
|
102
115
|
.fc th {
|
|
103
|
-
text-align: center;
|
|
116
|
+
text-align: center;
|
|
117
|
+
}
|
|
104
118
|
|
|
105
119
|
.fc th,
|
|
106
120
|
.fc td {
|
|
107
121
|
border-style: solid;
|
|
108
122
|
border-width: 1px;
|
|
109
123
|
padding: 0;
|
|
110
|
-
vertical-align: top;
|
|
124
|
+
vertical-align: top;
|
|
125
|
+
}
|
|
111
126
|
|
|
112
127
|
.fc td.fc-today {
|
|
113
128
|
border-style: double;
|
|
114
|
-
/* overcome neighboring borders */
|
|
129
|
+
/* overcome neighboring borders */
|
|
130
|
+
}
|
|
115
131
|
|
|
116
132
|
/* Internal Nav Links
|
|
117
133
|
--------------------------------------------------------------------------------------------------*/
|
|
118
134
|
a[data-goto] {
|
|
119
|
-
cursor: pointer;
|
|
135
|
+
cursor: pointer;
|
|
136
|
+
}
|
|
120
137
|
|
|
121
138
|
a[data-goto]:hover {
|
|
122
|
-
text-decoration: underline;
|
|
139
|
+
text-decoration: underline;
|
|
140
|
+
}
|
|
123
141
|
|
|
124
142
|
/* Fake Table Rows
|
|
125
143
|
--------------------------------------------------------------------------------------------------*/
|
|
@@ -127,7 +145,8 @@ a[data-goto]:hover {
|
|
|
127
145
|
/* extra precedence to overcome themes forcing a 1px border */
|
|
128
146
|
/* no visible border by default. but make available if need be (scrollbar width compensation) */
|
|
129
147
|
border-style: solid;
|
|
130
|
-
border-width: 0;
|
|
148
|
+
border-width: 0;
|
|
149
|
+
}
|
|
131
150
|
|
|
132
151
|
.fc-row table {
|
|
133
152
|
/* don't put left/right border on anything within a fake row.
|
|
@@ -135,40 +154,49 @@ a[data-goto]:hover {
|
|
|
135
154
|
border-left: 0 hidden transparent;
|
|
136
155
|
border-right: 0 hidden transparent;
|
|
137
156
|
/* no bottom borders on rows */
|
|
138
|
-
border-bottom: 0 hidden transparent;
|
|
157
|
+
border-bottom: 0 hidden transparent;
|
|
158
|
+
}
|
|
139
159
|
|
|
140
160
|
.fc-row:first-child table {
|
|
141
161
|
border-top: 0 hidden transparent;
|
|
142
|
-
/* no top border on first row */
|
|
162
|
+
/* no top border on first row */
|
|
163
|
+
}
|
|
143
164
|
|
|
144
165
|
/* Day Row (used within the header and the DayGrid)
|
|
145
166
|
--------------------------------------------------------------------------------------------------*/
|
|
146
167
|
.fc-row {
|
|
147
|
-
position: relative;
|
|
168
|
+
position: relative;
|
|
169
|
+
}
|
|
148
170
|
|
|
149
171
|
.fc-row .fc-bg {
|
|
150
|
-
z-index: 1;
|
|
172
|
+
z-index: 1;
|
|
173
|
+
}
|
|
151
174
|
|
|
152
175
|
/* highlighting cells & background event skeleton */
|
|
153
176
|
.fc-row .fc-bgevent-skeleton,
|
|
154
177
|
.fc-row .fc-highlight-skeleton {
|
|
155
178
|
bottom: 0;
|
|
156
|
-
/* stretch skeleton to bottom of row */
|
|
179
|
+
/* stretch skeleton to bottom of row */
|
|
180
|
+
}
|
|
157
181
|
|
|
158
182
|
.fc-row .fc-bgevent-skeleton table,
|
|
159
183
|
.fc-row .fc-highlight-skeleton table {
|
|
160
184
|
height: 100%;
|
|
161
|
-
/* stretch skeleton to bottom of row */
|
|
185
|
+
/* stretch skeleton to bottom of row */
|
|
186
|
+
}
|
|
162
187
|
|
|
163
188
|
.fc-row .fc-highlight-skeleton td,
|
|
164
189
|
.fc-row .fc-bgevent-skeleton td {
|
|
165
|
-
border-color: transparent;
|
|
190
|
+
border-color: transparent;
|
|
191
|
+
}
|
|
166
192
|
|
|
167
193
|
.fc-row .fc-bgevent-skeleton {
|
|
168
|
-
z-index: 2;
|
|
194
|
+
z-index: 2;
|
|
195
|
+
}
|
|
169
196
|
|
|
170
197
|
.fc-row .fc-highlight-skeleton {
|
|
171
|
-
z-index: 3;
|
|
198
|
+
z-index: 3;
|
|
199
|
+
}
|
|
172
200
|
|
|
173
201
|
/*
|
|
174
202
|
row content (which contains day/week numbers and events) as well as "mirror" (which contains
|
|
@@ -178,10 +206,12 @@ temporary rendered events).
|
|
|
178
206
|
position: relative;
|
|
179
207
|
z-index: 4;
|
|
180
208
|
padding-bottom: 2px;
|
|
181
|
-
/* matches the space above the events */
|
|
209
|
+
/* matches the space above the events */
|
|
210
|
+
}
|
|
182
211
|
|
|
183
212
|
.fc-row .fc-mirror-skeleton {
|
|
184
|
-
z-index: 5;
|
|
213
|
+
z-index: 5;
|
|
214
|
+
}
|
|
185
215
|
|
|
186
216
|
.fc .fc-row .fc-content-skeleton table,
|
|
187
217
|
.fc .fc-row .fc-content-skeleton td,
|
|
@@ -190,22 +220,26 @@ temporary rendered events).
|
|
|
190
220
|
/* extra precedence to prevent theme-provided backgrounds */
|
|
191
221
|
background: none;
|
|
192
222
|
/* in case <td>s are globally styled */
|
|
193
|
-
border-color: transparent;
|
|
223
|
+
border-color: transparent;
|
|
224
|
+
}
|
|
194
225
|
|
|
195
226
|
.fc-row .fc-content-skeleton td,
|
|
196
227
|
.fc-row .fc-mirror-skeleton td {
|
|
197
228
|
/* don't put a border between events and/or the day number */
|
|
198
|
-
border-bottom: 0;
|
|
229
|
+
border-bottom: 0;
|
|
230
|
+
}
|
|
199
231
|
|
|
200
232
|
.fc-row .fc-content-skeleton tbody td,
|
|
201
233
|
.fc-row .fc-mirror-skeleton tbody td {
|
|
202
234
|
/* don't put a border between event cells */
|
|
203
|
-
border-top: 0;
|
|
235
|
+
border-top: 0;
|
|
236
|
+
}
|
|
204
237
|
|
|
205
238
|
/* Scrolling Container
|
|
206
239
|
--------------------------------------------------------------------------------------------------*/
|
|
207
240
|
.fc-scroller {
|
|
208
|
-
-webkit-overflow-scrolling: touch;
|
|
241
|
+
-webkit-overflow-scrolling: touch;
|
|
242
|
+
}
|
|
209
243
|
|
|
210
244
|
/* TODO: move to timegrid/daygrid */
|
|
211
245
|
.fc-scroller > .fc-day-grid,
|
|
@@ -213,7 +247,8 @@ temporary rendered events).
|
|
|
213
247
|
position: relative;
|
|
214
248
|
/* re-scope all positions */
|
|
215
249
|
width: 100%;
|
|
216
|
-
/* hack to force re-sizing this inner element when scrollbars appear/disappear */
|
|
250
|
+
/* hack to force re-sizing this inner element when scrollbars appear/disappear */
|
|
251
|
+
}
|
|
217
252
|
|
|
218
253
|
/* Global Event Styles
|
|
219
254
|
--------------------------------------------------------------------------------------------------*/
|
|
@@ -222,50 +257,59 @@ temporary rendered events).
|
|
|
222
257
|
/* for resize handle and other inner positioning */
|
|
223
258
|
display: block;
|
|
224
259
|
/* make the <a> tag block */
|
|
225
|
-
font-size: .85em;
|
|
260
|
+
font-size: 0.85em;
|
|
226
261
|
line-height: 1.4;
|
|
227
262
|
border-radius: 3px;
|
|
228
|
-
border: 1px solid #3788d8;
|
|
263
|
+
border: 1px solid #3788d8;
|
|
264
|
+
}
|
|
229
265
|
|
|
230
266
|
.fc-event,
|
|
231
267
|
.fc-event-dot {
|
|
232
268
|
background-color: #3788d8;
|
|
233
|
-
/* default BACKGROUND color */
|
|
269
|
+
/* default BACKGROUND color */
|
|
270
|
+
}
|
|
234
271
|
|
|
235
272
|
.fc-event,
|
|
236
273
|
.fc-event:hover {
|
|
237
274
|
color: #fff;
|
|
238
275
|
/* default TEXT color */
|
|
239
276
|
text-decoration: none;
|
|
240
|
-
/* if <a> has an href */
|
|
277
|
+
/* if <a> has an href */
|
|
278
|
+
}
|
|
241
279
|
|
|
242
280
|
.fc-event[href],
|
|
243
281
|
.fc-event.fc-draggable {
|
|
244
282
|
cursor: pointer;
|
|
245
|
-
/* give events with links and draggable events a hand mouse pointer */
|
|
283
|
+
/* give events with links and draggable events a hand mouse pointer */
|
|
284
|
+
}
|
|
246
285
|
|
|
247
286
|
.fc-not-allowed,
|
|
248
287
|
.fc-not-allowed .fc-event {
|
|
249
288
|
/* to override an event's custom cursor */
|
|
250
|
-
cursor: not-allowed;
|
|
289
|
+
cursor: not-allowed;
|
|
290
|
+
}
|
|
251
291
|
|
|
252
292
|
.fc-event .fc-content {
|
|
253
293
|
position: relative;
|
|
254
|
-
z-index: 2;
|
|
294
|
+
z-index: 2;
|
|
295
|
+
}
|
|
255
296
|
|
|
256
297
|
/* resizer (cursor AND touch devices) */
|
|
257
298
|
.fc-event .fc-resizer {
|
|
258
299
|
position: absolute;
|
|
259
|
-
z-index: 4;
|
|
300
|
+
z-index: 4;
|
|
301
|
+
}
|
|
260
302
|
|
|
261
303
|
/* resizer (touch devices) */
|
|
262
304
|
.fc-event .fc-resizer {
|
|
263
|
-
display: none;
|
|
305
|
+
display: none;
|
|
306
|
+
}
|
|
264
307
|
|
|
265
308
|
.fc-event.fc-allow-mouse-resize .fc-resizer,
|
|
266
309
|
.fc-event.fc-selected .fc-resizer {
|
|
267
310
|
/* only show when hovering or selected (with touch) */
|
|
268
|
-
display: block;
|
|
311
|
+
display: block;
|
|
312
|
+
}
|
|
269
313
|
|
|
270
314
|
/* hit area */
|
|
271
315
|
.fc-event.fc-selected .fc-resizer:before {
|
|
@@ -279,14 +323,16 @@ temporary rendered events).
|
|
|
279
323
|
width: 40px;
|
|
280
324
|
height: 40px;
|
|
281
325
|
margin-left: -20px;
|
|
282
|
-
margin-top: -20px;
|
|
326
|
+
margin-top: -20px;
|
|
327
|
+
}
|
|
283
328
|
|
|
284
329
|
/* Event Selection (only for touch devices)
|
|
285
330
|
--------------------------------------------------------------------------------------------------*/
|
|
286
331
|
.fc-event.fc-selected {
|
|
287
332
|
z-index: 9999 !important;
|
|
288
333
|
/* overcomes inline z-index */
|
|
289
|
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
|
334
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
|
335
|
+
}
|
|
290
336
|
|
|
291
337
|
.fc-event.fc-selected:after {
|
|
292
338
|
content: "";
|
|
@@ -300,15 +346,18 @@ temporary rendered events).
|
|
|
300
346
|
left: -1px;
|
|
301
347
|
/* darkening effect */
|
|
302
348
|
background: #000;
|
|
303
|
-
opacity: .25;
|
|
349
|
+
opacity: 0.25;
|
|
350
|
+
}
|
|
304
351
|
|
|
305
352
|
/* Event Dragging
|
|
306
353
|
--------------------------------------------------------------------------------------------------*/
|
|
307
354
|
.fc-event.fc-dragging.fc-selected {
|
|
308
|
-
box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
|
|
355
|
+
box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
|
|
356
|
+
}
|
|
309
357
|
|
|
310
358
|
.fc-event.fc-dragging:not(.fc-selected) {
|
|
311
|
-
opacity: .75;
|
|
359
|
+
opacity: 0.75;
|
|
360
|
+
}
|
|
312
361
|
|
|
313
362
|
/* Horizontal Events
|
|
314
363
|
--------------------------------------------------------------------------------------------------*/
|
|
@@ -321,7 +370,8 @@ temporary rendered events).
|
|
|
321
370
|
top: -10px;
|
|
322
371
|
bottom: -10px;
|
|
323
372
|
left: 0;
|
|
324
|
-
right: 0;
|
|
373
|
+
right: 0;
|
|
374
|
+
}
|
|
325
375
|
|
|
326
376
|
/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
|
|
327
377
|
.fc-ltr .fc-h-event.fc-not-start,
|
|
@@ -331,7 +381,8 @@ temporary rendered events).
|
|
|
331
381
|
padding-left: 1px;
|
|
332
382
|
/* replace the border with padding */
|
|
333
383
|
border-top-left-radius: 0;
|
|
334
|
-
border-bottom-left-radius: 0;
|
|
384
|
+
border-bottom-left-radius: 0;
|
|
385
|
+
}
|
|
335
386
|
|
|
336
387
|
.fc-ltr .fc-h-event.fc-not-end,
|
|
337
388
|
.fc-rtl .fc-h-event.fc-not-start {
|
|
@@ -340,7 +391,8 @@ temporary rendered events).
|
|
|
340
391
|
padding-right: 1px;
|
|
341
392
|
/* replace the border with padding */
|
|
342
393
|
border-top-right-radius: 0;
|
|
343
|
-
border-bottom-right-radius: 0;
|
|
394
|
+
border-bottom-right-radius: 0;
|
|
395
|
+
}
|
|
344
396
|
|
|
345
397
|
/* resizer (cursor AND touch devices) */
|
|
346
398
|
/* left resizer */
|
|
@@ -348,14 +400,16 @@ temporary rendered events).
|
|
|
348
400
|
.fc-rtl .fc-h-event .fc-end-resizer {
|
|
349
401
|
cursor: w-resize;
|
|
350
402
|
left: -1px;
|
|
351
|
-
/* overcome border */
|
|
403
|
+
/* overcome border */
|
|
404
|
+
}
|
|
352
405
|
|
|
353
406
|
/* right resizer */
|
|
354
407
|
.fc-ltr .fc-h-event .fc-end-resizer,
|
|
355
408
|
.fc-rtl .fc-h-event .fc-start-resizer {
|
|
356
409
|
cursor: e-resize;
|
|
357
410
|
right: -1px;
|
|
358
|
-
/* overcome border */
|
|
411
|
+
/* overcome border */
|
|
412
|
+
}
|
|
359
413
|
|
|
360
414
|
/* resizer (mouse devices) */
|
|
361
415
|
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
|
|
@@ -363,7 +417,8 @@ temporary rendered events).
|
|
|
363
417
|
top: -1px;
|
|
364
418
|
/* overcome top border */
|
|
365
419
|
bottom: -1px;
|
|
366
|
-
/* overcome bottom border */
|
|
420
|
+
/* overcome bottom border */
|
|
421
|
+
}
|
|
367
422
|
|
|
368
423
|
/* resizer (touch devices) */
|
|
369
424
|
.fc-h-event.fc-selected .fc-resizer {
|
|
@@ -377,19 +432,22 @@ temporary rendered events).
|
|
|
377
432
|
background: #fff;
|
|
378
433
|
/* vertically center */
|
|
379
434
|
top: 50%;
|
|
380
|
-
margin-top: -4px;
|
|
435
|
+
margin-top: -4px;
|
|
436
|
+
}
|
|
381
437
|
|
|
382
438
|
/* left resizer */
|
|
383
439
|
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
|
|
384
440
|
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
|
|
385
441
|
margin-left: -4px;
|
|
386
|
-
/* centers the 8x8 dot on the left edge */
|
|
442
|
+
/* centers the 8x8 dot on the left edge */
|
|
443
|
+
}
|
|
387
444
|
|
|
388
445
|
/* right resizer */
|
|
389
446
|
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
|
|
390
447
|
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
|
|
391
448
|
margin-right: -4px;
|
|
392
|
-
/* centers the 8x8 dot on the right edge */
|
|
449
|
+
/* centers the 8x8 dot on the right edge */
|
|
450
|
+
}
|
|
393
451
|
|
|
394
452
|
/* DayGrid events
|
|
395
453
|
----------------------------------------------------------------------------------------------------
|
|
@@ -399,70 +457,84 @@ be a descendant of the grid when it is being dragged.
|
|
|
399
457
|
.fc-day-grid-event {
|
|
400
458
|
margin: 1px 2px 0;
|
|
401
459
|
/* spacing between events and edges */
|
|
402
|
-
padding: 0 1px;
|
|
460
|
+
padding: 0 1px;
|
|
461
|
+
}
|
|
403
462
|
|
|
404
463
|
tr:first-child > td > .fc-day-grid-event {
|
|
405
464
|
margin-top: 2px;
|
|
406
|
-
/* a little bit more space before the first event */
|
|
465
|
+
/* a little bit more space before the first event */
|
|
466
|
+
}
|
|
407
467
|
|
|
408
468
|
.fc-mirror-skeleton tr:first-child > td > .fc-day-grid-event {
|
|
409
469
|
margin-top: 0;
|
|
410
|
-
/* except for mirror skeleton */
|
|
470
|
+
/* except for mirror skeleton */
|
|
471
|
+
}
|
|
411
472
|
|
|
412
473
|
.fc-day-grid-event .fc-content {
|
|
413
474
|
/* force events to be one-line tall */
|
|
414
475
|
white-space: nowrap;
|
|
415
|
-
overflow: hidden;
|
|
476
|
+
overflow: hidden;
|
|
477
|
+
}
|
|
416
478
|
|
|
417
479
|
.fc-day-grid-event .fc-time {
|
|
418
|
-
font-weight: bold;
|
|
480
|
+
font-weight: bold;
|
|
481
|
+
}
|
|
419
482
|
|
|
420
483
|
/* resizer (cursor devices) */
|
|
421
484
|
/* left resizer */
|
|
422
485
|
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
|
|
423
486
|
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
|
|
424
487
|
margin-left: -2px;
|
|
425
|
-
/* to the day cell's edge */
|
|
488
|
+
/* to the day cell's edge */
|
|
489
|
+
}
|
|
426
490
|
|
|
427
491
|
/* right resizer */
|
|
428
492
|
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
|
|
429
493
|
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
|
|
430
494
|
margin-right: -2px;
|
|
431
|
-
/* to the day cell's edge */
|
|
495
|
+
/* to the day cell's edge */
|
|
496
|
+
}
|
|
432
497
|
|
|
433
498
|
/* Event Limiting
|
|
434
499
|
--------------------------------------------------------------------------------------------------*/
|
|
435
500
|
/* "more" link that represents hidden events */
|
|
436
501
|
a.fc-more {
|
|
437
502
|
margin: 1px 3px;
|
|
438
|
-
font-size: .85em;
|
|
503
|
+
font-size: 0.85em;
|
|
439
504
|
cursor: pointer;
|
|
440
|
-
text-decoration: none;
|
|
505
|
+
text-decoration: none;
|
|
506
|
+
}
|
|
441
507
|
|
|
442
508
|
a.fc-more:hover {
|
|
443
|
-
text-decoration: underline;
|
|
509
|
+
text-decoration: underline;
|
|
510
|
+
}
|
|
444
511
|
|
|
445
512
|
.fc-limited {
|
|
446
513
|
/* rows and cells that are hidden because of a "more" link */
|
|
447
|
-
display: none;
|
|
514
|
+
display: none;
|
|
515
|
+
}
|
|
448
516
|
|
|
449
517
|
/* popover that appears when "more" link is clicked */
|
|
450
518
|
.fc-day-grid .fc-row {
|
|
451
519
|
z-index: 1;
|
|
452
|
-
/* make the "more" popover one higher than this */
|
|
520
|
+
/* make the "more" popover one higher than this */
|
|
521
|
+
}
|
|
453
522
|
|
|
454
523
|
.fc-more-popover {
|
|
455
524
|
z-index: 2;
|
|
456
|
-
width: 220px;
|
|
525
|
+
width: 220px;
|
|
526
|
+
}
|
|
457
527
|
|
|
458
528
|
.fc-more-popover .fc-event-container {
|
|
459
|
-
padding: 10px;
|
|
529
|
+
padding: 10px;
|
|
530
|
+
}
|
|
460
531
|
|
|
461
532
|
/* Now Indicator
|
|
462
533
|
--------------------------------------------------------------------------------------------------*/
|
|
463
534
|
.fc-now-indicator {
|
|
464
535
|
position: absolute;
|
|
465
|
-
border: 0 solid red;
|
|
536
|
+
border: 0 solid red;
|
|
537
|
+
}
|
|
466
538
|
|
|
467
539
|
/* Utilities
|
|
468
540
|
--------------------------------------------------------------------------------------------------*/
|
|
@@ -473,7 +545,8 @@ a.fc-more:hover {
|
|
|
473
545
|
-ms-user-select: none;
|
|
474
546
|
user-select: none;
|
|
475
547
|
-webkit-touch-callout: none;
|
|
476
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
548
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
549
|
+
}
|
|
477
550
|
|
|
478
551
|
/*
|
|
479
552
|
TODO: more distinction between this file and common.css
|
|
@@ -490,35 +563,41 @@ TODO: more distinction between this file and common.css
|
|
|
490
563
|
.fc-unthemed .fc-popover,
|
|
491
564
|
.fc-unthemed .fc-list-view,
|
|
492
565
|
.fc-unthemed .fc-list-heading td {
|
|
493
|
-
border-color: #ddd;
|
|
566
|
+
border-color: #ddd;
|
|
567
|
+
}
|
|
494
568
|
|
|
495
569
|
.fc-unthemed .fc-popover {
|
|
496
|
-
background-color: #fff;
|
|
570
|
+
background-color: #fff;
|
|
571
|
+
}
|
|
497
572
|
|
|
498
573
|
.fc-unthemed .fc-divider,
|
|
499
574
|
.fc-unthemed .fc-popover .fc-header,
|
|
500
575
|
.fc-unthemed .fc-list-heading td {
|
|
501
|
-
background: #eee;
|
|
576
|
+
background: #eee;
|
|
577
|
+
}
|
|
502
578
|
|
|
503
579
|
.fc-unthemed td.fc-today {
|
|
504
|
-
background: #fcf8e3;
|
|
580
|
+
background: #fcf8e3;
|
|
581
|
+
}
|
|
505
582
|
|
|
506
583
|
.fc-unthemed .fc-disabled-day {
|
|
507
584
|
background: #d7d7d7;
|
|
508
|
-
opacity: .3;
|
|
585
|
+
opacity: 0.3;
|
|
586
|
+
}
|
|
509
587
|
|
|
510
588
|
/* Icons
|
|
511
589
|
--------------------------------------------------------------------------------------------------
|
|
512
590
|
from https://feathericons.com/ and built with IcoMoon
|
|
513
591
|
*/
|
|
514
592
|
@font-face {
|
|
515
|
-
font-family:
|
|
593
|
+
font-family: "fcicons";
|
|
516
594
|
src: url("data:application/x-font-ttf;charset=utf-8;base64,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") format("truetype");
|
|
517
595
|
font-weight: normal;
|
|
518
|
-
font-style: normal;
|
|
596
|
+
font-style: normal;
|
|
597
|
+
}
|
|
519
598
|
.fc-icon {
|
|
520
599
|
/* use !important to prevent issues with browser extensions that change fonts */
|
|
521
|
-
font-family:
|
|
600
|
+
font-family: "fcicons" !important;
|
|
522
601
|
speak: none;
|
|
523
602
|
font-style: normal;
|
|
524
603
|
font-weight: normal;
|
|
@@ -527,34 +606,43 @@ from https://feathericons.com/ and built with IcoMoon
|
|
|
527
606
|
line-height: 1;
|
|
528
607
|
/* Better Font Rendering =========== */
|
|
529
608
|
-webkit-font-smoothing: antialiased;
|
|
530
|
-
-moz-osx-font-smoothing: grayscale;
|
|
609
|
+
-moz-osx-font-smoothing: grayscale;
|
|
610
|
+
}
|
|
531
611
|
|
|
532
612
|
.fc-icon-chevron-left:before {
|
|
533
|
-
content: "
|
|
613
|
+
content: "";
|
|
614
|
+
}
|
|
534
615
|
|
|
535
616
|
.fc-icon-chevron-right:before {
|
|
536
|
-
content: "
|
|
617
|
+
content: "";
|
|
618
|
+
}
|
|
537
619
|
|
|
538
620
|
.fc-icon-chevrons-left:before {
|
|
539
|
-
content: "
|
|
621
|
+
content: "";
|
|
622
|
+
}
|
|
540
623
|
|
|
541
624
|
.fc-icon-chevrons-right:before {
|
|
542
|
-
content: "
|
|
625
|
+
content: "";
|
|
626
|
+
}
|
|
543
627
|
|
|
544
628
|
.fc-icon-minus-square:before {
|
|
545
|
-
content: "
|
|
629
|
+
content: "";
|
|
630
|
+
}
|
|
546
631
|
|
|
547
632
|
.fc-icon-plus-square:before {
|
|
548
|
-
content: "
|
|
633
|
+
content: "";
|
|
634
|
+
}
|
|
549
635
|
|
|
550
636
|
.fc-icon-x:before {
|
|
551
|
-
content: "
|
|
637
|
+
content: "";
|
|
638
|
+
}
|
|
552
639
|
|
|
553
640
|
.fc-icon {
|
|
554
641
|
display: inline-block;
|
|
555
642
|
width: 1em;
|
|
556
643
|
height: 1em;
|
|
557
|
-
text-align: center;
|
|
644
|
+
text-align: center;
|
|
645
|
+
}
|
|
558
646
|
|
|
559
647
|
/* Buttons
|
|
560
648
|
--------------------------------------------------------------------------------------------------
|
|
@@ -568,21 +656,26 @@ Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
|
|
|
568
656
|
margin: 0;
|
|
569
657
|
font-family: inherit;
|
|
570
658
|
font-size: inherit;
|
|
571
|
-
line-height: inherit;
|
|
659
|
+
line-height: inherit;
|
|
660
|
+
}
|
|
572
661
|
|
|
573
662
|
.fc-button:focus {
|
|
574
663
|
outline: 1px dotted;
|
|
575
|
-
outline: 5px auto -webkit-focus-ring-color;
|
|
664
|
+
outline: 5px auto -webkit-focus-ring-color;
|
|
665
|
+
}
|
|
576
666
|
|
|
577
667
|
.fc-button {
|
|
578
|
-
-webkit-appearance: button;
|
|
668
|
+
-webkit-appearance: button;
|
|
669
|
+
}
|
|
579
670
|
|
|
580
671
|
.fc-button:not(:disabled) {
|
|
581
|
-
cursor: pointer;
|
|
672
|
+
cursor: pointer;
|
|
673
|
+
}
|
|
582
674
|
|
|
583
675
|
.fc-button::-moz-focus-inner {
|
|
584
676
|
padding: 0;
|
|
585
|
-
border-style: none;
|
|
677
|
+
border-style: none;
|
|
678
|
+
}
|
|
586
679
|
|
|
587
680
|
/* theme */
|
|
588
681
|
.fc-button {
|
|
@@ -600,55 +693,66 @@ Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
|
|
|
600
693
|
padding: 0.4em 0.65em;
|
|
601
694
|
font-size: 1em;
|
|
602
695
|
line-height: 1.5;
|
|
603
|
-
border-radius: 0.25em;
|
|
696
|
+
border-radius: 0.25em;
|
|
697
|
+
}
|
|
604
698
|
|
|
605
699
|
.fc-button:hover {
|
|
606
700
|
color: #212529;
|
|
607
|
-
text-decoration: none;
|
|
701
|
+
text-decoration: none;
|
|
702
|
+
}
|
|
608
703
|
|
|
609
704
|
.fc-button:focus {
|
|
610
705
|
outline: 0;
|
|
611
706
|
-webkit-box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
|
|
612
|
-
box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
|
|
707
|
+
box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
|
|
708
|
+
}
|
|
613
709
|
|
|
614
710
|
.fc-button:disabled {
|
|
615
|
-
opacity: 0.65;
|
|
711
|
+
opacity: 0.65;
|
|
712
|
+
}
|
|
616
713
|
|
|
617
714
|
/* "primary" coloring */
|
|
618
715
|
.fc-button-primary {
|
|
619
716
|
color: #fff;
|
|
620
717
|
background-color: #2C3E50;
|
|
621
|
-
border-color: #2C3E50;
|
|
718
|
+
border-color: #2C3E50;
|
|
719
|
+
}
|
|
622
720
|
|
|
623
721
|
.fc-button-primary:hover {
|
|
624
722
|
color: #fff;
|
|
625
723
|
background-color: #1e2b37;
|
|
626
|
-
border-color: #1a252f;
|
|
724
|
+
border-color: #1a252f;
|
|
725
|
+
}
|
|
627
726
|
|
|
628
727
|
.fc-button-primary:focus {
|
|
629
728
|
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
|
|
630
|
-
box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
|
|
729
|
+
box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
|
|
730
|
+
}
|
|
631
731
|
|
|
632
732
|
.fc-button-primary:disabled {
|
|
633
733
|
color: #fff;
|
|
634
734
|
background-color: #2C3E50;
|
|
635
|
-
border-color: #2C3E50;
|
|
735
|
+
border-color: #2C3E50;
|
|
736
|
+
}
|
|
636
737
|
|
|
637
738
|
.fc-button-primary:not(:disabled):active,
|
|
638
739
|
.fc-button-primary:not(:disabled).fc-button-active {
|
|
639
740
|
color: #fff;
|
|
640
741
|
background-color: #1a252f;
|
|
641
|
-
border-color: #151e27;
|
|
742
|
+
border-color: #151e27;
|
|
743
|
+
}
|
|
642
744
|
|
|
643
745
|
.fc-button-primary:not(:disabled):active:focus,
|
|
644
746
|
.fc-button-primary:not(:disabled).fc-button-active:focus {
|
|
645
747
|
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
|
|
646
|
-
box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
|
|
748
|
+
box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
|
|
749
|
+
}
|
|
647
750
|
|
|
648
751
|
/* icons within buttons */
|
|
649
752
|
.fc-button .fc-icon {
|
|
650
753
|
vertical-align: middle;
|
|
651
|
-
font-size: 1.5em;
|
|
754
|
+
font-size: 1.5em;
|
|
755
|
+
}
|
|
652
756
|
|
|
653
757
|
/* Buttons Groups
|
|
654
758
|
--------------------------------------------------------------------------------------------------*/
|
|
@@ -657,69 +761,84 @@ Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
|
|
|
657
761
|
display: -webkit-inline-box;
|
|
658
762
|
display: -ms-inline-flexbox;
|
|
659
763
|
display: inline-flex;
|
|
660
|
-
vertical-align: middle;
|
|
764
|
+
vertical-align: middle;
|
|
765
|
+
}
|
|
661
766
|
|
|
662
767
|
.fc-button-group > .fc-button {
|
|
663
768
|
position: relative;
|
|
664
769
|
-webkit-box-flex: 1;
|
|
665
770
|
-ms-flex: 1 1 auto;
|
|
666
|
-
flex: 1 1 auto;
|
|
771
|
+
flex: 1 1 auto;
|
|
772
|
+
}
|
|
667
773
|
|
|
668
774
|
.fc-button-group > .fc-button:hover {
|
|
669
|
-
z-index: 1;
|
|
775
|
+
z-index: 1;
|
|
776
|
+
}
|
|
670
777
|
|
|
671
778
|
.fc-button-group > .fc-button:focus,
|
|
672
779
|
.fc-button-group > .fc-button:active,
|
|
673
780
|
.fc-button-group > .fc-button.fc-button-active {
|
|
674
|
-
z-index: 1;
|
|
781
|
+
z-index: 1;
|
|
782
|
+
}
|
|
675
783
|
|
|
676
784
|
.fc-button-group > .fc-button:not(:first-child) {
|
|
677
|
-
margin-left: -1px;
|
|
785
|
+
margin-left: -1px;
|
|
786
|
+
}
|
|
678
787
|
|
|
679
788
|
.fc-button-group > .fc-button:not(:last-child) {
|
|
680
789
|
border-top-right-radius: 0;
|
|
681
|
-
border-bottom-right-radius: 0;
|
|
790
|
+
border-bottom-right-radius: 0;
|
|
791
|
+
}
|
|
682
792
|
|
|
683
793
|
.fc-button-group > .fc-button:not(:first-child) {
|
|
684
794
|
border-top-left-radius: 0;
|
|
685
|
-
border-bottom-left-radius: 0;
|
|
795
|
+
border-bottom-left-radius: 0;
|
|
796
|
+
}
|
|
686
797
|
|
|
687
798
|
/* Popover
|
|
688
799
|
--------------------------------------------------------------------------------------------------*/
|
|
689
800
|
.fc-unthemed .fc-popover {
|
|
690
801
|
border-width: 1px;
|
|
691
|
-
border-style: solid;
|
|
802
|
+
border-style: solid;
|
|
803
|
+
}
|
|
692
804
|
|
|
693
805
|
/* List View
|
|
694
806
|
--------------------------------------------------------------------------------------------------*/
|
|
695
807
|
.fc-unthemed .fc-list-item:hover td {
|
|
696
|
-
background-color: #f5f5f5;
|
|
808
|
+
background-color: #f5f5f5;
|
|
809
|
+
}
|
|
697
810
|
|
|
698
811
|
/* Toolbar
|
|
699
812
|
--------------------------------------------------------------------------------------------------*/
|
|
700
813
|
.fc-toolbar {
|
|
701
814
|
display: flex;
|
|
702
815
|
justify-content: space-between;
|
|
703
|
-
align-items: center;
|
|
816
|
+
align-items: center;
|
|
817
|
+
}
|
|
704
818
|
|
|
705
819
|
.fc-toolbar.fc-header-toolbar {
|
|
706
|
-
margin-bottom: 1.5em;
|
|
820
|
+
margin-bottom: 1.5em;
|
|
821
|
+
}
|
|
707
822
|
|
|
708
823
|
.fc-toolbar.fc-footer-toolbar {
|
|
709
|
-
margin-top: 1.5em;
|
|
824
|
+
margin-top: 1.5em;
|
|
825
|
+
}
|
|
710
826
|
|
|
711
827
|
/* inner content */
|
|
712
828
|
.fc-toolbar > * > :not(:first-child) {
|
|
713
|
-
margin-left: .75em;
|
|
829
|
+
margin-left: 0.75em;
|
|
830
|
+
}
|
|
714
831
|
|
|
715
832
|
.fc-toolbar h2 {
|
|
716
833
|
font-size: 1.75em;
|
|
717
|
-
margin: 0;
|
|
834
|
+
margin: 0;
|
|
835
|
+
}
|
|
718
836
|
|
|
719
837
|
/* View Structure
|
|
720
838
|
--------------------------------------------------------------------------------------------------*/
|
|
721
839
|
.fc-view-container {
|
|
722
|
-
position: relative;
|
|
840
|
+
position: relative;
|
|
841
|
+
}
|
|
723
842
|
|
|
724
843
|
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
|
|
725
844
|
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
|
|
@@ -728,173 +847,206 @@ Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
|
|
|
728
847
|
.fc-view-container *:after {
|
|
729
848
|
-webkit-box-sizing: content-box;
|
|
730
849
|
-moz-box-sizing: content-box;
|
|
731
|
-
box-sizing: content-box;
|
|
850
|
+
box-sizing: content-box;
|
|
851
|
+
}
|
|
732
852
|
|
|
733
853
|
.fc-view,
|
|
734
854
|
.fc-view > table {
|
|
735
855
|
/* so dragged elements can be above the view's main element */
|
|
736
856
|
position: relative;
|
|
737
|
-
z-index: 1;
|
|
857
|
+
z-index: 1;
|
|
858
|
+
}
|
|
738
859
|
|
|
739
860
|
@media print {
|
|
740
861
|
.fc {
|
|
741
|
-
max-width: 100% !important;
|
|
862
|
+
max-width: 100% !important;
|
|
863
|
+
}
|
|
742
864
|
|
|
743
865
|
/* Global Event Restyling
|
|
744
866
|
--------------------------------------------------------------------------------------------------*/
|
|
745
867
|
.fc-event {
|
|
746
868
|
background: #fff !important;
|
|
747
869
|
color: #000 !important;
|
|
748
|
-
page-break-inside: avoid;
|
|
870
|
+
page-break-inside: avoid;
|
|
871
|
+
}
|
|
749
872
|
|
|
750
873
|
.fc-event .fc-resizer {
|
|
751
|
-
display: none;
|
|
874
|
+
display: none;
|
|
875
|
+
}
|
|
752
876
|
|
|
753
877
|
/* Table & Day-Row Restyling
|
|
754
878
|
--------------------------------------------------------------------------------------------------*/
|
|
755
879
|
.fc th,
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
880
|
+
.fc td,
|
|
881
|
+
.fc hr,
|
|
882
|
+
.fc thead,
|
|
883
|
+
.fc tbody,
|
|
884
|
+
.fc-row {
|
|
761
885
|
border-color: #ccc !important;
|
|
762
|
-
background: #fff !important;
|
|
886
|
+
background: #fff !important;
|
|
887
|
+
}
|
|
763
888
|
|
|
764
889
|
/* kill the overlaid, absolutely-positioned components */
|
|
765
890
|
/* common... */
|
|
766
891
|
.fc-bg,
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
display: none;
|
|
892
|
+
.fc-bgevent-skeleton,
|
|
893
|
+
.fc-highlight-skeleton,
|
|
894
|
+
.fc-mirror-skeleton,
|
|
895
|
+
.fc-bgevent-container,
|
|
896
|
+
.fc-business-container,
|
|
897
|
+
.fc-highlight-container,
|
|
898
|
+
.fc-mirror-container {
|
|
899
|
+
display: none;
|
|
900
|
+
}
|
|
775
901
|
|
|
776
902
|
/* don't force a min-height on rows (for DayGrid) */
|
|
777
903
|
.fc tbody .fc-row {
|
|
778
904
|
height: auto !important;
|
|
779
905
|
/* undo height that JS set in distributeHeight */
|
|
780
906
|
min-height: 0 !important;
|
|
781
|
-
/* undo the min-height from each view's specific stylesheet */
|
|
907
|
+
/* undo the min-height from each view's specific stylesheet */
|
|
908
|
+
}
|
|
782
909
|
|
|
783
910
|
.fc tbody .fc-row .fc-content-skeleton {
|
|
784
911
|
position: static;
|
|
785
912
|
/* undo .fc-rigid */
|
|
786
913
|
padding-bottom: 0 !important;
|
|
787
|
-
/* use a more border-friendly method for this... */
|
|
914
|
+
/* use a more border-friendly method for this... */
|
|
915
|
+
}
|
|
788
916
|
|
|
789
917
|
.fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td {
|
|
790
918
|
/* only works in newer browsers */
|
|
791
919
|
padding-bottom: 1em;
|
|
792
|
-
/* ...gives space within the skeleton. also ensures min height in a way */
|
|
920
|
+
/* ...gives space within the skeleton. also ensures min height in a way */
|
|
921
|
+
}
|
|
793
922
|
|
|
794
923
|
.fc tbody .fc-row .fc-content-skeleton table {
|
|
795
924
|
/* provides a min-height for the row, but only effective for IE, which exaggerates this value,
|
|
796
925
|
making it look more like 3em. for other browers, it will already be this tall */
|
|
797
|
-
height: 1em;
|
|
926
|
+
height: 1em;
|
|
927
|
+
}
|
|
798
928
|
|
|
799
929
|
/* Undo month-view event limiting. Display all events and hide the "more" links
|
|
800
930
|
--------------------------------------------------------------------------------------------------*/
|
|
801
931
|
.fc-more-cell,
|
|
802
|
-
|
|
803
|
-
display: none !important;
|
|
932
|
+
.fc-more {
|
|
933
|
+
display: none !important;
|
|
934
|
+
}
|
|
804
935
|
|
|
805
936
|
.fc tr.fc-limited {
|
|
806
|
-
display: table-row !important;
|
|
937
|
+
display: table-row !important;
|
|
938
|
+
}
|
|
807
939
|
|
|
808
940
|
.fc td.fc-limited {
|
|
809
|
-
display: table-cell !important;
|
|
941
|
+
display: table-cell !important;
|
|
942
|
+
}
|
|
810
943
|
|
|
811
944
|
.fc-popover {
|
|
812
945
|
display: none;
|
|
813
|
-
/* never display the "more.." popover in print mode */
|
|
946
|
+
/* never display the "more.." popover in print mode */
|
|
947
|
+
}
|
|
814
948
|
|
|
815
949
|
/* TimeGrid Restyling
|
|
816
950
|
--------------------------------------------------------------------------------------------------*/
|
|
817
951
|
/* undo the min-height 100% trick used to fill the container's height */
|
|
818
952
|
.fc-time-grid {
|
|
819
|
-
min-height: 0 !important;
|
|
953
|
+
min-height: 0 !important;
|
|
954
|
+
}
|
|
820
955
|
|
|
821
956
|
/* don't display the side axis at all ("all-day" and time cells) */
|
|
822
957
|
.fc-timeGrid-view .fc-axis {
|
|
823
|
-
display: none;
|
|
958
|
+
display: none;
|
|
959
|
+
}
|
|
824
960
|
|
|
825
961
|
/* don't display the horizontal lines */
|
|
826
962
|
.fc-slats,
|
|
827
|
-
|
|
963
|
+
.fc-time-grid hr {
|
|
828
964
|
/* this hr is used when height is underused and needs to be filled */
|
|
829
965
|
display: none !important;
|
|
830
|
-
/* important overrides inline declaration */
|
|
966
|
+
/* important overrides inline declaration */
|
|
967
|
+
}
|
|
831
968
|
|
|
832
969
|
/* let the container that holds the events be naturally positioned and create real height */
|
|
833
970
|
.fc-time-grid .fc-content-skeleton {
|
|
834
|
-
position: static;
|
|
971
|
+
position: static;
|
|
972
|
+
}
|
|
835
973
|
|
|
836
974
|
/* in case there are no events, we still want some height */
|
|
837
975
|
.fc-time-grid .fc-content-skeleton table {
|
|
838
|
-
height: 4em;
|
|
976
|
+
height: 4em;
|
|
977
|
+
}
|
|
839
978
|
|
|
840
979
|
/* kill the horizontal spacing made by the event container. event margins will be done below */
|
|
841
980
|
.fc-time-grid .fc-event-container {
|
|
842
|
-
margin: 0 !important;
|
|
981
|
+
margin: 0 !important;
|
|
982
|
+
}
|
|
843
983
|
|
|
844
984
|
/* TimeGrid *Event* Restyling
|
|
845
985
|
--------------------------------------------------------------------------------------------------*/
|
|
846
986
|
/* naturally position events, vertically stacking them */
|
|
847
987
|
.fc-time-grid .fc-event {
|
|
848
988
|
position: static !important;
|
|
849
|
-
margin: 3px 2px !important;
|
|
989
|
+
margin: 3px 2px !important;
|
|
990
|
+
}
|
|
850
991
|
|
|
851
992
|
/* for events that continue to a future day, give the bottom border back */
|
|
852
993
|
.fc-time-grid .fc-event.fc-not-end {
|
|
853
|
-
border-bottom-width: 1px !important;
|
|
994
|
+
border-bottom-width: 1px !important;
|
|
995
|
+
}
|
|
854
996
|
|
|
855
997
|
/* indicate the event continues via "..." text */
|
|
856
998
|
.fc-time-grid .fc-event.fc-not-end:after {
|
|
857
|
-
content: "...";
|
|
999
|
+
content: "...";
|
|
1000
|
+
}
|
|
858
1001
|
|
|
859
1002
|
/* for events that are continuations from previous days, give the top border back */
|
|
860
1003
|
.fc-time-grid .fc-event.fc-not-start {
|
|
861
|
-
border-top-width: 1px !important;
|
|
1004
|
+
border-top-width: 1px !important;
|
|
1005
|
+
}
|
|
862
1006
|
|
|
863
1007
|
/* indicate the event is a continuation via "..." text */
|
|
864
1008
|
.fc-time-grid .fc-event.fc-not-start:before {
|
|
865
|
-
content: "...";
|
|
1009
|
+
content: "...";
|
|
1010
|
+
}
|
|
866
1011
|
|
|
867
1012
|
/* time */
|
|
868
1013
|
/* undo a previous declaration and let the time text span to a second line */
|
|
869
1014
|
.fc-time-grid .fc-event .fc-time {
|
|
870
|
-
white-space: normal !important;
|
|
1015
|
+
white-space: normal !important;
|
|
1016
|
+
}
|
|
871
1017
|
|
|
872
1018
|
/* hide the the time that is normally displayed... */
|
|
873
1019
|
.fc-time-grid .fc-event .fc-time span {
|
|
874
|
-
display: none;
|
|
1020
|
+
display: none;
|
|
1021
|
+
}
|
|
875
1022
|
|
|
876
1023
|
/* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
|
|
877
1024
|
.fc-time-grid .fc-event .fc-time:after {
|
|
878
|
-
content: attr(data-full);
|
|
1025
|
+
content: attr(data-full);
|
|
1026
|
+
}
|
|
879
1027
|
|
|
880
1028
|
/* Vertical Scroller & Containers
|
|
881
1029
|
--------------------------------------------------------------------------------------------------*/
|
|
882
1030
|
/* kill the scrollbars and allow natural height */
|
|
883
1031
|
.fc-scroller,
|
|
884
|
-
|
|
885
|
-
|
|
1032
|
+
.fc-day-grid-container,
|
|
1033
|
+
.fc-time-grid-container {
|
|
886
1034
|
/* */
|
|
887
1035
|
overflow: visible !important;
|
|
888
|
-
height: auto !important;
|
|
1036
|
+
height: auto !important;
|
|
1037
|
+
}
|
|
889
1038
|
|
|
890
1039
|
/* kill the horizontal border/padding used to compensate for scrollbars */
|
|
891
1040
|
.fc-row {
|
|
892
1041
|
border: 0 !important;
|
|
893
|
-
margin: 0 !important;
|
|
1042
|
+
margin: 0 !important;
|
|
1043
|
+
}
|
|
894
1044
|
|
|
895
1045
|
/* Button Controls
|
|
896
1046
|
--------------------------------------------------------------------------------------------------*/
|
|
897
1047
|
.fc-button-group,
|
|
898
|
-
|
|
1048
|
+
.fc button {
|
|
899
1049
|
display: none;
|
|
900
|
-
/* don't display any button-related controls */
|
|
1050
|
+
/* don't display any button-related controls */
|
|
1051
|
+
}
|
|
1052
|
+
}
|