@lanrenbang/basecoat-ultra 0.1.4 → 0.1.6

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.
@@ -1,7 +1,802 @@
1
1
  /* Flatpickr Overrides (Basecoat Style) */
2
2
  /* No @apply used here to avoid Tailwind dependency in this specific file */
3
3
 
4
- @import url("../../node_modules/flatpickr/dist/flatpickr.css");
4
+ .flatpickr-calendar {
5
+ background: transparent;
6
+ opacity: 0;
7
+ display: none;
8
+ text-align: center;
9
+ visibility: hidden;
10
+ padding: 0;
11
+ -webkit-animation: none;
12
+ animation: none;
13
+ direction: ltr;
14
+ border: 0;
15
+ font-size: 14px;
16
+ line-height: 24px;
17
+ border-radius: 5px;
18
+ position: absolute;
19
+ width: 307.875px;
20
+ -webkit-box-sizing: border-box;
21
+ box-sizing: border-box;
22
+ -ms-touch-action: manipulation;
23
+ touch-action: manipulation;
24
+ background: #fff;
25
+ -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
26
+ box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
27
+ }
28
+ .flatpickr-calendar.open,
29
+ .flatpickr-calendar.inline {
30
+ opacity: 1;
31
+ max-height: 640px;
32
+ visibility: visible;
33
+ }
34
+ .flatpickr-calendar.open {
35
+ display: inline-block;
36
+ z-index: 99999;
37
+ }
38
+ .flatpickr-calendar.animate.open {
39
+ -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
40
+ animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
41
+ }
42
+ .flatpickr-calendar.inline {
43
+ display: block;
44
+ position: relative;
45
+ top: 2px;
46
+ }
47
+ .flatpickr-calendar.static {
48
+ position: absolute;
49
+ top: calc(100% + 2px);
50
+ }
51
+ .flatpickr-calendar.static.open {
52
+ z-index: 999;
53
+ display: block;
54
+ }
55
+ .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
56
+ -webkit-box-shadow: none !important;
57
+ box-shadow: none !important;
58
+ }
59
+ .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
60
+ -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
61
+ box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
62
+ }
63
+ .flatpickr-calendar .hasWeeks .dayContainer,
64
+ .flatpickr-calendar .hasTime .dayContainer {
65
+ border-bottom: 0;
66
+ border-bottom-right-radius: 0;
67
+ border-bottom-left-radius: 0;
68
+ }
69
+ .flatpickr-calendar .hasWeeks .dayContainer {
70
+ border-left: 0;
71
+ }
72
+ .flatpickr-calendar.hasTime .flatpickr-time {
73
+ height: 40px;
74
+ border-top: 1px solid #e6e6e6;
75
+ }
76
+ .flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
77
+ height: auto;
78
+ }
79
+ .flatpickr-calendar:before,
80
+ .flatpickr-calendar:after {
81
+ position: absolute;
82
+ display: block;
83
+ pointer-events: none;
84
+ border: solid transparent;
85
+ content: '';
86
+ height: 0;
87
+ width: 0;
88
+ left: 22px;
89
+ }
90
+ .flatpickr-calendar.rightMost:before,
91
+ .flatpickr-calendar.arrowRight:before,
92
+ .flatpickr-calendar.rightMost:after,
93
+ .flatpickr-calendar.arrowRight:after {
94
+ left: auto;
95
+ right: 22px;
96
+ }
97
+ .flatpickr-calendar.arrowCenter:before,
98
+ .flatpickr-calendar.arrowCenter:after {
99
+ left: 50%;
100
+ right: 50%;
101
+ }
102
+ .flatpickr-calendar:before {
103
+ border-width: 5px;
104
+ margin: 0 -5px;
105
+ }
106
+ .flatpickr-calendar:after {
107
+ border-width: 4px;
108
+ margin: 0 -4px;
109
+ }
110
+ .flatpickr-calendar.arrowTop:before,
111
+ .flatpickr-calendar.arrowTop:after {
112
+ bottom: 100%;
113
+ }
114
+ .flatpickr-calendar.arrowTop:before {
115
+ border-bottom-color: #e6e6e6;
116
+ }
117
+ .flatpickr-calendar.arrowTop:after {
118
+ border-bottom-color: #fff;
119
+ }
120
+ .flatpickr-calendar.arrowBottom:before,
121
+ .flatpickr-calendar.arrowBottom:after {
122
+ top: 100%;
123
+ }
124
+ .flatpickr-calendar.arrowBottom:before {
125
+ border-top-color: #e6e6e6;
126
+ }
127
+ .flatpickr-calendar.arrowBottom:after {
128
+ border-top-color: #fff;
129
+ }
130
+ .flatpickr-calendar:focus {
131
+ outline: 0;
132
+ }
133
+ .flatpickr-wrapper {
134
+ position: relative;
135
+ display: inline-block;
136
+ }
137
+ .flatpickr-months {
138
+ display: -webkit-box;
139
+ display: -webkit-flex;
140
+ display: -ms-flexbox;
141
+ display: flex;
142
+ }
143
+ .flatpickr-months .flatpickr-month {
144
+ background: transparent;
145
+ color: rgba(0,0,0,0.9);
146
+ fill: rgba(0,0,0,0.9);
147
+ height: 34px;
148
+ line-height: 1;
149
+ text-align: center;
150
+ position: relative;
151
+ -webkit-user-select: none;
152
+ -moz-user-select: none;
153
+ -ms-user-select: none;
154
+ user-select: none;
155
+ overflow: hidden;
156
+ -webkit-box-flex: 1;
157
+ -webkit-flex: 1;
158
+ -ms-flex: 1;
159
+ flex: 1;
160
+ }
161
+ .flatpickr-months .flatpickr-prev-month,
162
+ .flatpickr-months .flatpickr-next-month {
163
+ -webkit-user-select: none;
164
+ -moz-user-select: none;
165
+ -ms-user-select: none;
166
+ user-select: none;
167
+ text-decoration: none;
168
+ cursor: pointer;
169
+ position: absolute;
170
+ top: 0;
171
+ height: 34px;
172
+ padding: 10px;
173
+ z-index: 3;
174
+ color: rgba(0,0,0,0.9);
175
+ fill: rgba(0,0,0,0.9);
176
+ }
177
+ .flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
178
+ .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
179
+ display: none;
180
+ }
181
+ .flatpickr-months .flatpickr-prev-month i,
182
+ .flatpickr-months .flatpickr-next-month i {
183
+ position: relative;
184
+ }
185
+ .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
186
+ .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
187
+ /*
188
+ /*rtl:begin:ignore*/
189
+ /*
190
+ */
191
+ left: 0;
192
+ /*
193
+ /*rtl:end:ignore*/
194
+ /*
195
+ */
196
+ }
197
+ /*
198
+ /*rtl:begin:ignore*/
199
+ /*
200
+ /*rtl:end:ignore*/
201
+ .flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
202
+ .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
203
+ /*
204
+ /*rtl:begin:ignore*/
205
+ /*
206
+ */
207
+ right: 0;
208
+ /*
209
+ /*rtl:end:ignore*/
210
+ /*
211
+ */
212
+ }
213
+ /*
214
+ /*rtl:begin:ignore*/
215
+ /*
216
+ /*rtl:end:ignore*/
217
+ .flatpickr-months .flatpickr-prev-month:hover,
218
+ .flatpickr-months .flatpickr-next-month:hover {
219
+ color: #959ea9;
220
+ }
221
+ .flatpickr-months .flatpickr-prev-month:hover svg,
222
+ .flatpickr-months .flatpickr-next-month:hover svg {
223
+ fill: #f64747;
224
+ }
225
+ .flatpickr-months .flatpickr-prev-month svg,
226
+ .flatpickr-months .flatpickr-next-month svg {
227
+ width: 14px;
228
+ height: 14px;
229
+ }
230
+ .flatpickr-months .flatpickr-prev-month svg path,
231
+ .flatpickr-months .flatpickr-next-month svg path {
232
+ -webkit-transition: fill 0.1s;
233
+ transition: fill 0.1s;
234
+ fill: inherit;
235
+ }
236
+ .numInputWrapper {
237
+ position: relative;
238
+ height: auto;
239
+ }
240
+ .numInputWrapper input,
241
+ .numInputWrapper span {
242
+ display: inline-block;
243
+ }
244
+ .numInputWrapper input {
245
+ width: 100%;
246
+ }
247
+ .numInputWrapper input::-ms-clear {
248
+ display: none;
249
+ }
250
+ .numInputWrapper input::-webkit-outer-spin-button,
251
+ .numInputWrapper input::-webkit-inner-spin-button {
252
+ margin: 0;
253
+ -webkit-appearance: none;
254
+ }
255
+ .numInputWrapper span {
256
+ position: absolute;
257
+ right: 0;
258
+ width: 14px;
259
+ padding: 0 4px 0 2px;
260
+ height: 50%;
261
+ line-height: 50%;
262
+ opacity: 0;
263
+ cursor: pointer;
264
+ border: 1px solid rgba(57,57,57,0.15);
265
+ -webkit-box-sizing: border-box;
266
+ box-sizing: border-box;
267
+ }
268
+ .numInputWrapper span:hover {
269
+ background: rgba(0,0,0,0.1);
270
+ }
271
+ .numInputWrapper span:active {
272
+ background: rgba(0,0,0,0.2);
273
+ }
274
+ .numInputWrapper span:after {
275
+ display: block;
276
+ content: "";
277
+ position: absolute;
278
+ }
279
+ .numInputWrapper span.arrowUp {
280
+ top: 0;
281
+ border-bottom: 0;
282
+ }
283
+ .numInputWrapper span.arrowUp:after {
284
+ border-left: 4px solid transparent;
285
+ border-right: 4px solid transparent;
286
+ border-bottom: 4px solid rgba(57,57,57,0.6);
287
+ top: 26%;
288
+ }
289
+ .numInputWrapper span.arrowDown {
290
+ top: 50%;
291
+ }
292
+ .numInputWrapper span.arrowDown:after {
293
+ border-left: 4px solid transparent;
294
+ border-right: 4px solid transparent;
295
+ border-top: 4px solid rgba(57,57,57,0.6);
296
+ top: 40%;
297
+ }
298
+ .numInputWrapper span svg {
299
+ width: inherit;
300
+ height: auto;
301
+ }
302
+ .numInputWrapper span svg path {
303
+ fill: rgba(0,0,0,0.5);
304
+ }
305
+ .numInputWrapper:hover {
306
+ background: rgba(0,0,0,0.05);
307
+ }
308
+ .numInputWrapper:hover span {
309
+ opacity: 1;
310
+ }
311
+ .flatpickr-current-month {
312
+ font-size: 135%;
313
+ line-height: inherit;
314
+ font-weight: 300;
315
+ color: inherit;
316
+ position: absolute;
317
+ width: 75%;
318
+ left: 12.5%;
319
+ padding: 7.48px 0 0 0;
320
+ line-height: 1;
321
+ height: 34px;
322
+ display: inline-block;
323
+ text-align: center;
324
+ -webkit-transform: translate3d(0px, 0px, 0px);
325
+ transform: translate3d(0px, 0px, 0px);
326
+ }
327
+ .flatpickr-current-month span.cur-month {
328
+ font-family: inherit;
329
+ font-weight: 700;
330
+ color: inherit;
331
+ display: inline-block;
332
+ margin-left: 0.5ch;
333
+ padding: 0;
334
+ }
335
+ .flatpickr-current-month span.cur-month:hover {
336
+ background: rgba(0,0,0,0.05);
337
+ }
338
+ .flatpickr-current-month .numInputWrapper {
339
+ width: 6ch;
340
+ width: 7ch\0;
341
+ display: inline-block;
342
+ }
343
+ .flatpickr-current-month .numInputWrapper span.arrowUp:after {
344
+ border-bottom-color: rgba(0,0,0,0.9);
345
+ }
346
+ .flatpickr-current-month .numInputWrapper span.arrowDown:after {
347
+ border-top-color: rgba(0,0,0,0.9);
348
+ }
349
+ .flatpickr-current-month input.cur-year {
350
+ background: transparent;
351
+ -webkit-box-sizing: border-box;
352
+ box-sizing: border-box;
353
+ color: inherit;
354
+ cursor: text;
355
+ padding: 0 0 0 0.5ch;
356
+ margin: 0;
357
+ display: inline-block;
358
+ font-size: inherit;
359
+ font-family: inherit;
360
+ font-weight: 300;
361
+ line-height: inherit;
362
+ height: auto;
363
+ border: 0;
364
+ border-radius: 0;
365
+ vertical-align: initial;
366
+ -webkit-appearance: textfield;
367
+ -moz-appearance: textfield;
368
+ appearance: textfield;
369
+ }
370
+ .flatpickr-current-month input.cur-year:focus {
371
+ outline: 0;
372
+ }
373
+ .flatpickr-current-month input.cur-year[disabled],
374
+ .flatpickr-current-month input.cur-year[disabled]:hover {
375
+ font-size: 100%;
376
+ color: rgba(0,0,0,0.5);
377
+ background: transparent;
378
+ pointer-events: none;
379
+ }
380
+ .flatpickr-current-month .flatpickr-monthDropdown-months {
381
+ appearance: menulist;
382
+ background: transparent;
383
+ border: none;
384
+ border-radius: 0;
385
+ box-sizing: border-box;
386
+ color: inherit;
387
+ cursor: pointer;
388
+ font-size: inherit;
389
+ font-family: inherit;
390
+ font-weight: 300;
391
+ height: auto;
392
+ line-height: inherit;
393
+ margin: -1px 0 0 0;
394
+ outline: none;
395
+ padding: 0 0 0 0.5ch;
396
+ position: relative;
397
+ vertical-align: initial;
398
+ -webkit-box-sizing: border-box;
399
+ -webkit-appearance: menulist;
400
+ -moz-appearance: menulist;
401
+ width: auto;
402
+ }
403
+ .flatpickr-current-month .flatpickr-monthDropdown-months:focus,
404
+ .flatpickr-current-month .flatpickr-monthDropdown-months:active {
405
+ outline: none;
406
+ }
407
+ .flatpickr-current-month .flatpickr-monthDropdown-months:hover {
408
+ background: rgba(0,0,0,0.05);
409
+ }
410
+ .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
411
+ background-color: transparent;
412
+ outline: none;
413
+ padding: 0;
414
+ }
415
+ .flatpickr-weekdays {
416
+ background: transparent;
417
+ text-align: center;
418
+ overflow: hidden;
419
+ width: 100%;
420
+ display: -webkit-box;
421
+ display: -webkit-flex;
422
+ display: -ms-flexbox;
423
+ display: flex;
424
+ -webkit-box-align: center;
425
+ -webkit-align-items: center;
426
+ -ms-flex-align: center;
427
+ align-items: center;
428
+ height: 28px;
429
+ }
430
+ .flatpickr-weekdays .flatpickr-weekdaycontainer {
431
+ display: -webkit-box;
432
+ display: -webkit-flex;
433
+ display: -ms-flexbox;
434
+ display: flex;
435
+ -webkit-box-flex: 1;
436
+ -webkit-flex: 1;
437
+ -ms-flex: 1;
438
+ flex: 1;
439
+ }
440
+ span.flatpickr-weekday {
441
+ cursor: default;
442
+ font-size: 90%;
443
+ background: transparent;
444
+ color: rgba(0,0,0,0.54);
445
+ line-height: 1;
446
+ margin: 0;
447
+ text-align: center;
448
+ display: block;
449
+ -webkit-box-flex: 1;
450
+ -webkit-flex: 1;
451
+ -ms-flex: 1;
452
+ flex: 1;
453
+ font-weight: bolder;
454
+ }
455
+ .dayContainer,
456
+ .flatpickr-weeks {
457
+ padding: 1px 0 0 0;
458
+ }
459
+ .flatpickr-days {
460
+ position: relative;
461
+ overflow: hidden;
462
+ display: -webkit-box;
463
+ display: -webkit-flex;
464
+ display: -ms-flexbox;
465
+ display: flex;
466
+ -webkit-box-align: start;
467
+ -webkit-align-items: flex-start;
468
+ -ms-flex-align: start;
469
+ align-items: flex-start;
470
+ width: 307.875px;
471
+ }
472
+ .flatpickr-days:focus {
473
+ outline: 0;
474
+ }
475
+ .dayContainer {
476
+ padding: 0;
477
+ outline: 0;
478
+ text-align: left;
479
+ width: 307.875px;
480
+ min-width: 307.875px;
481
+ max-width: 307.875px;
482
+ -webkit-box-sizing: border-box;
483
+ box-sizing: border-box;
484
+ display: inline-block;
485
+ display: -ms-flexbox;
486
+ display: -webkit-box;
487
+ display: -webkit-flex;
488
+ display: flex;
489
+ -webkit-flex-wrap: wrap;
490
+ flex-wrap: wrap;
491
+ -ms-flex-wrap: wrap;
492
+ -ms-flex-pack: justify;
493
+ -webkit-justify-content: space-around;
494
+ justify-content: space-around;
495
+ -webkit-transform: translate3d(0px, 0px, 0px);
496
+ transform: translate3d(0px, 0px, 0px);
497
+ opacity: 1;
498
+ }
499
+ .dayContainer + .dayContainer {
500
+ -webkit-box-shadow: -1px 0 0 #e6e6e6;
501
+ box-shadow: -1px 0 0 #e6e6e6;
502
+ }
503
+ .flatpickr-day {
504
+ background: none;
505
+ border: 1px solid transparent;
506
+ border-radius: 150px;
507
+ -webkit-box-sizing: border-box;
508
+ box-sizing: border-box;
509
+ color: #393939;
510
+ cursor: pointer;
511
+ font-weight: 400;
512
+ width: 14.2857143%;
513
+ -webkit-flex-basis: 14.2857143%;
514
+ -ms-flex-preferred-size: 14.2857143%;
515
+ flex-basis: 14.2857143%;
516
+ max-width: 39px;
517
+ height: 39px;
518
+ line-height: 39px;
519
+ margin: 0;
520
+ display: inline-block;
521
+ position: relative;
522
+ -webkit-box-pack: center;
523
+ -webkit-justify-content: center;
524
+ -ms-flex-pack: center;
525
+ justify-content: center;
526
+ text-align: center;
527
+ }
528
+ .flatpickr-day.inRange,
529
+ .flatpickr-day.prevMonthDay.inRange,
530
+ .flatpickr-day.nextMonthDay.inRange,
531
+ .flatpickr-day.today.inRange,
532
+ .flatpickr-day.prevMonthDay.today.inRange,
533
+ .flatpickr-day.nextMonthDay.today.inRange,
534
+ .flatpickr-day:hover,
535
+ .flatpickr-day.prevMonthDay:hover,
536
+ .flatpickr-day.nextMonthDay:hover,
537
+ .flatpickr-day:focus,
538
+ .flatpickr-day.prevMonthDay:focus,
539
+ .flatpickr-day.nextMonthDay:focus {
540
+ cursor: pointer;
541
+ outline: 0;
542
+ background: #e6e6e6;
543
+ border-color: #e6e6e6;
544
+ }
545
+ .flatpickr-day.today {
546
+ border-color: #959ea9;
547
+ }
548
+ .flatpickr-day.today:hover,
549
+ .flatpickr-day.today:focus {
550
+ border-color: #959ea9;
551
+ background: #959ea9;
552
+ color: #fff;
553
+ }
554
+ .flatpickr-day.selected,
555
+ .flatpickr-day.startRange,
556
+ .flatpickr-day.endRange,
557
+ .flatpickr-day.selected.inRange,
558
+ .flatpickr-day.startRange.inRange,
559
+ .flatpickr-day.endRange.inRange,
560
+ .flatpickr-day.selected:focus,
561
+ .flatpickr-day.startRange:focus,
562
+ .flatpickr-day.endRange:focus,
563
+ .flatpickr-day.selected:hover,
564
+ .flatpickr-day.startRange:hover,
565
+ .flatpickr-day.endRange:hover,
566
+ .flatpickr-day.selected.prevMonthDay,
567
+ .flatpickr-day.startRange.prevMonthDay,
568
+ .flatpickr-day.endRange.prevMonthDay,
569
+ .flatpickr-day.selected.nextMonthDay,
570
+ .flatpickr-day.startRange.nextMonthDay,
571
+ .flatpickr-day.endRange.nextMonthDay {
572
+ background: #569ff7;
573
+ -webkit-box-shadow: none;
574
+ box-shadow: none;
575
+ color: #fff;
576
+ border-color: #569ff7;
577
+ }
578
+ .flatpickr-day.selected.startRange,
579
+ .flatpickr-day.startRange.startRange,
580
+ .flatpickr-day.endRange.startRange {
581
+ border-radius: 50px 0 0 50px;
582
+ }
583
+ .flatpickr-day.selected.endRange,
584
+ .flatpickr-day.startRange.endRange,
585
+ .flatpickr-day.endRange.endRange {
586
+ border-radius: 0 50px 50px 0;
587
+ }
588
+ .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
589
+ .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
590
+ .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
591
+ -webkit-box-shadow: -10px 0 0 #569ff7;
592
+ box-shadow: -10px 0 0 #569ff7;
593
+ }
594
+ .flatpickr-day.selected.startRange.endRange,
595
+ .flatpickr-day.startRange.startRange.endRange,
596
+ .flatpickr-day.endRange.startRange.endRange {
597
+ border-radius: 50px;
598
+ }
599
+ .flatpickr-day.inRange {
600
+ border-radius: 0;
601
+ -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
602
+ box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
603
+ }
604
+ .flatpickr-day.flatpickr-disabled,
605
+ .flatpickr-day.flatpickr-disabled:hover,
606
+ .flatpickr-day.prevMonthDay,
607
+ .flatpickr-day.nextMonthDay,
608
+ .flatpickr-day.notAllowed,
609
+ .flatpickr-day.notAllowed.prevMonthDay,
610
+ .flatpickr-day.notAllowed.nextMonthDay {
611
+ color: rgba(57,57,57,0.3);
612
+ background: transparent;
613
+ border-color: transparent;
614
+ cursor: default;
615
+ }
616
+ .flatpickr-day.flatpickr-disabled,
617
+ .flatpickr-day.flatpickr-disabled:hover {
618
+ cursor: not-allowed;
619
+ color: rgba(57,57,57,0.1);
620
+ }
621
+ .flatpickr-day.week.selected {
622
+ border-radius: 0;
623
+ -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
624
+ box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
625
+ }
626
+ .flatpickr-day.hidden {
627
+ visibility: hidden;
628
+ }
629
+ .rangeMode .flatpickr-day {
630
+ margin-top: 1px;
631
+ }
632
+ .flatpickr-weekwrapper {
633
+ float: left;
634
+ }
635
+ .flatpickr-weekwrapper .flatpickr-weeks {
636
+ padding: 0 12px;
637
+ -webkit-box-shadow: 1px 0 0 #e6e6e6;
638
+ box-shadow: 1px 0 0 #e6e6e6;
639
+ }
640
+ .flatpickr-weekwrapper .flatpickr-weekday {
641
+ float: none;
642
+ width: 100%;
643
+ line-height: 28px;
644
+ }
645
+ .flatpickr-weekwrapper span.flatpickr-day,
646
+ .flatpickr-weekwrapper span.flatpickr-day:hover {
647
+ display: block;
648
+ width: 100%;
649
+ max-width: none;
650
+ color: rgba(57,57,57,0.3);
651
+ background: transparent;
652
+ cursor: default;
653
+ border: none;
654
+ }
655
+ .flatpickr-innerContainer {
656
+ display: block;
657
+ display: -webkit-box;
658
+ display: -webkit-flex;
659
+ display: -ms-flexbox;
660
+ display: flex;
661
+ -webkit-box-sizing: border-box;
662
+ box-sizing: border-box;
663
+ overflow: hidden;
664
+ }
665
+ .flatpickr-rContainer {
666
+ display: inline-block;
667
+ padding: 0;
668
+ -webkit-box-sizing: border-box;
669
+ box-sizing: border-box;
670
+ }
671
+ .flatpickr-time {
672
+ text-align: center;
673
+ outline: 0;
674
+ display: block;
675
+ height: 0;
676
+ line-height: 40px;
677
+ max-height: 40px;
678
+ -webkit-box-sizing: border-box;
679
+ box-sizing: border-box;
680
+ overflow: hidden;
681
+ display: -webkit-box;
682
+ display: -webkit-flex;
683
+ display: -ms-flexbox;
684
+ display: flex;
685
+ }
686
+ .flatpickr-time:after {
687
+ content: "";
688
+ display: table;
689
+ clear: both;
690
+ }
691
+ .flatpickr-time .numInputWrapper {
692
+ -webkit-box-flex: 1;
693
+ -webkit-flex: 1;
694
+ -ms-flex: 1;
695
+ flex: 1;
696
+ width: 40%;
697
+ height: 40px;
698
+ float: left;
699
+ }
700
+ .flatpickr-time .numInputWrapper span.arrowUp:after {
701
+ border-bottom-color: #393939;
702
+ }
703
+ .flatpickr-time .numInputWrapper span.arrowDown:after {
704
+ border-top-color: #393939;
705
+ }
706
+ .flatpickr-time.hasSeconds .numInputWrapper {
707
+ width: 26%;
708
+ }
709
+ .flatpickr-time.time24hr .numInputWrapper {
710
+ width: 49%;
711
+ }
712
+ .flatpickr-time input {
713
+ background: transparent;
714
+ -webkit-box-shadow: none;
715
+ box-shadow: none;
716
+ border: 0;
717
+ border-radius: 0;
718
+ text-align: center;
719
+ margin: 0;
720
+ padding: 0;
721
+ height: inherit;
722
+ line-height: inherit;
723
+ color: #393939;
724
+ font-size: 14px;
725
+ position: relative;
726
+ -webkit-box-sizing: border-box;
727
+ box-sizing: border-box;
728
+ -webkit-appearance: textfield;
729
+ -moz-appearance: textfield;
730
+ appearance: textfield;
731
+ }
732
+ .flatpickr-time input.flatpickr-hour {
733
+ font-weight: bold;
734
+ }
735
+ .flatpickr-time input.flatpickr-minute,
736
+ .flatpickr-time input.flatpickr-second {
737
+ font-weight: 400;
738
+ }
739
+ .flatpickr-time input:focus {
740
+ outline: 0;
741
+ border: 0;
742
+ }
743
+ .flatpickr-time .flatpickr-time-separator,
744
+ .flatpickr-time .flatpickr-am-pm {
745
+ height: inherit;
746
+ float: left;
747
+ line-height: inherit;
748
+ color: #393939;
749
+ font-weight: bold;
750
+ width: 2%;
751
+ -webkit-user-select: none;
752
+ -moz-user-select: none;
753
+ -ms-user-select: none;
754
+ user-select: none;
755
+ -webkit-align-self: center;
756
+ -ms-flex-item-align: center;
757
+ align-self: center;
758
+ }
759
+ .flatpickr-time .flatpickr-am-pm {
760
+ outline: 0;
761
+ width: 18%;
762
+ cursor: pointer;
763
+ text-align: center;
764
+ font-weight: 400;
765
+ }
766
+ .flatpickr-time input:hover,
767
+ .flatpickr-time .flatpickr-am-pm:hover,
768
+ .flatpickr-time input:focus,
769
+ .flatpickr-time .flatpickr-am-pm:focus {
770
+ background: #eee;
771
+ }
772
+ .flatpickr-input[readonly] {
773
+ cursor: pointer;
774
+ }
775
+ @-webkit-keyframes fpFadeInDown {
776
+ from {
777
+ opacity: 0;
778
+ -webkit-transform: translate3d(0, -20px, 0);
779
+ transform: translate3d(0, -20px, 0);
780
+ }
781
+ to {
782
+ opacity: 1;
783
+ -webkit-transform: translate3d(0, 0, 0);
784
+ transform: translate3d(0, 0, 0);
785
+ }
786
+ }
787
+ @keyframes fpFadeInDown {
788
+ from {
789
+ opacity: 0;
790
+ -webkit-transform: translate3d(0, -20px, 0);
791
+ transform: translate3d(0, -20px, 0);
792
+ }
793
+ to {
794
+ opacity: 1;
795
+ -webkit-transform: translate3d(0, 0, 0);
796
+ transform: translate3d(0, 0, 0);
797
+ }
798
+ }
799
+
5
800
 
6
801
  @layer components {
7
802
  .flatpickr-calendar {