tui-calendar-rails 1.12.13.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.
@@ -0,0 +1,5 @@
1
+ /*
2
+ *= require tui-date-picker/tui-date-picker
3
+ *= require tui-time-picker/tui-time-picker
4
+ *= require tui-calendar/tui-calendar
5
+ */
@@ -0,0 +1,1177 @@
1
+ /*!
2
+ * TOAST UI Calendar
3
+ * @version 1.12.13 | Tue Apr 28 2020
4
+ * @author NHN FE Development Lab <dl_javascript@nhn.com>
5
+ * @license MIT
6
+ */
7
+ .tui-full-calendar-layout {
8
+ height: 100%;
9
+ position: relative;
10
+ box-sizing: border-box;
11
+ }
12
+ .tui-full-calendar-layout * {
13
+ box-sizing: border-box;
14
+ }
15
+ .tui-full-calendar-dragging {
16
+ cursor: move;
17
+ }
18
+ .tui-full-calendar-resizing {
19
+ cursor: row-resize;
20
+ }
21
+ .tui-full-calendar-resizing-x {
22
+ cursor: col-resize;
23
+ }
24
+ .tui-full-calendar-hidden {
25
+ display: none !important;
26
+ }
27
+ .tui-full-calendar-invisible span {
28
+ visibility: hidden;
29
+ }
30
+ .tui-full-calendar-clear {
31
+ zoom: 1;
32
+ }
33
+ .tui-full-calendar-clear:after {
34
+ content: '';
35
+ display: block;
36
+ clear: both;
37
+ }
38
+ .tui-full-calendar-scroll-y {
39
+ overflow-y: scroll;
40
+ }
41
+ .tui-full-calendar-dot {
42
+ display: inline-block;
43
+ position: relative;
44
+ top: -1px;
45
+ content: '';
46
+ width: 7px;
47
+ height: 7px;
48
+ border-radius: 50%;
49
+ }
50
+ .tui-full-calendar-holiday {
51
+ color: #f00;
52
+ }
53
+ .tui-full-calendar-today {
54
+ background: rgba(218,229,249,0.3);
55
+ }
56
+ .handle-x {
57
+ background-position: center center;
58
+ background-repeat: no-repeat;
59
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAECAMAAACEE47CAAAACVBMVEX///////////+OSuX+AAAAA3RSTlMrQJG5H4EIAAAAEUlEQVR4AWNgYoRABhjEFAEAArQAIcHQcPsAAAAASUVORK5CYII=);
60
+ }
61
+ .handle-y {
62
+ background-position: center center;
63
+ background-repeat: no-repeat;
64
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAMAAADp7a43AAAACVBMVEX///////////+OSuX+AAAAA3RSTlMrQJG5H4EIAAAAEUlEQVR4AWNgYmRiZABB/CwAAtgAIUTUNkMAAAAASUVORK5CYII=);
65
+ }
66
+ @media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-devicepixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx) {
67
+ .handle-x {
68
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAMAAADHqI+lAAAACVBMVEX///////////+OSuX+AAAAA3RSTlMZK5EY+QKaAAAAGUlEQVR4AWNgYmJAwegCIMDIiIwxBKhhBgAcSABh8gN42gAAAABJRU5ErkJggg==);
69
+ background-size: 8px 4px;
70
+ }
71
+ .handle-y {
72
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAQCAMAAAAcVM5PAAAACVBMVEX///////////+OSuX+AAAAA3RSTlMEK5EMBzK5AAAAGElEQVR4AWNgYmIAYxgDBBgZQRjOoKcaABzQAGGjsIM/AAAAAElFTkSuQmCC);
73
+ background-size: 4px 8px;
74
+ }
75
+ }
76
+ .tui-full-calendar-month-week-item .tui-full-calendar-weekday-grid {
77
+ overflow-y: hidden;
78
+ }
79
+ .tui-full-calendar-month-week-item .tui-full-calendar-weekday-schedules {
80
+ overflow-y: visible;
81
+ height: 0;
82
+ }
83
+ .tui-full-calendar-month-week-item .tui-full-calendar-weekday-schedule {
84
+ margin: 0 10px;
85
+ }
86
+ .tui-full-calendar-month-week-item .tui-full-calendar-today {
87
+ background: none;
88
+ }
89
+ .tui-full-calendar-month-week-item .tui-full-calendar-today .tui-full-calendar-weekday-grid-date-decorator {
90
+ display: inline-block;
91
+ width: 27px;
92
+ height: 27px;
93
+ line-height: 27px;
94
+ text-align: center;
95
+ background: #135de6;
96
+ border-radius: 50%;
97
+ color: #fff;
98
+ font-weight: bold;
99
+ margin-left: 2px;
100
+ }
101
+ .tui-full-calendar-weekday-container,
102
+ .tui-full-calendar-weekday-grid,
103
+ .tui-full-calendar-weekday-grid-line {
104
+ height: 100%;
105
+ min-height: inherit;
106
+ }
107
+ .tui-full-calendar-weekday-grid {
108
+ position: absolute;
109
+ width: 100%;
110
+ overflow-y: scroll;
111
+ }
112
+ .tui-full-calendar-weekday-border {
113
+ border-top: 1px solid #ddd;
114
+ }
115
+ .tui-full-calendar-weekday-container {
116
+ position: relative;
117
+ }
118
+ .tui-full-calendar-weekday-container>div {
119
+ height: 100%;
120
+ }
121
+ .tui-full-calendar-weekday-grid-line {
122
+ position: absolute;
123
+ padding: 3px;
124
+ }
125
+ .tui-full-calendar-weekday-grid-line .tui-full-calendar-weekday-grid-footer {
126
+ position: absolute;
127
+ bottom: 4px;
128
+ }
129
+ .tui-full-calendar-weekday-grid-line .tui-full-calendar-weekday-grid-date {
130
+ display: inline-block;
131
+ width: 27px;
132
+ height: 27px;
133
+ line-height: 27px;
134
+ text-align: center;
135
+ }
136
+ .tui-full-calendar-weekday-grid-line .tui-full-calendar-weekday-grid-date-title {
137
+ line-height: 27px;
138
+ margin-right: 5px;
139
+ }
140
+ .tui-full-calendar-weekday-grid-line .tui-full-calendar-weekday-grid-more-schedules {
141
+ float: right;
142
+ display: inline-block;
143
+ height: 27px;
144
+ line-height: 27px;
145
+ padding: 0 5px;
146
+ text-align: center;
147
+ font-size: 11px;
148
+ font-weight: bold;
149
+ color: #aaa;
150
+ }
151
+ .tui-full-calendar-weekday-creation {
152
+ top: 0;
153
+ left: 0;
154
+ width: 100%;
155
+ height: 100%;
156
+ position: absolute;
157
+ overflow-y: scroll;
158
+ }
159
+ .tui-full-calendar-weekday-schedules {
160
+ top: 0;
161
+ left: 0;
162
+ width: 100%;
163
+ height: 100%;
164
+ position: absolute;
165
+ font-size: 12px;
166
+ overflow-y: scroll;
167
+ }
168
+ .tui-full-calendar-weekday-schedules-height-span {
169
+ width: 1px;
170
+ margin-left: -1px;
171
+ }
172
+ .tui-full-calendar-weekday-schedule-block {
173
+ position: absolute;
174
+ }
175
+ .tui-full-calendar-weekday-schedule-block-dragging-dim {
176
+ opacity: 0.3;
177
+ }
178
+ .tui-full-calendar-weekday-schedule {
179
+ position: relative;
180
+ margin: 0 10px 0 1px;
181
+ cursor: pointer;
182
+ border-left-style: solid;
183
+ border-left-width: 3px;
184
+ }
185
+ .tui-full-calendar-weekday-schedule.tui-full-calendar-weekday-schedule-time {
186
+ border-left-width: 0;
187
+ }
188
+ .tui-full-calendar-weekday-schedule.tui-full-calendar-weekday-schedule-time .tui-full-calendar-weekday-schedule-title {
189
+ padding-left: 9px;
190
+ }
191
+ .tui-full-calendar-weekday-schedule-bullet {
192
+ position: absolute;
193
+ padding: 0;
194
+ width: 6px;
195
+ height: 6px;
196
+ top: 6px;
197
+ left: 0;
198
+ border-radius: 50%;
199
+ }
200
+ .tui-full-calendar-weekday-schedule-bullet-focused {
201
+ left: 10px;
202
+ background: #fff;
203
+ }
204
+ .tui-full-calendar-weekday-schedule-title {
205
+ display: block;
206
+ white-space: nowrap;
207
+ overflow: hidden;
208
+ text-overflow: ellipsis;
209
+ padding-left: 3px;
210
+ font-weight: bold;
211
+ }
212
+ .tui-full-calendar-weekday-schedule-title-focused {
213
+ padding-left: 16px;
214
+ }
215
+ .tui-full-calendar-weekday-schedule-cover {
216
+ position: absolute;
217
+ top: 0;
218
+ width: 100%;
219
+ height: 100%;
220
+ background-color: rgba(0,0,0,0.2);
221
+ box-shadow: 0 2px 6px 0 rgba(0,0,0,0.1);
222
+ }
223
+ .tui-full-calendar-weekday-exceed-left .tui-full-calendar-weekday-schedule {
224
+ margin-left: 0;
225
+ border-left-width: 0;
226
+ }
227
+ .tui-full-calendar-weekday-exceed-right .tui-full-calendar-weekday-schedule {
228
+ margin-right: 0;
229
+ }
230
+ .tui-full-calendar-weekday-exceed-right .tui-full-calendar-weekday-resize-handle {
231
+ display: none;
232
+ }
233
+ .tui-full-calendar-weekday-exceed-in-month {
234
+ cursor: pointer;
235
+ }
236
+ .tui-full-calendar-weekday-exceed-in-month:hover {
237
+ background-color: #f0f1f5;
238
+ }
239
+ .tui-full-calendar-weekday-exceed-in-week,
240
+ .tui-full-calendar-weekday-collapse-btn {
241
+ position: absolute;
242
+ bottom: 5px;
243
+ margin-right: 5px;
244
+ font-size: 12px;
245
+ line-height: 14px;
246
+ cursor: pointer;
247
+ padding: 1px 5px;
248
+ background-color: #fff;
249
+ border: 1px solid #ddd;
250
+ color: #000;
251
+ }
252
+ .tui-full-calendar-weekday-resize-handle {
253
+ position: absolute;
254
+ top: 0;
255
+ right: 0;
256
+ width: 6px;
257
+ background-position: 3px center;
258
+ cursor: col-resize;
259
+ line-height: 18px;
260
+ }
261
+ .tui-full-calendar-weekday-filled {
262
+ background-color: #e8e8e8 !important;
263
+ }
264
+ .tui-full-calendar-left {
265
+ height: 100%;
266
+ float: left;
267
+ box-sizing: border-box;
268
+ display: table;
269
+ }
270
+ .tui-full-calendar-left-content {
271
+ display: table-cell;
272
+ vertical-align: middle;
273
+ text-align: right;
274
+ font-size: 11px;
275
+ }
276
+ .tui-full-calendar-right {
277
+ height: 100%;
278
+ overflow-y: scroll;
279
+ position: relative;
280
+ }
281
+ .tui-full-calendar-week-container {
282
+ width: 100%;
283
+ height: inherit;
284
+ display: inline-block;
285
+ font-size: 10px;
286
+ min-height: 600px;
287
+ }
288
+ .tui-full-calendar-week-container .tui-full-calendar-today {
289
+ background: none;
290
+ }
291
+ .tui-full-calendar-dayname {
292
+ position: absolute;
293
+ margin-left: -1px;
294
+ height: 100%;
295
+ overflow: hidden;
296
+ }
297
+ .tui-full-calendar-dayname.tui-full-calendar-today {
298
+ font-weight: bold;
299
+ }
300
+ .tui-full-calendar-dayname-container {
301
+ overflow-y: scroll;
302
+ }
303
+ .tui-full-calendar-dayname-leftmargin {
304
+ position: relative;
305
+ height: 100%;
306
+ }
307
+ .tui-full-calendar-dayname-date {
308
+ font-size: 26px;
309
+ }
310
+ .tui-full-calendar-dayname-name {
311
+ font-weight: bold;
312
+ font-size: 12px;
313
+ }
314
+ .tui-full-calendar-daygrid-layout {
315
+ height: 100%;
316
+ }
317
+ .tui-full-calendar-daygrid-layout .tui-full-calendar-right {
318
+ overflow-y: hidden;
319
+ }
320
+ .tui-full-calendar-daygrid-guide-creation-block {
321
+ position: absolute;
322
+ top: 0;
323
+ bottom: 0;
324
+ z-index: 1;
325
+ }
326
+ .tui-full-calendar-timegrid-container {
327
+ height: 100%;
328
+ position: relative;
329
+ overflow: hidden;
330
+ overflow-y: scroll;
331
+ }
332
+ .tui-full-calendar-timegrid-container-split {
333
+ height: 100%;
334
+ position: relative;
335
+ overflow: hidden;
336
+ }
337
+ .tui-full-calendar-timegrid-left {
338
+ position: absolute;
339
+ }
340
+ .tui-full-calendar-timegrid-hour {
341
+ position: relative;
342
+ color: #555;
343
+ box-sizing: border-box;
344
+ }
345
+ .tui-full-calendar-timegrid-hour:first-child span {
346
+ display: none;
347
+ }
348
+ .tui-full-calendar-timegrid-hour:last-child {
349
+ border-bottom: none;
350
+ }
351
+ .tui-full-calendar-timegrid-hour span {
352
+ position: absolute;
353
+ top: -11px;
354
+ left: 0;
355
+ right: 5px;
356
+ text-align: right;
357
+ line-height: 25px;
358
+ }
359
+ .tui-full-calendar-timegrid-right {
360
+ position: relative;
361
+ }
362
+ .tui-full-calendar-timegrid-gridline {
363
+ border-bottom: 1px solid #eee;
364
+ box-sizing: border-box;
365
+ }
366
+ .tui-full-calendar-timegrid-gridline:last-child {
367
+ border-bottom: none;
368
+ }
369
+ .tui-full-calendar-timegrid-schedules {
370
+ position: absolute;
371
+ width: 100%;
372
+ height: 100%;
373
+ top: 0;
374
+ left: 0;
375
+ cursor: pointer;
376
+ }
377
+ .tui-full-calendar-timegrid-hourmarker {
378
+ position: absolute;
379
+ width: 100%;
380
+ display: table;
381
+ }
382
+ .tui-full-calendar-timegrid-hourmarker-line-left {
383
+ position: absolute;
384
+ min-height: 1px;
385
+ left: 0;
386
+ }
387
+ .tui-full-calendar-timegrid-hourmarker-line-today {
388
+ position: absolute;
389
+ min-height: 1px;
390
+ }
391
+ .tui-full-calendar-timegrid-hourmarker-line-right {
392
+ position: absolute;
393
+ min-height: 1px;
394
+ right: 0;
395
+ }
396
+ .tui-full-calendar-timegrid-hourmarker-time {
397
+ padding-right: 5px;
398
+ line-height: 12px;
399
+ text-align: right;
400
+ display: table-cell;
401
+ vertical-align: bottom;
402
+ }
403
+ .tui-full-calendar-timegrid-todaymarker {
404
+ position: absolute;
405
+ text-indent: -9999px;
406
+ width: 9px;
407
+ height: 9px;
408
+ background-color: #135de6;
409
+ margin: -4px 0 0 -5px;
410
+ border-radius: 50%;
411
+ }
412
+ .tui-full-calendar-timegrid-sticky-container {
413
+ position: absolute;
414
+ top: 0;
415
+ }
416
+ .tui-full-calendar-timegrid-timezone-label-container {
417
+ position: absolute;
418
+ }
419
+ .tui-full-calendar-timegrid-timezone-label-cell {
420
+ display: table;
421
+ }
422
+ .tui-full-calendar-timegrid-timezone-label {
423
+ display: table-cell;
424
+ vertical-align: middle;
425
+ padding-right: 5px;
426
+ text-align: right;
427
+ }
428
+ .tui-full-calendar-timegrid-timezone-close-btn {
429
+ cursor: pointer;
430
+ position: absolute;
431
+ text-align: center;
432
+ background-color: #fff;
433
+ }
434
+ .tui-full-calendar-timegrid-timezone-close-btn .tui-full-calendar-icon {
435
+ width: 5px;
436
+ height: 10px;
437
+ }
438
+ .tui-full-calendar-time-date {
439
+ position: absolute;
440
+ height: 100%;
441
+ margin-left: -1px;
442
+ box-sizing: content-box;
443
+ }
444
+ .tui-full-calendar-time-date:last-child {
445
+ border-right: none;
446
+ margin: 0;
447
+ }
448
+ .tui-full-calendar-time-date:last-child .tui-full-calendar-time-schedule,
449
+ .tui-full-calendar-time-date:last-child .tui-full-calendar-time-guide-creation {
450
+ left: 0px;
451
+ }
452
+ .tui-full-calendar-time-date-schedule-block-wrap {
453
+ position: relative;
454
+ height: 100%;
455
+ }
456
+ .tui-full-calendar-time-date-schedule-block {
457
+ position: absolute;
458
+ right: 0px;
459
+ }
460
+ .tui-full-calendar-time-date-schedule-block-pending {
461
+ opacity: 0.7;
462
+ }
463
+ .tui-full-calendar-time-date-schedule-block-dragging-dim {
464
+ opacity: 0.3;
465
+ }
466
+ .tui-full-calendar-time-date-schedule-block-focused {
467
+ box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
468
+ }
469
+ .tui-full-calendar-time-date-schedule-block-cover {
470
+ position: absolute;
471
+ top: 0;
472
+ width: 100%;
473
+ height: 100%;
474
+ background-color: rgba(0,0,0,0.2);
475
+ box-shadow: 0 2px 6px 0 rgba(0,0,0,0.1);
476
+ }
477
+ .tui-full-calendar-time-schedule {
478
+ position: relative;
479
+ left: 1px;
480
+ height: 100%;
481
+ overflow: hidden;
482
+ font-size: 12px;
483
+ font-weight: bold;
484
+ }
485
+ .tui-full-calendar-time-schedule-content {
486
+ overflow: hidden;
487
+ border-left-width: 3px;
488
+ border-left-style: solid;
489
+ padding: 1px 0 0 3px;
490
+ }
491
+ .tui-full-calendar-time-schedule-content-travel-time {
492
+ font-weight: normal;
493
+ font-size: 11px;
494
+ }
495
+ .tui-full-calendar-time-resize-handle {
496
+ position: absolute;
497
+ right: 0px;
498
+ bottom: 0px;
499
+ left: 0px;
500
+ height: 5px;
501
+ text-align: center;
502
+ color: #fff;
503
+ cursor: row-resize;
504
+ background-position: center top;
505
+ }
506
+ .tui-full-calendar-time-guide-creation {
507
+ position: absolute;
508
+ right: 10px;
509
+ left: 1px;
510
+ padding: 3px;
511
+ }
512
+ .tui-full-calendar-time-guide-move .tui-full-calendar-time-schedule,
513
+ .tui-full-calendar-time-guide-resize .tui-full-calendar-time-schedule,
514
+ .tui-full-calendar-time-guide-move .tui-full-calendar-time-resize-handle,
515
+ .tui-full-calendar-time-guide-resize .tui-full-calendar-time-resize-handle {
516
+ opacity: 0.8;
517
+ z-index: 97;
518
+ }
519
+ .tui-full-calendar-time-guide-creation-label {
520
+ cursor: default;
521
+ }
522
+ .tui-full-calendar-time-guide-bottom {
523
+ position: absolute;
524
+ bottom: 3px;
525
+ }
526
+ .tui-full-calendar-month {
527
+ height: 100%;
528
+ min-height: 600px;
529
+ }
530
+ .tui-full-calendar-month-dayname {
531
+ width: 100%;
532
+ position: absolute;
533
+ font-size: 13px;
534
+ }
535
+ .tui-full-calendar-month-dayname-item {
536
+ height: 100%;
537
+ font-weight: bold;
538
+ }
539
+ .tui-full-calendar-month-week-item {
540
+ position: relative;
541
+ }
542
+ .tui-full-calendar-month-week-item>div {
543
+ height: 100%;
544
+ }
545
+ .tui-full-calendar-month-more {
546
+ height: inherit;
547
+ min-width: 280px;
548
+ min-height: 150px;
549
+ }
550
+ .tui-full-calendar-month-more-title {
551
+ position: relative;
552
+ }
553
+ .tui-full-calendar-month-more-title-day {
554
+ font-size: 23px;
555
+ color: #333;
556
+ }
557
+ .tui-full-calendar-month-more-title-day-label {
558
+ font-size: 12px;
559
+ color: #333;
560
+ }
561
+ .tui-full-calendar-month-more-close {
562
+ position: absolute;
563
+ right: 0;
564
+ outline: 0;
565
+ background: none;
566
+ border: 0;
567
+ font-size: 14px;
568
+ line-height: 28px;
569
+ padding: 0 7px;
570
+ cursor: pointer;
571
+ }
572
+ .tui-full-calendar-month-more-list {
573
+ overflow-y: auto;
574
+ }
575
+ .tui-full-calendar-month-more-schedule {
576
+ cursor: pointer;
577
+ display: block;
578
+ overflow: hidden;
579
+ white-space: nowrap;
580
+ text-overflow: ellipsis;
581
+ font-size: 12px;
582
+ }
583
+ .tui-full-calendar-month-guide-block {
584
+ position: absolute;
585
+ }
586
+ .tui-full-calendar-month-weekday-schedule {
587
+ margin-top: 2px;
588
+ }
589
+ .tui-full-calendar-month-creation-guide {
590
+ top: 0;
591
+ bottom: -1px;
592
+ left: -1px;
593
+ right: 0;
594
+ position: absolute;
595
+ z-index: 20;
596
+ }
597
+ .tui-full-calendar-month-guide-focused {
598
+ box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
599
+ }
600
+ .tui-full-calendar-month-guide {
601
+ position: relative;
602
+ padding-left: 3px;
603
+ line-height: 18px;
604
+ overflow: hidden;
605
+ white-space: nowrap;
606
+ text-overflow: ellipsis;
607
+ }
608
+ .tui-full-calendar-month-guide-cover {
609
+ width: 100%;
610
+ position: absolute;
611
+ top: -50%;
612
+ left: -50%;
613
+ background-color: rgba(0,0,0,0.2);
614
+ box-shadow: 0 2px 6px 0 rgba(0,0,0,0.1);
615
+ }
616
+ .tui-full-calendar-month-exceed-left .tui-full-calendar-month-guide {
617
+ margin-left: 0px;
618
+ }
619
+ .tui-full-calendar-month-exceed-right .tui-full-calendar-month-guide {
620
+ margin-right: 0px;
621
+ }
622
+ .tui-full-calendar-month-exceed-right .tui-full-calendar-month-guide-handle {
623
+ display: none;
624
+ }
625
+ .tui-full-calendar-month-guide-handle {
626
+ position: absolute;
627
+ top: 0;
628
+ right: 3px;
629
+ width: 6px;
630
+ background-position: 3px center;
631
+ cursor: col-resize;
632
+ }
633
+ .tui-full-calendar-vlayout-container {
634
+ position: relative;
635
+ }
636
+ .tui-full-calendar-splitter {
637
+ clear: left;
638
+ cursor: row-resize;
639
+ }
640
+ .tui-full-calendar-splitter:hover {
641
+ border-color: #999;
642
+ }
643
+ .tui-full-calendar-splitter-focused {
644
+ background-color: #ddd;
645
+ border: none;
646
+ }
647
+ .tui-full-calendar-splitter-guide {
648
+ position: absolute;
649
+ width: 100%;
650
+ height: 3px;
651
+ border: none;
652
+ background-color: #e8e8e8;
653
+ }
654
+ .tui-full-calendar-popup {
655
+ position: absolute;
656
+ font-weight: 2.5;
657
+ box-shadow: 0 2px 6px 0 rgba(0,0,0,0.1);
658
+ clear: both;
659
+ }
660
+ .tui-full-calendar-popup-container {
661
+ min-width: 474px;
662
+ box-shadow: 0 2px 6px 0 rgba(0,0,0,0.1);
663
+ background-color: #fff;
664
+ border: solid 1px #d5d5d5;
665
+ padding: 17px;
666
+ border-radius: 2px;
667
+ }
668
+ .tui-full-calendar-popup-section {
669
+ font-size: 0;
670
+ min-height: 40px;
671
+ }
672
+ .tui-full-calendar-section-calendar {
673
+ width: 176px;
674
+ }
675
+ .tui-full-calendar-section-calendar.tui-full-calendar-hide {
676
+ height: 21px;
677
+ visibility: hidden;
678
+ }
679
+ .tui-full-calendar-section-title {
680
+ width: calc(100% - 36px);
681
+ padding-right: 4px;
682
+ }
683
+ .tui-full-calendar-section-title input {
684
+ width: 365px;
685
+ }
686
+ .tui-full-calendar-button.tui-full-calendar-section-private {
687
+ height: 32px;
688
+ padding: 8px;
689
+ font-size: 0;
690
+ margin-left: 4px;
691
+ }
692
+ .tui-full-calendar-section-private.tui-full-calendar-public .tui-full-calendar-ic-private {
693
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAKdJREFUKBVjYCATMKLri46Olvn9+3fX////HUByjIyMB1hZWcuWLl36BFktikaQpl+/fl0EKhBCVgRkv2NjY9NH1syErABkE1TTdqBCWRAG8reDxKBycOUoGmHOA2pIA5kOwiA2SDVMDq4TmREaGvofhJHFcLHhfgwLC9sKNNULl0KQODCgtq1atcobxIY7lZAmkGJkNXCNIAlSwIjSCApqIgJnK0wNALoOPwSpOcq0AAAAAElFTkSuQmCC) no-repeat;
694
+ }
695
+ .tui-full-calendar-section-start-date,
696
+ .tui-full-calendar-section-end-date {
697
+ width: 176px;
698
+ }
699
+ .tui-full-calendar-section-start-date input,
700
+ .tui-full-calendar-section-end-date input {
701
+ width: 139px;
702
+ }
703
+ .tui-full-calendar-section-start-date:hover .tui-full-calendar-popup-section-item,
704
+ .tui-full-calendar-section-end-date:hover .tui-full-calendar-popup-section-item,
705
+ .tui-full-calendar-section-start-date:focus .tui-full-calendar-popup-section-item,
706
+ .tui-full-calendar-section-end-date:focus .tui-full-calendar-popup-section-item,
707
+ .tui-full-calendar-section-start-date:hover .tui-datepicker,
708
+ .tui-full-calendar-section-end-date:hover .tui-datepicker,
709
+ .tui-full-calendar-section-start-date:focus .tui-datepicker,
710
+ .tui-full-calendar-section-end-date:focus .tui-datepicker {
711
+ border-color: #bbb;
712
+ }
713
+ .tui-full-calendar-popup-section-item:focus {
714
+ border-color: #bbb;
715
+ }
716
+ .tui-full-calendar-section-date-dash {
717
+ font-size: 12px;
718
+ color: #d5d5d5;
719
+ height: 32px;
720
+ padding: 0 4px;
721
+ vertical-align: middle;
722
+ }
723
+ .tui-full-calendar-popup-section-item.tui-full-calendar-section-allday {
724
+ border: none;
725
+ padding: 0 0 0 8px;
726
+ cursor: pointer;
727
+ }
728
+ .tui-full-calendar-popup-section-item.tui-full-calendar-section-location {
729
+ display: block;
730
+ }
731
+ .tui-full-calendar-popup-section-item.tui-full-calendar-section-location input {
732
+ width: 400px;
733
+ }
734
+ .tui-full-calendar-section-allday .tui-full-calendar-icon.tui-full-calendar-ic-checkbox {
735
+ margin: 0;
736
+ }
737
+ .tui-full-calendar-popup-section-item.tui-full-calendar-section-allday .tui-full-calendar-content {
738
+ padding-left: 4px;
739
+ }
740
+ .tui-full-calendar-section-state {
741
+ width: 109px;
742
+ }
743
+ .tui-full-calendar-section-state .tui-full-calendar-content {
744
+ width: 58px;
745
+ text-overflow: ellipsis;
746
+ overflow: hidden;
747
+ }
748
+ .tui-full-calendar-popup-section-item {
749
+ height: 32px;
750
+ padding: 0 9px 0 12px;
751
+ border: 1px solid #d5d5d5;
752
+ display: inline-block;
753
+ font-size: 0;
754
+ border-radius: 2px;
755
+ }
756
+ .tui-full-calendar-popup-section-item:hover {
757
+ border-color: #bbb;
758
+ }
759
+ .tui-full-calendar-popup-section-item:focus {
760
+ border-color: #bbb;
761
+ }
762
+ .tui-full-calendar-popup-section-item .tui-full-calendar-icon {
763
+ position: relative;
764
+ }
765
+ .tui-full-calendar-icon.tui-full-calendar-ic-title {
766
+ top: 2px;
767
+ }
768
+ .tui-full-calendar-popup-section-item .tui-full-calendar-content {
769
+ text-align: left;
770
+ display: inline-block;
771
+ font-size: 12px;
772
+ vertical-align: middle;
773
+ position: relative;
774
+ padding-left: 8px;
775
+ }
776
+ .tui-full-calendar-section-calendar .tui-full-calendar-dropdown-button .tui-full-calendar-content {
777
+ width: 125px;
778
+ text-overflow: ellipsis;
779
+ overflow: hidden;
780
+ top: -1px;
781
+ }
782
+ .tui-full-calendar-popup-section-item input {
783
+ border: none;
784
+ height: 30px;
785
+ outline: none;
786
+ display: inline-block;
787
+ }
788
+ .tui-full-calendar-popup-section-item input::placeholder {
789
+ color: #bbb;
790
+ font-weight: 300;
791
+ }
792
+ .tui-full-calendar-dropdown {
793
+ position: relative;
794
+ }
795
+ .tui-full-calendar-dropdown:hover .tui-full-calendar-dropdown-button {
796
+ border: 1px solid #bbb;
797
+ }
798
+ .tui-full-calendar-dropdown-button.tui-full-calendar-popup-section-item {
799
+ height: 32px;
800
+ font-size: 0;
801
+ top: -1px;
802
+ }
803
+ .tui-full-calendar-dropdown-arrow {
804
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAHlJREFUKBVjYBgFOEOAEVkmPDxc89+/f6eAYjzI4kD2FyYmJrOVK1deh4kzwRggGiQBVJCELAZig8SQNYHEmEEEMrh69eo1HR0dfqCYJUickZGxf9WqVf3IakBsFBthklpaWmVA9mEQhrJhUoTp0NBQCRAmrHL4qgAAuu4cWZOZIGsAAAAASUVORK5CYII=) no-repeat;
805
+ }
806
+ .dropdown.open .tui-full-calendar-dropdown-arrow,
807
+ .tui-full-calendar-open .tui-full-calendar-dropdown-arrow {
808
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAIFJREFUKBVjYBj+gBmXF2NiYiTV1dV5rl279gWbGiZsgg0NDSw/f/5cCZRbBWJjU4PVRjExsR6g4nAgln/z5g3v1atXd6JrxtAYHh4e+v///z4khZa6urrXgJqvIYkxMCJzgJo0//37dwooxoMsDmR/YWJiMlu5cuV1NPFRLrYQAADMVCaUtbG7XwAAAABJRU5ErkJggg==) no-repeat;
809
+ }
810
+ .tui-full-calendar-dropdown-menu {
811
+ position: absolute;
812
+ top: 31px;
813
+ padding: 4px 0;
814
+ background-color: #fff;
815
+ border: 1px solid #d5d5d5;
816
+ border-top: none;
817
+ border-radius: 0 0 2px 2px;
818
+ width: 100%;
819
+ }
820
+ .tui-full-calendar-dropdown:hover .tui-full-calendar-dropdown-menu {
821
+ border: 1px solid #bbb;
822
+ border-top: none;
823
+ }
824
+ .tui-full-calendar-dropdown-menu {
825
+ display: none;
826
+ }
827
+ .tui-full-calendar-open .tui-full-calendar-dropdown-menu {
828
+ display: block;
829
+ }
830
+ .tui-full-calendar-dropdown-menu-item {
831
+ height: 30px;
832
+ border: none;
833
+ cursor: pointer;
834
+ }
835
+ .tui-full-calendar-section-calendar .tui-full-calendar-dropdown-menu-item {
836
+ width: 100%;
837
+ }
838
+ .tui-full-calendar-section-state .tui-full-calendar-dropdown-menu-item {
839
+ width: 100%;
840
+ }
841
+ .tui-full-calendar-dropdown-menu-item:hover {
842
+ background-color: rgba(81,92,230,0.05);
843
+ }
844
+ .tui-full-calendar-dropdown-menu-item .tui-full-calendar-content {
845
+ line-height: 30px;
846
+ }
847
+ .tui-full-calendar-button.tui-full-calendar-popup-close {
848
+ position: absolute;
849
+ top: 10px;
850
+ right: 10px;
851
+ background-color: #fff;
852
+ padding: 2px;
853
+ border: none;
854
+ }
855
+ .tui-full-calendar-section-button-save {
856
+ height: 36px;
857
+ }
858
+ .tui-full-calendar-popup-save {
859
+ float: right;
860
+ }
861
+ .tui-full-calendar-popup-arrow-border,
862
+ .tui-full-calendar-popup-arrow-fill {
863
+ position: absolute;
864
+ }
865
+ .tui-full-calendar-arrow-top .tui-full-calendar-popup-arrow-border {
866
+ border-top: none;
867
+ border-right: 8px solid transparent;
868
+ border-bottom: 8px solid #d5d5d5;
869
+ border-left: 8px solid transparent;
870
+ left: calc(50% - 8px);
871
+ top: -7px;
872
+ }
873
+ .tui-full-calendar-arrow-right .tui-full-calendar-popup-arrow-border {
874
+ border-top: 8px solid transparent;
875
+ border-right: none;
876
+ border-bottom: 8px solid transparent;
877
+ border-left: 8px solid #d5d5d5;
878
+ top: calc(50% - 8px);
879
+ right: -7px;
880
+ }
881
+ .tui-full-calendar-arrow-bottom .tui-full-calendar-popup-arrow-border {
882
+ border-top: 8px solid #d5d5d5;
883
+ border-right: 8px solid transparent;
884
+ border-bottom: none;
885
+ border-left: 8px solid transparent;
886
+ left: calc(50% - 8px);
887
+ bottom: -7px;
888
+ }
889
+ .tui-full-calendar-arrow-left .tui-full-calendar-popup-arrow-border {
890
+ border-top: 8px solid transparent;
891
+ border-right: 8px solid #d5d5d5;
892
+ border-bottom: 8px solid transparent;
893
+ border-left: none;
894
+ top: calc(50% - 8px);
895
+ left: -7px;
896
+ }
897
+ .tui-full-calendar-arrow-top .tui-full-calendar-popup-arrow-fill {
898
+ border-top: none;
899
+ border-right: 7px solid transparent;
900
+ border-bottom: 7px solid #fff;
901
+ border-left: 7px solid transparent;
902
+ left: -7px;
903
+ top: 1px;
904
+ }
905
+ .tui-full-calendar-arrow-right .tui-full-calendar-popup-arrow-fill {
906
+ border-top: 7px solid transparent;
907
+ border-right: none;
908
+ border-bottom: 7px solid transparent;
909
+ border-left: 7px solid #fff;
910
+ top: -7px;
911
+ right: 1px;
912
+ }
913
+ .tui-full-calendar-arrow-bottom .tui-full-calendar-popup-arrow-fill {
914
+ border-top: 7px solid #fff;
915
+ border-right: 7px solid transparent;
916
+ border-bottom: none;
917
+ border-left: 7px solid transparent;
918
+ left: -7px;
919
+ bottom: 1px;
920
+ }
921
+ .tui-full-calendar-arrow-left .tui-full-calendar-popup-arrow-fill {
922
+ border-top: 7px solid transparent;
923
+ border-right: 7px solid #fff;
924
+ border-bottom: 7px solid transparent;
925
+ border-left: none;
926
+ top: -7px;
927
+ left: 1px;
928
+ }
929
+ .tui-full-calendar-button {
930
+ background: #fff;
931
+ border: 1px solid #d5d5d5;
932
+ border-radius: 2px;
933
+ text-align: center;
934
+ outline: none;
935
+ font-size: 12px;
936
+ cursor: pointer;
937
+ color: #333;
938
+ }
939
+ .tui-full-calendar-button:hover {
940
+ border-color: #bbb;
941
+ color: #333;
942
+ }
943
+ .tui-full-calendar-button:active {
944
+ background: #f9f9f9;
945
+ color: #333;
946
+ }
947
+ .tui-full-calendar-button .round {
948
+ border-radius: 25px;
949
+ }
950
+ .tui-full-calendar-confirm {
951
+ width: 96px;
952
+ height: 36px;
953
+ border-radius: 40px;
954
+ background-color: #ff6618;
955
+ font-size: 12px;
956
+ font-weight: bold;
957
+ color: #fff;
958
+ border: none;
959
+ }
960
+ .tui-full-calendar-confirm:hover {
961
+ background-color: #e55b15;
962
+ color: #fff;
963
+ }
964
+ .tui-full-calendar-confirm:active {
965
+ background-color: #d95614;
966
+ color: #fff;
967
+ }
968
+ .tui-full-calendar-icon.tui-full-calendar-right {
969
+ float: right;
970
+ top: 1px;
971
+ }
972
+ .tui-full-calendar-icon .tui-full-calendar-none {
973
+ display: none;
974
+ }
975
+ .tui-full-calendar-icon.tui-full-calendar-calendar-dot {
976
+ border-radius: 8px;
977
+ width: 12px;
978
+ height: 12px;
979
+ margin: 1px;
980
+ }
981
+ input[type='checkbox'].tui-full-calendar-checkbox-square {
982
+ display: none;
983
+ }
984
+ input[type='checkbox'].tui-full-calendar-checkbox-square + span {
985
+ display: inline-block;
986
+ cursor: pointer;
987
+ line-height: 14px;
988
+ margin-right: 8px;
989
+ width: 14px;
990
+ height: 14px;
991
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAADpJREFUKBVjPHfu3O5///65MJAAmJiY9jCcOXPmP6kApIeJBItQlI5qRAkOVM5o4KCGBwqPkcxEvhsAbzRE+Jhb9IwAAAAASUVORK5CYII=) no-repeat;
992
+ vertical-align: middle;
993
+ }
994
+ input[type='checkbox'].tui-full-calendar-checkbox-square:checked + span {
995
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAMBJREFUKBWVkjEOwjAMRe2WgZW7IIHEDdhghhuwcQ42rlJugAQS54Cxa5cq1QM5TUpByZfS2j9+dlJVt/tX5ZxbS4ZU9VLkQvSHKTIGRaVJYFmKrBbTCJxE2UgCdDzMZDkHrOV6b95V0US6UmgKodujEZbJg0B0ZgEModO5lrY1TMQf1TpyJGBEjD+E2NPN7ukIUDiF/BfEXgRiGEw8NgkffYGYwCi808fpn/6OvfUfsDr/Vc1IfRf8sKnFVqeiVQfDu0tf/nWH9gAAAABJRU5ErkJggg==) no-repeat;
996
+ }
997
+ input[type='checkbox'].tui-full-calendar-checkbox-round {
998
+ display: none;
999
+ }
1000
+ input[type='checkbox'].tui-full-calendar-checkbox-round + span {
1001
+ display: inline-block;
1002
+ cursor: pointer;
1003
+ width: 14px;
1004
+ height: 14px;
1005
+ line-height: 14px;
1006
+ vertical-align: middle;
1007
+ margin-right: 8px;
1008
+ border-radius: 8px;
1009
+ border: solid 2px;
1010
+ background: transparent;
1011
+ }
1012
+ .tui-full-calendar-popup-top-line {
1013
+ position: absolute;
1014
+ border-radius: 2px 2px 0 0;
1015
+ width: 100%;
1016
+ height: 4px;
1017
+ border: none;
1018
+ top: 0;
1019
+ }
1020
+ .tui-full-calendar-popup-detail .tui-full-calendar-popup-container {
1021
+ width: 301px;
1022
+ min-width: 301px;
1023
+ padding-bottom: 0;
1024
+ }
1025
+ .tui-full-calendar-popup-detail .tui-full-calendar-icon {
1026
+ width: 12px;
1027
+ height: 12px;
1028
+ background-size: 12px;
1029
+ position: relative;
1030
+ }
1031
+ .tui-full-calendar-popup-detail .tui-full-calendar-icon {
1032
+ margin-right: 8px;
1033
+ }
1034
+ .tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-ic-location-b {
1035
+ top: -2px;
1036
+ }
1037
+ .tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-ic-user-b {
1038
+ top: -2px;
1039
+ }
1040
+ .tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-ic-state-b {
1041
+ top: -1px;
1042
+ }
1043
+ .tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-calendar-dot {
1044
+ width: 10px;
1045
+ height: 10px;
1046
+ margin-right: 8px;
1047
+ top: -1px;
1048
+ }
1049
+ .tui-full-calendar-popup-detail .tui-full-calendar-content {
1050
+ line-height: 24px;
1051
+ height: 24px;
1052
+ font-size: 12px;
1053
+ line-height: 2;
1054
+ }
1055
+ .tui-full-calendar-popup-detail .tui-full-calendar-section-header {
1056
+ margin-bottom: 6px;
1057
+ }
1058
+ .tui-full-calendar-popup-detail .tui-full-calendar-popup-detail-item-separate {
1059
+ margin-top: 4px;
1060
+ }
1061
+ .tui-full-calendar-popup-detail .tui-full-calendar-popup-detail-item-indent {
1062
+ text-indent: -20px;
1063
+ padding-left: 20px;
1064
+ }
1065
+ .tui-full-calendar-popup-detail .tui-full-calendar-schedule-title {
1066
+ font-size: 15px;
1067
+ font-weight: bold;
1068
+ line-height: 1.6;
1069
+ word-break: break-all;
1070
+ }
1071
+ .tui-full-calendar-popup-detail .tui-full-calendar-schedule-private {
1072
+ display: none;
1073
+ width: 16px;
1074
+ height: 16px;
1075
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAKpJREFUKBVjYCATMKLri46Olvn9+3fX////HUByjIyMB1hZWcuWLl36BFktikaQpl+/fl0EKhBCVgRkv2NjY9NH1syErABkE1TTdqBCWRAG8reDxKBycOUoGmHOA2pIA5kOwiA2SDVMDqYTRSNQUBIkgewkJDZYDqYR7sewsLCtQFO9YBLYaGBAbVu1apU3SA5uIyFNIMXIauAaQRKkgBGlERTURATOVpgaABRQQOK46wEAAAAAAElFTkSuQmCC) no-repeat 16px;
1076
+ }
1077
+ .tui-full-calendar-popup-detail .tui-full-calendar-schedule-private .tui-full-calendar-ic-private {
1078
+ display: block;
1079
+ }
1080
+ .tui-full-calendar-popup-detail .tui-full-calendar-section-detail {
1081
+ margin-bottom: 16px;
1082
+ }
1083
+ .tui-full-calendar-popup-detail .tui-full-calendar-section-button {
1084
+ border-top: 1px solid #e5e5e5;
1085
+ font-size: 0;
1086
+ }
1087
+ .tui-full-calendar-section-button .tui-full-calendar-icon {
1088
+ margin-right: 4px;
1089
+ top: -3px;
1090
+ }
1091
+ .tui-full-calendar-section-button .tui-full-calendar-content {
1092
+ position: relative;
1093
+ top: 2px;
1094
+ }
1095
+ .tui-full-calendar-popup-edit,
1096
+ .tui-full-calendar-popup-delete {
1097
+ display: inline-block;
1098
+ padding: 7px 9px 11px 9px;
1099
+ width: calc(50% - 1px);
1100
+ outline: none;
1101
+ background: none;
1102
+ border: none;
1103
+ cursor: pointer;
1104
+ }
1105
+ .tui-full-calendar-popup-vertical-line {
1106
+ background: #e5e5e5;
1107
+ width: 1px;
1108
+ height: 14px;
1109
+ vertical-align: middle;
1110
+ display: inline-block;
1111
+ margin-top: -7px;
1112
+ }
1113
+ .tui-datepicker {
1114
+ left: -12px;
1115
+ z-index: 1;
1116
+ border-color: #d5d5d5;
1117
+ }
1118
+ .tui-full-calendar-icon {
1119
+ width: 14px;
1120
+ height: 14px;
1121
+ display: inline-block;
1122
+ vertical-align: middle;
1123
+ }
1124
+ .tui-full-calendar-icon.tui-full-calendar-ic-title {
1125
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAO5JREFUKBVjYCATMOLSFxkZqfHnz5+1QHktNDVbV69e7cOCJgjmQjXtB3IksMh7g8SY0CXQNTEyMlYD1fBCabhyFI3omkCq/v//PwnotC8gGq4LyIBrxKYJpBBoU15oaCgPiEbWCPYjUEIFGBBY/QS0qRWooRVIg/UBDXgMYoBtBHJSgWxsAQFWjET8BBqQBuLDNM4Can6GpAAb8ydQMADo3x0gSbDGlStX3gVqdMSjGUUTSCNKAggPD1cDOmU/EEuBJKEAQxNIHEUjSABNM1ZNIHXMIAIZXL169a2+vv5moK18QKeXAv20B1meYjYAr7xrljpOzc0AAAAASUVORK5CYII=) no-repeat;
1126
+ }
1127
+ .tui-full-calendar-icon.tui-full-calendar-ic-location {
1128
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAR1JREFUKBWdUTtPg1AUBiT8CydHJtv/0MTJRWAgcTK1bq0/pO3k4E4IYLo2Me46tS4wumjSpV07kAb6HXLPzaGPRZLL+c73uE/D+OdnHuaCIOhVVTUEf620pWVZ0yRJ3qW3FfR9f1zX9UgaGJumOUnT9Fn3DDzPuwPOuD9TvSzL3kizhOFJ4LnjOJc0wM0FP2Asgx0mEehHUfRHgzDzqF3GOogzbJg8V6XHFqYv4Cvqy7J8DcOwWYmw8Hwy1kHMRjcaKuEGgV82caWbZay3indagJyxcKLOlKeRdJA627YfUVaN0v6tlKbZVjCO4zW2cw91px3AxJEmOONCNoTzPP9xXZfOd6u0Bzz60RGOgmQuiuIb4S3gB0IvaoJW2QMDs1bBoH1CAQAAAABJRU5ErkJggg==) no-repeat;
1129
+ }
1130
+ .tui-full-calendar-icon.tui-full-calendar-ic-date {
1131
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAGpJREFUKBVjYKAGCA0N/Q/C6GZhE2cEKQoLC9v6//9/L3QN2PiMjIzbVq1a5c0EkiRWE7JasEZsJhMSI1sjC7LJq1evBvsZWQyZjRxwZNs4hDSiBA6y55EDBRsb7EdQasAmiUNsKw5x4oQBkUAeDPJ53KsAAAAASUVORK5CYII=) no-repeat;
1132
+ }
1133
+ .tui-full-calendar-icon.tui-full-calendar-ic-state {
1134
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAIxJREFUKBVjYCATMKLrCw8P9/z3798soLgMVO4JExNT2sqVK7cjq2VC5oDYME2MjIyNIAwUkoGKoShlQeFBOGCbVq1a1QDihoaG1gMpmO0gITAAOzUsLGzr////vWCC+GigK7YBDfUGO5VYTSADYWox/IjPNmS5UY3IoYHGBgcOKG7QxPFxt+KTJCgHAGcZJbGLRuJ2AAAAAElFTkSuQmCC) no-repeat;
1135
+ }
1136
+ .tui-full-calendar-icon.tui-full-calendar-ic-private {
1137
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAKpJREFUKBVjYCATMKLri46Olvn9+3fX////HUByjIyMB1hZWcuWLl36BFktikaQpl+/fl0EKhBCVgRkv2NjY9NH1syErABkE1TTdqBCWRAG8reDxKBycOUoGmHOA2pIA5kOwiA2SDVMDqYTRSNQUBIkgewkJDZYDqYR7sewsLCtQFO9YBLYaGBAbVu1apU3SA5uIyFNIMXIauAaQRKkgBGlERTURATOVpgaABRQQOK46wEAAAAAAElFTkSuQmCC) no-repeat;
1138
+ }
1139
+ .tui-full-calendar-icon.tui-full-calendar-ic-public {
1140
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAKdJREFUKBVjYCATMKLri46Olvn9+3fX////HUByjIyMB1hZWcuWLl36BFktikaQpl+/fl0EKhBCVgRkv2NjY9NH1syErABkE1TTdqBCWRAG8reDxKBycOUoGmHOA2pIA5kOwiA2SDVMDq4TmREaGvofhJHFcLHhfgwLC9sKNNULl0KQODCgtq1atcobxIY7lZAmkGJkNXCNIAlSwIjSCApqIgJnK0wNALoOPwSpOcq0AAAAAElFTkSuQmCC) no-repeat;
1141
+ }
1142
+ .tui-full-calendar-icon.tui-full-calendar-ic-close {
1143
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAJRJREFUKBXFkNERhCAMREUbuEKohzq0Eq2DDq6Da4B60KezDORkxj+ZwchmX0IYhtdWCGFl9y5g82NtzDnPdzAaudo76ZBS+nrvPxiInMkJcs5tMcZFfqcfxdqIRiELof+BiIJPg+mExmpmvKRn3zKj7OrG9Y79szPL14A1xEP0Hgy4gBZS5R7czHj3ehSgOzkVeyfuGrBw/WLm0hsAAAAASUVORK5CYII=) no-repeat;
1144
+ }
1145
+ .tui-full-calendar-ic-location-b {
1146
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAOZJREFUKBWVUT0KwjAUbkzGTuJWPYNDpV0cXD2ETuIRBK+gs4ubp3BwcXBp6eINBKWDgydoid9X8oKCggYeee/7S9IGwZ9LverTNO3Wdb2y1o6IK6WOWutFlmU30XmDE58hbgvpTA+Y+mJqCemS20jdG2N6LPYMICc6b5BrIG3ONBZ7CoVj7w0cfllGRDj+gKQpjt/iPU0ye/LkROcNANaoCUzjqqquIsBuHddAWoiyLO9RFHUwJ4JxR/qmKIqdYG9vCMNwCeIiJHuHecj/B0GSJBng7ifO+ErDPM8L4b7ucRzPWJ8ET1E7YC7tmi9qAAAAAElFTkSuQmCC);
1147
+ }
1148
+ .tui-full-calendar-ic-state-b {
1149
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAHlJREFUKBVjYCARMCKrNzEx8QTyZ/3//18GJM7IyPgESKWdOXNmO4gPAkwQCk6CFQMVNoIwVOMsuCw6w9jY+D8Iw8TR+SBxsJOATtkKNM0LphAbDbRxG9Bp3mAnEVIMMgCmBt0P2AxHERusGkAhgOJQ7Jyt2IUJiAIAwwIn24FgmhkAAAAASUVORK5CYII=);
1150
+ }
1151
+ .tui-full-calendar-icon.tui-full-calendar-ic-user-b {
1152
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAJpJREFUKBVjYKA1YES3wMTExBMoNgsqnnbmzJntyGqYkDlQ9qz////LgDCQD9MIV4ZNA1wSGwObhjRGRsYnIAzUkIZNE0licE+bm5tr/fnzJx1osjPQBFmoKY+BftnLwsIy8+TJk9dAYmANxsbGoUD2YiBmBwliAT+BYrFnz55dDfNDO1AAl2KQfpAcSA0DTIMyiEMAEKMG0wgAolIjcM7Tjm8AAAAASUVORK5CYII=);
1153
+ }
1154
+ .tui-full-calendar-icon.tui-full-calendar-ic-edit {
1155
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAMdJREFUKBVjYCARMOJTb2xsLMfIyBjLysq64Pjx409BapnwaQDKzf7//3/L79+/D1tbW0uB1LJg02BmZqYIVPgdKBf/79+//UC2xs+fP8OB/H4MG0CK//79ewCkEGQYExOTI5DawMnJuQTER/EDTDFQXA4kCQQ3QBpOnz79AsJF8gMWxTA1KDTYBhyKMUwH6WSysrKSB7kZyIY5AySOVTFIggno+5VAmijFYA1AwhzEgAKcJsMUwIMVGKPH2NnZ7ZFDBKYImQYAuO5YIMgk39gAAAAASUVORK5CYII=);
1156
+ }
1157
+ .tui-full-calendar-icon.tui-full-calendar-ic-delete {
1158
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAFhJREFUKBVjYCARMKKrNzEx2fr//38vkDgjI+O2M2fOeCOrAWtAVoQsicyGaWZCFsTHBtr6H588Tjm4H4yNjfGacPbsWbBaop0Es3JYaQBFDMxjWOitMDEA3EEZfFEISwUAAAAASUVORK5CYII=);
1159
+ }
1160
+ .tui-full-calendar-icon.tui-full-calendar-ic-arrow-solid-top {
1161
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAIFJREFUKBVjYBj+gBmXF2NiYiTV1dV5rl279gWbGiZsgg0NDSw/f/5cCZRbBWJjU4PVRjExsR6g4nAgln/z5g3v1atXd6JrxtAYHh4e+v///z4khZa6urrXgJqvIYkxMCJzgJo0//37dwooxoMsDmR/YWJiMlu5cuV1NPFRLrYQAADMVCaUtbG7XwAAAABJRU5ErkJggg==) no-repeat;
1162
+ }
1163
+ .tui-full-calendar-icon.tui-full-calendar-ic-milestone {
1164
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAGFJREFUKBVjYCARMILU/3dw+I+hj5FxG+P+/d7o4rg1IKtE0syELI6T/f+/F0yOOA0w1UCa9hpYkGxjYDxwABwIILH/jo5bGWBuZ2TcClOHogEmCKKxBSlInPZ+ANlCEgAA37EU4AHbBQUAAAAASUVORK5CYII=) no-repeat;
1165
+ }
1166
+ .tui-full-calendar-icon.tui-full-calendar-ic-arrow-left {
1167
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAHCAYAAAAvZezQAAAAAXNSR0IArs4c6QAAAFZJREFUCB1jZICCyspK83///hUxgvhVVVV6f//+3c3ExJTMVFNTowqU2cHMzJzf3t6+hen379/zgIp2t7W1rQCpZmJlZU0C0q5AbREgAQwzwAIgGZgtADMCJqH/QyvhAAAAAElFTkSuQmCC) no-repeat;
1168
+ }
1169
+ .tui-full-calendar-icon.tui-full-calendar-ic-arrow-right {
1170
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAHCAYAAAAvZezQAAAAAXNSR0IArs4c6QAAAFxJREFUCB1jKC8vX1lZWWnOAAVMQLD4379/m6qqqvRAYowgAsiJAAr2sbCw2IMFQIIVFRUL////r8SCpMKVlZXVnhFooA9Q+VxmZmbXtra2S0xATizQYD8QB6QaAJMLJ9BqE9yTAAAAAElFTkSuQmCC) no-repeat;
1171
+ }
1172
+ .tui-full-calendar-ic-repeat-b {
1173
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAQpJREFUKBVjYCARMCKrNzU1tf/3718lUMwQiP8yMjKeYWJi6j516tRhExOThjNnzjTANQAFqv///98CVHQPSO8A0ixATa5AtjyQPgDETmfPngULMpiZmbn//fu3BSg4B6ggCyjxG8hm8PT0ZH/9+vUJoJgTiA8CTCACqDgXaOJ9Xl7eTJhikDhQcSVQsQGITT8A9rSxsfF/mJVApzWCQgPGd3BwYPny5cstoNOuAZ3rAwoJOAAqviAqKtoOEwAaxPr58+dpQL4iEGeAxJFt2AfkOwA1PQTSu4Em/gGyPYC0EpCuAdraCtIADiWgQCPQOmdmZmYHoNgVoCJfIB0CpG8DI84BphgoRjoAAAzgdELI91E5AAAAAElFTkSuQmCC);
1174
+ }
1175
+ /*# sourceMappingURL=src/css/main.css.map */
1176
+
1177
+ /*# sourceMappingURL=tui-calendar.css.map*/