@fullcalendar/mui 7.0.0-beta.5

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.
Files changed (128) hide show
  1. package/LICENSE.md +22 -0
  2. package/README.md +79 -0
  3. package/breezy/theme.css +987 -0
  4. package/cjs/breezy/EventCalendar.cjs +62 -0
  5. package/cjs/breezy/EventCalendarContainer.cjs +35 -0
  6. package/cjs/breezy/EventCalendarToolbar.cjs +65 -0
  7. package/cjs/breezy/EventCalendarViews.cjs +283 -0
  8. package/cjs/breezy/ResourceTimeGrid.cjs +57 -0
  9. package/cjs/breezy/ResourceTimeline.cjs +54 -0
  10. package/cjs/breezy/SchedulerViews.cjs +70 -0
  11. package/cjs/breezy/icons.cjs +37 -0
  12. package/cjs/classic/EventCalendar.cjs +62 -0
  13. package/cjs/classic/EventCalendarContainer.cjs +22 -0
  14. package/cjs/classic/EventCalendarToolbar.cjs +62 -0
  15. package/cjs/classic/EventCalendarViews.cjs +230 -0
  16. package/cjs/classic/ResourceTimeGrid.cjs +57 -0
  17. package/cjs/classic/ResourceTimeline.cjs +54 -0
  18. package/cjs/classic/SchedulerViews.cjs +74 -0
  19. package/cjs/classic/icons.cjs +37 -0
  20. package/cjs/forma/EventCalendar.cjs +62 -0
  21. package/cjs/forma/EventCalendarContainer.cjs +35 -0
  22. package/cjs/forma/EventCalendarToolbar.cjs +64 -0
  23. package/cjs/forma/EventCalendarViews.cjs +251 -0
  24. package/cjs/forma/ResourceTimeGrid.cjs +57 -0
  25. package/cjs/forma/ResourceTimeline.cjs +54 -0
  26. package/cjs/forma/SchedulerViews.cjs +62 -0
  27. package/cjs/forma/icons.cjs +37 -0
  28. package/cjs/monarch/EventCalendar.cjs +62 -0
  29. package/cjs/monarch/EventCalendarContainer.cjs +35 -0
  30. package/cjs/monarch/EventCalendarToolbar.cjs +62 -0
  31. package/cjs/monarch/EventCalendarViews.cjs +252 -0
  32. package/cjs/monarch/ResourceTimeGrid.cjs +57 -0
  33. package/cjs/monarch/ResourceTimeline.cjs +54 -0
  34. package/cjs/monarch/SchedulerViews.cjs +83 -0
  35. package/cjs/monarch/icons.cjs +37 -0
  36. package/cjs/pulse/EventCalendar.cjs +62 -0
  37. package/cjs/pulse/EventCalendarContainer.cjs +22 -0
  38. package/cjs/pulse/EventCalendarToolbar.cjs +62 -0
  39. package/cjs/pulse/EventCalendarViews.cjs +268 -0
  40. package/cjs/pulse/ResourceTimeGrid.cjs +57 -0
  41. package/cjs/pulse/ResourceTimeline.cjs +54 -0
  42. package/cjs/pulse/SchedulerViews.cjs +58 -0
  43. package/cjs/pulse/icons.cjs +37 -0
  44. package/classic/theme.css +811 -0
  45. package/esm/breezy/EventCalendar.d.ts +15 -0
  46. package/esm/breezy/EventCalendar.js +49 -0
  47. package/esm/breezy/EventCalendarContainer.d.ts +15 -0
  48. package/esm/breezy/EventCalendarContainer.js +26 -0
  49. package/esm/breezy/EventCalendarToolbar.d.ts +16 -0
  50. package/esm/breezy/EventCalendarToolbar.js +51 -0
  51. package/esm/breezy/EventCalendarViews.d.ts +33 -0
  52. package/esm/breezy/EventCalendarViews.js +250 -0
  53. package/esm/breezy/ResourceTimeGrid.d.ts +15 -0
  54. package/esm/breezy/ResourceTimeGrid.js +45 -0
  55. package/esm/breezy/ResourceTimeline.d.ts +15 -0
  56. package/esm/breezy/ResourceTimeline.js +43 -0
  57. package/esm/breezy/SchedulerViews.d.ts +8 -0
  58. package/esm/breezy/SchedulerViews.js +62 -0
  59. package/esm/breezy/icons.d.ts +11 -0
  60. package/esm/breezy/icons.js +22 -0
  61. package/esm/classic/EventCalendar.d.ts +15 -0
  62. package/esm/classic/EventCalendar.js +49 -0
  63. package/esm/classic/EventCalendarContainer.d.ts +11 -0
  64. package/esm/classic/EventCalendarContainer.js +13 -0
  65. package/esm/classic/EventCalendarToolbar.d.ts +17 -0
  66. package/esm/classic/EventCalendarToolbar.js +48 -0
  67. package/esm/classic/EventCalendarViews.d.ts +31 -0
  68. package/esm/classic/EventCalendarViews.js +205 -0
  69. package/esm/classic/ResourceTimeGrid.d.ts +15 -0
  70. package/esm/classic/ResourceTimeGrid.js +45 -0
  71. package/esm/classic/ResourceTimeline.d.ts +15 -0
  72. package/esm/classic/ResourceTimeline.js +43 -0
  73. package/esm/classic/SchedulerViews.d.ts +8 -0
  74. package/esm/classic/SchedulerViews.js +66 -0
  75. package/esm/classic/icons.d.ts +11 -0
  76. package/esm/classic/icons.js +22 -0
  77. package/esm/forma/EventCalendar.d.ts +15 -0
  78. package/esm/forma/EventCalendar.js +49 -0
  79. package/esm/forma/EventCalendarContainer.d.ts +15 -0
  80. package/esm/forma/EventCalendarContainer.js +26 -0
  81. package/esm/forma/EventCalendarToolbar.d.ts +16 -0
  82. package/esm/forma/EventCalendarToolbar.js +50 -0
  83. package/esm/forma/EventCalendarViews.d.ts +30 -0
  84. package/esm/forma/EventCalendarViews.js +221 -0
  85. package/esm/forma/ResourceTimeGrid.d.ts +15 -0
  86. package/esm/forma/ResourceTimeGrid.js +45 -0
  87. package/esm/forma/ResourceTimeline.d.ts +15 -0
  88. package/esm/forma/ResourceTimeline.js +43 -0
  89. package/esm/forma/SchedulerViews.d.ts +8 -0
  90. package/esm/forma/SchedulerViews.js +54 -0
  91. package/esm/forma/icons.d.ts +11 -0
  92. package/esm/forma/icons.js +22 -0
  93. package/esm/monarch/EventCalendar.d.ts +15 -0
  94. package/esm/monarch/EventCalendar.js +49 -0
  95. package/esm/monarch/EventCalendarContainer.d.ts +15 -0
  96. package/esm/monarch/EventCalendarContainer.js +26 -0
  97. package/esm/monarch/EventCalendarToolbar.d.ts +16 -0
  98. package/esm/monarch/EventCalendarToolbar.js +48 -0
  99. package/esm/monarch/EventCalendarViews.d.ts +27 -0
  100. package/esm/monarch/EventCalendarViews.js +225 -0
  101. package/esm/monarch/ResourceTimeGrid.d.ts +15 -0
  102. package/esm/monarch/ResourceTimeGrid.js +45 -0
  103. package/esm/monarch/ResourceTimeline.d.ts +15 -0
  104. package/esm/monarch/ResourceTimeline.js +43 -0
  105. package/esm/monarch/SchedulerViews.d.ts +8 -0
  106. package/esm/monarch/SchedulerViews.js +75 -0
  107. package/esm/monarch/icons.d.ts +11 -0
  108. package/esm/monarch/icons.js +22 -0
  109. package/esm/pulse/EventCalendar.d.ts +15 -0
  110. package/esm/pulse/EventCalendar.js +49 -0
  111. package/esm/pulse/EventCalendarContainer.d.ts +11 -0
  112. package/esm/pulse/EventCalendarContainer.js +13 -0
  113. package/esm/pulse/EventCalendarToolbar.d.ts +17 -0
  114. package/esm/pulse/EventCalendarToolbar.js +48 -0
  115. package/esm/pulse/EventCalendarViews.d.ts +29 -0
  116. package/esm/pulse/EventCalendarViews.js +239 -0
  117. package/esm/pulse/ResourceTimeGrid.d.ts +15 -0
  118. package/esm/pulse/ResourceTimeGrid.js +45 -0
  119. package/esm/pulse/ResourceTimeline.d.ts +15 -0
  120. package/esm/pulse/ResourceTimeline.js +43 -0
  121. package/esm/pulse/SchedulerViews.d.ts +8 -0
  122. package/esm/pulse/SchedulerViews.js +50 -0
  123. package/esm/pulse/icons.d.ts +11 -0
  124. package/esm/pulse/icons.js +22 -0
  125. package/forma/theme.css +936 -0
  126. package/monarch/theme.css +1014 -0
  127. package/package.json +371 -0
  128. package/pulse/theme.css +913 -0
@@ -0,0 +1,811 @@
1
+
2
+ /*
3
+ NOTE: apply this to calendar root AND popover
4
+ */
5
+ .fc-classic-ND7 {
6
+ line-height: 1.5;
7
+ --fc-classic-border-style: solid;
8
+ }
9
+
10
+ /*
11
+ NOTE: apply this to buttonClass and popoverCloseClass
12
+ */
13
+ .fc-classic-om0 {
14
+ -webkit-appearance: button;
15
+ -moz-appearance: button;
16
+ appearance: button;
17
+ font: inherit;
18
+ font-feature-settings: inherit;
19
+ font-variation-settings: inherit;
20
+ letter-spacing: inherit;
21
+ color: inherit;
22
+ opacity: 1;
23
+ background-color: #0000;
24
+ border-radius: 0;
25
+ /* originally provided on border-box reset */
26
+ margin: 0;
27
+ border: 0;
28
+ padding: 0
29
+ }
30
+
31
+ .fc-classic-YA2 {
32
+ position: absolute
33
+ }
34
+
35
+ .fc-classic-vPs {
36
+ position: relative
37
+ }
38
+
39
+ .fc-classic-IyH {
40
+ position: sticky
41
+ }
42
+
43
+ .fc-classic-xX5 {
44
+ inset-inline: 0
45
+ }
46
+
47
+ .fc-classic-8ZZ {
48
+ inset-block: 0
49
+ }
50
+
51
+ .fc-classic-BD7 {
52
+ inset-inline-start: -.25rem
53
+ }
54
+
55
+ .fc-classic-9o9 {
56
+ inset-inline-start: 0
57
+ }
58
+
59
+ .fc-classic-8rg {
60
+ inset-inline-end: -.25rem
61
+ }
62
+
63
+ .fc-classic-Eoc {
64
+ inset-inline-end: 0.125rem
65
+ }
66
+
67
+ .fc-classic-W3O {
68
+ inset-inline-end: -3px
69
+ }
70
+
71
+ .fc-classic-f4s {
72
+ top: -.25rem
73
+ }
74
+
75
+ .fc-classic-pPI {
76
+ top: 0
77
+ }
78
+
79
+ .fc-classic-RWe {
80
+ top: 0.125rem
81
+ }
82
+
83
+ .fc-classic-if4 {
84
+ top: 50%
85
+ }
86
+
87
+ .fc-classic-I8n {
88
+ bottom: -.25rem
89
+ }
90
+
91
+ .fc-classic-wVG {
92
+ bottom: 0
93
+ }
94
+
95
+ .fc-classic-Z2g {
96
+ left: 50%
97
+ }
98
+
99
+ .fc-classic-f5K {
100
+ order: -1
101
+ }
102
+
103
+ .fc-classic-JQD {
104
+ margin: .25rem
105
+ }
106
+
107
+ .fc-classic-c0k {
108
+ margin: .5rem
109
+ }
110
+
111
+ .fc-classic-tZ3 {
112
+ margin: 1rem
113
+ }
114
+
115
+ .fc-classic-s6k {
116
+ margin-inline: -5px
117
+ }
118
+
119
+ .fc-classic-qK4 {
120
+ margin-inline: 0.125rem
121
+ }
122
+
123
+ .fc-classic-MOr {
124
+ margin-inline: .25rem
125
+ }
126
+
127
+ .fc-classic-6gf {
128
+ margin-inline: 1px
129
+ }
130
+
131
+ .fc-classic-GSF {
132
+ margin-inline-start: 0.125rem
133
+ }
134
+
135
+ .fc-classic-twY {
136
+ margin-inline-start: .5rem
137
+ }
138
+
139
+ .fc-classic-9ZR {
140
+ margin-inline-start: 1px
141
+ }
142
+
143
+ .fc-classic-ClJ {
144
+ margin-inline-end: -.25rem
145
+ }
146
+
147
+ .fc-classic-Jha {
148
+ margin-inline-end: 0.125rem
149
+ }
150
+
151
+ .fc-classic-Dk5 {
152
+ margin-inline-end: 2.5%
153
+ }
154
+
155
+ .fc-classic-bpq {
156
+ margin-inline-end: 1px
157
+ }
158
+
159
+ .fc-classic-NN9 {
160
+ margin-top: -.25rem
161
+ }
162
+
163
+ .fc-classic-Bjh {
164
+ margin-top: -5px
165
+ }
166
+
167
+ .fc-classic-mwm {
168
+ margin-bottom: 1px
169
+ }
170
+
171
+ .fc-classic-RWU {
172
+ margin-left: -.25rem
173
+ }
174
+
175
+ .fc-classic-QDv {
176
+ display: contents
177
+ }
178
+
179
+ .fc-classic-PGQ {
180
+ display: block
181
+ }
182
+
183
+ .fc-classic-Hhr {
184
+ display: flex
185
+ }
186
+
187
+ .fc-classic-C9h {
188
+ display: none
189
+ }
190
+
191
+ .fc-classic-tEU {
192
+ width: .5rem;
193
+ height: .5rem
194
+ }
195
+
196
+ .fc-classic-433 {
197
+ height: .5rem
198
+ }
199
+
200
+ .fc-classic-EGh {
201
+ height: .75rem
202
+ }
203
+
204
+ .fc-classic-s9U {
205
+ min-height: 0.125rem
206
+ }
207
+
208
+ .fc-classic-iJ1 {
209
+ min-height: .75rem
210
+ }
211
+
212
+ .fc-classic-WoG {
213
+ min-height: 1px
214
+ }
215
+
216
+ .fc-classic-8Ko {
217
+ width: 50%
218
+ }
219
+
220
+ .fc-classic-1lj {
221
+ width: .5rem
222
+ }
223
+
224
+ .fc-classic-Ahl {
225
+ width: 5px
226
+ }
227
+
228
+ .fc-classic-mTj {
229
+ max-width: 12.5rem
230
+ }
231
+
232
+ .fc-classic-qbd {
233
+ min-width: 0
234
+ }
235
+
236
+ .fc-classic-nhl {
237
+ min-width: 13.75rem
238
+ }
239
+
240
+ .fc-classic-yvz {
241
+ flex-shrink: 0
242
+ }
243
+
244
+ .fc-classic-qbn {
245
+ flex-shrink: 1
246
+ }
247
+
248
+ .fc-classic-nGI {
249
+ flex-shrink: 100
250
+ }
251
+
252
+ .fc-classic-oee {
253
+ flex-grow: 1
254
+ }
255
+
256
+ .fc-classic-doO {
257
+ rotate: -90deg
258
+ }
259
+
260
+ .fc-classic-bXY {
261
+ flex-direction: column
262
+ }
263
+
264
+ .fc-classic-uEy {
265
+ flex-direction: row
266
+ }
267
+
268
+ .fc-classic-gfU {
269
+ align-items: center
270
+ }
271
+
272
+ .fc-classic-Klj {
273
+ justify-content: space-between
274
+ }
275
+
276
+ .fc-classic-a65 {
277
+ justify-content: center
278
+ }
279
+
280
+ .fc-classic-RhI {
281
+ justify-content: flex-end
282
+ }
283
+
284
+ .fc-classic-fji {
285
+ gap: 0.125rem
286
+ }
287
+
288
+ .fc-classic-RVT {
289
+ gap: .25rem
290
+ }
291
+
292
+ .fc-classic-9Vv {
293
+ gap: .75rem
294
+ }
295
+
296
+ .fc-classic-rK9 {
297
+ align-self: flex-start
298
+ }
299
+
300
+ .fc-classic-O5O {
301
+ overflow: hidden
302
+ }
303
+
304
+ .fc-classic-8Kl {
305
+ border-radius: var(--mui-shape-borderRadius)
306
+ }
307
+
308
+ .fc-classic-IdG {
309
+ border-radius: 3.40282e38px
310
+ }
311
+
312
+ .fc-classic-dpa {
313
+ border-radius: .25rem
314
+ }
315
+
316
+ .fc-classic-fdR {
317
+ border-start-start-radius: .25rem;
318
+ border-end-start-radius: .25rem
319
+ }
320
+
321
+ .fc-classic-Ea4 {
322
+ border-start-end-radius: .25rem;
323
+ border-end-end-radius: .25rem
324
+ }
325
+
326
+ .fc-classic-0W5 {
327
+ border-end-end-radius: .25rem
328
+ }
329
+
330
+ .fc-classic-ugX {
331
+ border-top-left-radius: .25rem;
332
+ border-top-right-radius: .25rem
333
+ }
334
+
335
+ .fc-classic-7zG {
336
+ border-bottom-right-radius: .25rem;
337
+ border-bottom-left-radius: .25rem
338
+ }
339
+
340
+ .fc-classic-UZp {
341
+ border-style: var(--fc-classic-border-style);
342
+ border-width: 1px
343
+ }
344
+
345
+ .fc-classic-PrA {
346
+ border-style: var(--fc-classic-border-style);
347
+ border-width: 4px
348
+ }
349
+
350
+ .fc-classic-1uc {
351
+ border-style: var(--fc-classic-border-style);
352
+ border-width: 5px
353
+ }
354
+
355
+ .fc-classic-zDQ {
356
+ border-inline-style: var(--fc-classic-border-style);
357
+ border-inline-width: 1px
358
+ }
359
+
360
+ .fc-classic-I5k {
361
+ border-inline-style: var(--fc-classic-border-style);
362
+ border-inline-width: 5px
363
+ }
364
+
365
+ .fc-classic-3WQ {
366
+ border-block-style: var(--fc-classic-border-style);
367
+ border-block-width: 1px
368
+ }
369
+
370
+ .fc-classic-ARL {
371
+ border-block-style: var(--fc-classic-border-style);
372
+ border-block-width: 5px
373
+ }
374
+
375
+ .fc-classic-riW {
376
+ border-inline-start-style: var(--fc-classic-border-style);
377
+ border-inline-start-width: 1px
378
+ }
379
+
380
+ .fc-classic-1Ll {
381
+ border-inline-start-style: var(--fc-classic-border-style);
382
+ border-inline-start-width: 5px
383
+ }
384
+
385
+ .fc-classic-cwE {
386
+ border-inline-start-style: var(--fc-classic-border-style);
387
+ border-inline-start-width: 6px
388
+ }
389
+
390
+ .fc-classic-EWl {
391
+ border-inline-end-style: var(--fc-classic-border-style);
392
+ border-inline-end-width: 1px
393
+ }
394
+
395
+ .fc-classic-FIS {
396
+ border-inline-end-style: var(--fc-classic-border-style);
397
+ border-inline-end-width: 5px
398
+ }
399
+
400
+ .fc-classic-srs {
401
+ border-top-style: var(--fc-classic-border-style);
402
+ border-top-width: 1px
403
+ }
404
+
405
+ .fc-classic-ubr {
406
+ border-top-style: var(--fc-classic-border-style);
407
+ border-top-width: 6px
408
+ }
409
+
410
+ .fc-classic-QTT {
411
+ border-bottom-style: var(--fc-classic-border-style);
412
+ border-bottom-width: 1px
413
+ }
414
+
415
+ .fc-classic-M5N {
416
+ --fc-classic-border-style: dotted;
417
+ border-style: dotted
418
+ }
419
+
420
+ .fc-classic-qvz {
421
+ border-color: var(--fc-event-color)
422
+ }
423
+
424
+ .fc-classic-G56 {
425
+ border-color: var(--mui-palette-divider)
426
+ }
427
+
428
+ .fc-classic-R3n {
429
+ border-color: var(--mui-palette-error-main)
430
+ }
431
+
432
+ .fc-classic-R95 {
433
+ border-color: var(--mui-palette-primary-main)
434
+ }
435
+
436
+ .fc-classic-I55 {
437
+ border-color: rgba(var(--mui-palette-text-primaryChannel)/.2)
438
+ }
439
+
440
+ .fc-classic-lqW {
441
+ border-color: #0000
442
+ }
443
+
444
+ .fc-classic-LDz {
445
+ border-inline-color: #0000
446
+ }
447
+
448
+ .fc-classic-DGs {
449
+ border-block-color: #0000
450
+ }
451
+
452
+ .fc-classic-7Ra {
453
+ border-inline-start-color: var(--mui-palette-error-main)
454
+ }
455
+
456
+ .fc-classic-ap8 {
457
+ border-inline-start-color: #000
458
+ }
459
+
460
+ .fc-classic-tHp {
461
+ border-inline-end-color: #000
462
+ }
463
+
464
+ .fc-classic-qd4 {
465
+ border-top-color: var(--mui-palette-error-main)
466
+ }
467
+
468
+ .fc-classic-n4P {
469
+ background-color: var(--fc-event-color)
470
+ }
471
+
472
+ .fc-classic-Y27 {
473
+ background-color: var(--mui-palette-background-paper)
474
+ }
475
+
476
+ .fc-classic-Z7B {
477
+ background-color: var(--fc-event-color)
478
+ }
479
+
480
+ @supports (color:color-mix(in lab, red, red)) {
481
+ .fc-classic-Z7B {
482
+ background-color: color-mix(in oklab, var(--fc-event-color)15%, transparent)
483
+ }
484
+ }
485
+
486
+ .fc-classic-5V9 {
487
+ background-color: var(--mui-palette-text-primary)
488
+ }
489
+
490
+ @supports (color:color-mix(in lab, red, red)) {
491
+ .fc-classic-5V9 {
492
+ background-color: color-mix(in oklab, var(--mui-palette-text-primary)16%, var(--mui-palette-background-paper))
493
+ }
494
+ }
495
+
496
+ .fc-classic-gKu {
497
+ background-color: rgba(var(--mui-palette-primary-mainChannel)/.1)
498
+ }
499
+
500
+ .fc-classic-IKt {
501
+ background-color: rgba(var(--mui-palette-text-primaryChannel)/.04)
502
+ }
503
+
504
+ .fc-classic-VxY {
505
+ background-color: rgba(var(--mui-palette-text-primaryChannel)/.08)
506
+ }
507
+
508
+ .fc-classic-DC1 {
509
+ background-image: var(--mui-overlays-8)
510
+ }
511
+
512
+ .fc-classic-KbZ {
513
+ padding: 0.125rem
514
+ }
515
+
516
+ .fc-classic-xGk {
517
+ padding: 0.375rem
518
+ }
519
+
520
+ .fc-classic-aS8 {
521
+ padding: .5rem
522
+ }
523
+
524
+ .fc-classic-df6 {
525
+ padding: 1px
526
+ }
527
+
528
+ .fc-classic-55Y {
529
+ padding-inline: 0.125rem
530
+ }
531
+
532
+ .fc-classic-qB7 {
533
+ padding-inline: .25rem
534
+ }
535
+
536
+ .fc-classic-U10 {
537
+ padding-inline: .75rem
538
+ }
539
+
540
+ .fc-classic-OKV {
541
+ padding-inline: 1px
542
+ }
543
+
544
+ .fc-classic-vvo {
545
+ padding-block: 0.125rem
546
+ }
547
+
548
+ .fc-classic-ztx {
549
+ padding-block: .25rem
550
+ }
551
+
552
+ .fc-classic-uBa {
553
+ padding-block: 0.375rem
554
+ }
555
+
556
+ .fc-classic-KyB {
557
+ padding-block: .5rem
558
+ }
559
+
560
+ .fc-classic-UyD {
561
+ padding-block: 3.75rem
562
+ }
563
+
564
+ .fc-classic-h2r {
565
+ padding-block: 1px
566
+ }
567
+
568
+ .fc-classic-qNU {
569
+ padding-inline-start: 0.125rem
570
+ }
571
+
572
+ .fc-classic-zvv {
573
+ padding-top: 0.125rem
574
+ }
575
+
576
+ .fc-classic-yJv {
577
+ padding-bottom: 0.125rem
578
+ }
579
+
580
+ .fc-classic-LbL {
581
+ padding-bottom: 1rem
582
+ }
583
+
584
+ .fc-classic-fi1 {
585
+ text-align: center
586
+ }
587
+
588
+ .fc-classic-XMF {
589
+ text-align: end
590
+ }
591
+
592
+ .fc-classic-HRt {
593
+ font-size: .6875rem;
594
+ line-height: 1.09091
595
+ }
596
+
597
+ .fc-classic-PuF {
598
+ font-size: 1rem;
599
+ line-height: calc(1.5/1)
600
+ }
601
+
602
+ .fc-classic-gEy {
603
+ font-size: .875rem;
604
+ line-height: calc(1.25/.875)
605
+ }
606
+
607
+ .fc-classic-17F {
608
+ font-size: .75rem;
609
+ line-height: calc(1/.75)
610
+ }
611
+
612
+ .fc-classic-Kw3 {
613
+ font-weight: 700
614
+ }
615
+
616
+ .fc-classic-yGY {
617
+ text-overflow: ellipsis
618
+ }
619
+
620
+ .fc-classic-JTJ {
621
+ white-space: nowrap
622
+ }
623
+
624
+ .fc-classic-csg {
625
+ white-space: pre
626
+ }
627
+
628
+ .fc-classic-P9J {
629
+ color: var(--fc-event-contrast-color)
630
+ }
631
+
632
+ .fc-classic-5Kh {
633
+ color: var(--mui-palette-action-active)
634
+ }
635
+
636
+ .fc-classic-HBk {
637
+ color: var(--mui-palette-text-primary)
638
+ }
639
+
640
+ .fc-classic-Znt {
641
+ color: rgba(var(--mui-palette-text-primaryChannel)/.6)
642
+ }
643
+
644
+ .fc-classic-lVd {
645
+ color: rgba(var(--mui-palette-text-primaryChannel)/.38)
646
+ }
647
+
648
+ .fc-classic-dra {
649
+ font-style: italic
650
+ }
651
+
652
+ .fc-classic-F6C {
653
+ opacity: .5
654
+ }
655
+
656
+ .fc-classic-0HG {
657
+ opacity: .75
658
+ }
659
+
660
+ .fc-classic-uPX {
661
+ box-shadow: var(--mui-shadows-8)
662
+ }
663
+
664
+ .fc-classic-ACR {
665
+ box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a
666
+ }
667
+
668
+ .fc-classic-iqH {
669
+ box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a
670
+ }
671
+
672
+ .fc-classic-5jb {
673
+ box-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a
674
+ }
675
+
676
+ .fc-classic-z3l {
677
+ box-shadow: 0 0 0 1px var(--fc-classic-ring-color, currentcolor)
678
+ }
679
+
680
+ .fc-classic-bLM {
681
+ --fc-classic-ring-color: var(--mui-palette-background-paper)
682
+ }
683
+
684
+ .fc-classic-q2k {
685
+ outline-style: solid;
686
+ outline-width: 1px
687
+ }
688
+
689
+ .fc-classic-bAU {
690
+ outline-style: solid;
691
+ outline-width: 3px
692
+ }
693
+
694
+ .fc-classic-bzG {
695
+ outline-offset: -3px
696
+ }
697
+
698
+ .fc-classic-fKI {
699
+ outline-offset: 1px
700
+ }
701
+
702
+ .fc-classic-lul {
703
+ outline-color: rgba(var(--mui-palette-primary-mainChannel)/.5)
704
+ }
705
+
706
+ .fc-classic-yKv {
707
+ background: linear-gradient(rgba(var(--mui-palette-text-primaryChannel)/.08), rgba(var(--mui-palette-text-primaryChannel)/.08))var(--mui-palette-background-paper)
708
+ }
709
+
710
+ @media not print {
711
+ .fc-classic-VZw {
712
+ background-color: rgba(var(--mui-palette-warning-mainChannel)/.1)
713
+ }
714
+ }
715
+
716
+ @media (hover:hover) {
717
+ .fc-classic-ZkV:is(:where(.fc-classic-ytQ):hover *) {
718
+ display: block
719
+ }
720
+
721
+ .fc-classic-HHp:is(:where(.fc-classic-ytQ):hover *) {
722
+ color: var(--mui-palette-text-primary)
723
+ }
724
+
725
+ .fc-classic-YdZ:is(:where(.fc-classic-ytQ):hover *) {
726
+ -webkit-text-decoration-line: underline;
727
+ text-decoration-line: underline
728
+ }
729
+ }
730
+
731
+ .fc-classic-La2:is(:where(.fc-classic-ytQ):focus-visible *) {
732
+ color: var(--mui-palette-text-primary)
733
+ }
734
+
735
+ @media (hover:hover) {
736
+ .fc-classic-fEn:hover {
737
+ background-color: var(--mui-palette-text-primary)
738
+ }
739
+
740
+ @supports (color:color-mix(in lab, red, red)) {
741
+ .fc-classic-fEn:hover {
742
+ background-color: color-mix(in oklab, var(--mui-palette-text-primary)20%, var(--mui-palette-background-paper))
743
+ }
744
+ }
745
+
746
+ .fc-classic-iAr:hover {
747
+ background-color: rgba(var(--mui-palette-text-primaryChannel)/.04)
748
+ }
749
+
750
+ .fc-classic-znR:hover {
751
+ background-color: rgba(var(--mui-palette-text-primaryChannel)/.08)
752
+ }
753
+
754
+ .fc-classic-jaW:hover {
755
+ -webkit-text-decoration-line: underline;
756
+ text-decoration-line: underline
757
+ }
758
+ }
759
+
760
+ .fc-classic-r6h:focus-visible {
761
+ background-color: rgba(var(--mui-palette-text-primaryChannel)/.04)
762
+ }
763
+
764
+ .fc-classic-G0J:focus-visible {
765
+ background-color: rgba(var(--mui-palette-text-primaryChannel)/.08)
766
+ }
767
+
768
+ .fc-classic-Tid:focus-visible {
769
+ outline-style: solid;
770
+ outline-width: 3px
771
+ }
772
+
773
+ .fc-classic-lS3:active {
774
+ background-color: var(--mui-palette-text-primary)
775
+ }
776
+
777
+ @supports (color:color-mix(in lab, red, red)) {
778
+ .fc-classic-lS3:active {
779
+ background-color: color-mix(in oklab, var(--mui-palette-text-primary)25%, var(--mui-palette-background-paper))
780
+ }
781
+ }
782
+
783
+ .fc-classic-cmB:active {
784
+ background-color: rgba(var(--mui-palette-text-primaryChannel)/.08)
785
+ }
786
+
787
+ @media print {
788
+ .fc-classic-iVS {
789
+ border-color: var(--fc-event-color)
790
+ }
791
+
792
+ .fc-classic-ePV {
793
+ border-color: #000
794
+ }
795
+
796
+ .fc-classic-82y {
797
+ background-color: #fff
798
+ }
799
+
800
+ .fc-classic-Nt8 {
801
+ color: #000
802
+ }
803
+ }
804
+
805
+ [dir=rtl] .fc-classic-Bzb {
806
+ rotate: 90deg
807
+ }
808
+
809
+ [dir=rtl] .fc-classic-AAt {
810
+ rotate: 180deg
811
+ }