@xh/hoist 71.0.0-SNAPSHOT.1733788712041 → 71.0.0-SNAPSHOT.1733854822950

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,898 @@
1
+ /**
2
+ * Copy of `react-dates/lib/css/_datepicker.css` from react-dates v21.8.0, with problematic use of
3
+ * darken() function removed. See https://github.com/react-dates/react-dates/issues/2081 and linked
4
+ * pull request. Unfortunately the library is not being re-released, so when this started breaking
5
+ * after we updated our SASS library we copied the CSS here to monkey-patch.
6
+ */
7
+ .PresetDateRangePicker_panel {
8
+ padding: 0 22px 11px
9
+ }
10
+ .PresetDateRangePicker_button {
11
+ position: relative;
12
+ height: 100%;
13
+ text-align: center;
14
+ background: 0 0;
15
+ border: 2px solid #00a699;
16
+ color: #00a699;
17
+ padding: 4px 12px;
18
+ margin-right: 8px;
19
+ font: inherit;
20
+ font-weight: 700;
21
+ line-height: normal;
22
+ overflow: visible;
23
+ -moz-box-sizing: border-box;
24
+ box-sizing: border-box;
25
+ cursor: pointer
26
+ }
27
+ .PresetDateRangePicker_button:active {
28
+ outline: 0
29
+ }
30
+ .PresetDateRangePicker_button__selected {
31
+ color: #fff;
32
+ background: #00a699
33
+ }
34
+ .SingleDatePickerInput {
35
+ display: inline-block;
36
+ background-color: #fff
37
+ }
38
+ .SingleDatePickerInput__withBorder {
39
+ border-radius: 2px;
40
+ border: 1px solid #dbdbdb
41
+ }
42
+ .SingleDatePickerInput__rtl {
43
+ direction: rtl
44
+ }
45
+ .SingleDatePickerInput__disabled {
46
+ background-color: #f2f2f2
47
+ }
48
+ .SingleDatePickerInput__block {
49
+ display: block
50
+ }
51
+ .SingleDatePickerInput__showClearDate {
52
+ padding-right: 30px
53
+ }
54
+ .SingleDatePickerInput_clearDate {
55
+ background: 0 0;
56
+ border: 0;
57
+ color: inherit;
58
+ font: inherit;
59
+ line-height: normal;
60
+ overflow: visible;
61
+ cursor: pointer;
62
+ padding: 10px;
63
+ margin: 0 10px 0 5px;
64
+ position: absolute;
65
+ right: 0;
66
+ top: 50%;
67
+ -webkit-transform: translateY(-50%);
68
+ -ms-transform: translateY(-50%);
69
+ transform: translateY(-50%)
70
+ }
71
+ .SingleDatePickerInput_clearDate__default:focus,
72
+ .SingleDatePickerInput_clearDate__default:hover {
73
+ background: #dbdbdb;
74
+ border-radius: 50%
75
+ }
76
+ .SingleDatePickerInput_clearDate__small {
77
+ padding: 6px
78
+ }
79
+ .SingleDatePickerInput_clearDate__hide {
80
+ visibility: hidden
81
+ }
82
+ .SingleDatePickerInput_clearDate_svg {
83
+ fill: #82888a;
84
+ height: 12px;
85
+ width: 15px;
86
+ vertical-align: middle
87
+ }
88
+ .SingleDatePickerInput_clearDate_svg__small {
89
+ height: 9px
90
+ }
91
+ .SingleDatePickerInput_calendarIcon {
92
+ background: 0 0;
93
+ border: 0;
94
+ color: inherit;
95
+ font: inherit;
96
+ line-height: normal;
97
+ overflow: visible;
98
+ cursor: pointer;
99
+ display: inline-block;
100
+ vertical-align: middle;
101
+ padding: 10px;
102
+ margin: 0 5px 0 10px
103
+ }
104
+ .SingleDatePickerInput_calendarIcon_svg {
105
+ fill: #82888a;
106
+ height: 15px;
107
+ width: 14px;
108
+ vertical-align: middle
109
+ }
110
+ .SingleDatePicker {
111
+ position: relative;
112
+ display: inline-block
113
+ }
114
+ .SingleDatePicker__block {
115
+ display: block
116
+ }
117
+ .SingleDatePicker_picker {
118
+ z-index: 1;
119
+ background-color: #fff;
120
+ position: absolute
121
+ }
122
+ .SingleDatePicker_picker__rtl {
123
+ direction: rtl
124
+ }
125
+ .SingleDatePicker_picker__directionLeft {
126
+ left: 0
127
+ }
128
+ .SingleDatePicker_picker__directionRight {
129
+ right: 0
130
+ }
131
+ .SingleDatePicker_picker__portal {
132
+ background-color: rgba(0,0,0,.3);
133
+ position: fixed;
134
+ top: 0;
135
+ left: 0;
136
+ height: 100%;
137
+ width: 100%
138
+ }
139
+ .SingleDatePicker_picker__fullScreenPortal {
140
+ background-color: #fff
141
+ }
142
+ .SingleDatePicker_closeButton {
143
+ background: 0 0;
144
+ border: 0;
145
+ color: inherit;
146
+ font: inherit;
147
+ line-height: normal;
148
+ overflow: visible;
149
+ cursor: pointer;
150
+ position: absolute;
151
+ top: 0;
152
+ right: 0;
153
+ padding: 15px;
154
+ z-index: 2
155
+ }
156
+ .SingleDatePicker_closeButton:focus,
157
+ .SingleDatePicker_closeButton:hover {
158
+ /** XH Patch */
159
+ /** color: darken(#cacccd,10%); */
160
+ color: #b1b2b3;
161
+ text-decoration: none
162
+ }
163
+ .SingleDatePicker_closeButton_svg {
164
+ height: 15px;
165
+ width: 15px;
166
+ fill: #cacccd
167
+ }
168
+ .DayPickerKeyboardShortcuts_buttonReset {
169
+ background: 0 0;
170
+ border: 0;
171
+ border-radius: 0;
172
+ color: inherit;
173
+ font: inherit;
174
+ line-height: normal;
175
+ overflow: visible;
176
+ padding: 0;
177
+ cursor: pointer;
178
+ font-size: 14px
179
+ }
180
+ .DayPickerKeyboardShortcuts_buttonReset:active {
181
+ outline: 0
182
+ }
183
+ .DayPickerKeyboardShortcuts_show {
184
+ width: 33px;
185
+ height: 26px;
186
+ position: absolute;
187
+ z-index: 2
188
+ }
189
+ .DayPickerKeyboardShortcuts_show::before {
190
+ content: "";
191
+ display: block;
192
+ position: absolute
193
+ }
194
+ .DayPickerKeyboardShortcuts_show__bottomRight {
195
+ bottom: 0;
196
+ right: 0
197
+ }
198
+ .DayPickerKeyboardShortcuts_show__bottomRight::before {
199
+ border-top: 26px solid transparent;
200
+ border-right: 33px solid #00a699;
201
+ bottom: 0;
202
+ right: 0
203
+ }
204
+ .DayPickerKeyboardShortcuts_show__bottomRight:hover::before {
205
+ border-right: 33px solid #008489
206
+ }
207
+ .DayPickerKeyboardShortcuts_show__topRight {
208
+ top: 0;
209
+ right: 0
210
+ }
211
+ .DayPickerKeyboardShortcuts_show__topRight::before {
212
+ border-bottom: 26px solid transparent;
213
+ border-right: 33px solid #00a699;
214
+ top: 0;
215
+ right: 0
216
+ }
217
+ .DayPickerKeyboardShortcuts_show__topRight:hover::before {
218
+ border-right: 33px solid #008489
219
+ }
220
+ .DayPickerKeyboardShortcuts_show__topLeft {
221
+ top: 0;
222
+ left: 0
223
+ }
224
+ .DayPickerKeyboardShortcuts_show__topLeft::before {
225
+ border-bottom: 26px solid transparent;
226
+ border-left: 33px solid #00a699;
227
+ top: 0;
228
+ left: 0
229
+ }
230
+ .DayPickerKeyboardShortcuts_show__topLeft:hover::before {
231
+ border-left: 33px solid #008489
232
+ }
233
+ .DayPickerKeyboardShortcuts_showSpan {
234
+ color: #fff;
235
+ position: absolute
236
+ }
237
+ .DayPickerKeyboardShortcuts_showSpan__bottomRight {
238
+ bottom: 0;
239
+ right: 5px
240
+ }
241
+ .DayPickerKeyboardShortcuts_showSpan__topRight {
242
+ top: 1px;
243
+ right: 5px
244
+ }
245
+ .DayPickerKeyboardShortcuts_showSpan__topLeft {
246
+ top: 1px;
247
+ left: 5px
248
+ }
249
+ .DayPickerKeyboardShortcuts_panel {
250
+ overflow: auto;
251
+ background: #fff;
252
+ border: 1px solid #dbdbdb;
253
+ border-radius: 2px;
254
+ position: absolute;
255
+ top: 0;
256
+ bottom: 0;
257
+ right: 0;
258
+ left: 0;
259
+ z-index: 2;
260
+ padding: 22px;
261
+ margin: 33px;
262
+ text-align: left
263
+ }
264
+ .DayPickerKeyboardShortcuts_title {
265
+ font-size: 16px;
266
+ font-weight: 700;
267
+ margin: 0
268
+ }
269
+ .DayPickerKeyboardShortcuts_list {
270
+ list-style: none;
271
+ padding: 0;
272
+ font-size: 14px
273
+ }
274
+ .DayPickerKeyboardShortcuts_close {
275
+ position: absolute;
276
+ right: 22px;
277
+ top: 22px;
278
+ z-index: 2
279
+ }
280
+ .DayPickerKeyboardShortcuts_close:active {
281
+ outline: 0
282
+ }
283
+ .DayPickerKeyboardShortcuts_closeSvg {
284
+ height: 15px;
285
+ width: 15px;
286
+ fill: #cacccd
287
+ }
288
+ .DayPickerKeyboardShortcuts_closeSvg:focus,
289
+ .DayPickerKeyboardShortcuts_closeSvg:hover {
290
+ fill: #82888a
291
+ }
292
+ .CalendarDay {
293
+ -moz-box-sizing: border-box;
294
+ box-sizing: border-box;
295
+ cursor: pointer;
296
+ font-size: 14px;
297
+ text-align: center
298
+ }
299
+ .CalendarDay:active {
300
+ outline: 0
301
+ }
302
+ .CalendarDay__defaultCursor {
303
+ cursor: default
304
+ }
305
+ .CalendarDay__default {
306
+ border: 1px solid #e4e7e7;
307
+ color: #484848;
308
+ background: #fff
309
+ }
310
+ .CalendarDay__default:hover {
311
+ background: #e4e7e7;
312
+ border: 1px solid #e4e7e7;
313
+ color: inherit
314
+ }
315
+ .CalendarDay__hovered_offset {
316
+ background: #f4f5f5;
317
+ border: 1px double #e4e7e7;
318
+ color: inherit
319
+ }
320
+ .CalendarDay__outside {
321
+ border: 0;
322
+ background: #fff;
323
+ color: #484848
324
+ }
325
+ .CalendarDay__outside:hover {
326
+ border: 0
327
+ }
328
+ .CalendarDay__blocked_minimum_nights {
329
+ background: #fff;
330
+ border: 1px solid #eceeee;
331
+ color: #cacccd
332
+ }
333
+ .CalendarDay__blocked_minimum_nights:active,
334
+ .CalendarDay__blocked_minimum_nights:hover {
335
+ background: #fff;
336
+ color: #cacccd
337
+ }
338
+ .CalendarDay__highlighted_calendar {
339
+ background: #ffe8bc;
340
+ color: #484848
341
+ }
342
+ .CalendarDay__highlighted_calendar:active,
343
+ .CalendarDay__highlighted_calendar:hover {
344
+ background: #ffce71;
345
+ color: #484848
346
+ }
347
+ .CalendarDay__selected_span {
348
+ background: #66e2da;
349
+ border: 1px double #33dacd;
350
+ color: #fff
351
+ }
352
+ .CalendarDay__selected_span:active,
353
+ .CalendarDay__selected_span:hover {
354
+ background: #33dacd;
355
+ border: 1px double #33dacd;
356
+ color: #fff
357
+ }
358
+ .CalendarDay__selected,
359
+ .CalendarDay__selected:active,
360
+ .CalendarDay__selected:hover {
361
+ background: #00a699;
362
+ border: 1px double #00a699;
363
+ color: #fff
364
+ }
365
+ .CalendarDay__hovered_span,
366
+ .CalendarDay__hovered_span:hover {
367
+ background: #b2f1ec;
368
+ border: 1px double #80e8e0;
369
+ color: #007a87
370
+ }
371
+ .CalendarDay__hovered_span:active {
372
+ background: #80e8e0;
373
+ border: 1px double #80e8e0;
374
+ color: #007a87
375
+ }
376
+ .CalendarDay__blocked_calendar,
377
+ .CalendarDay__blocked_calendar:active,
378
+ .CalendarDay__blocked_calendar:hover {
379
+ background: #cacccd;
380
+ border: 1px solid #cacccd;
381
+ color: #82888a
382
+ }
383
+ .CalendarDay__blocked_out_of_range,
384
+ .CalendarDay__blocked_out_of_range:active,
385
+ .CalendarDay__blocked_out_of_range:hover {
386
+ background: #fff;
387
+ border: 1px solid #e4e7e7;
388
+ color: #cacccd
389
+ }
390
+ .CalendarDay__hovered_start_first_possible_end {
391
+ background: #eceeee;
392
+ border: 1px double #eceeee
393
+ }
394
+ .CalendarDay__hovered_start_blocked_min_nights {
395
+ background: #eceeee;
396
+ border: 1px double #e4e7e7
397
+ }
398
+ .CalendarMonth {
399
+ background: #fff;
400
+ text-align: center;
401
+ vertical-align: top;
402
+ -webkit-user-select: none;
403
+ -moz-user-select: none;
404
+ -ms-user-select: none;
405
+ user-select: none
406
+ }
407
+ .CalendarMonth_table {
408
+ border-collapse: collapse;
409
+ border-spacing: 0
410
+ }
411
+ .CalendarMonth_verticalSpacing {
412
+ border-collapse: separate
413
+ }
414
+ .CalendarMonth_caption {
415
+ color: #484848;
416
+ font-size: 18px;
417
+ text-align: center;
418
+ padding-top: 22px;
419
+ padding-bottom: 37px;
420
+ caption-side: initial
421
+ }
422
+ .CalendarMonth_caption__verticalScrollable {
423
+ padding-top: 12px;
424
+ padding-bottom: 7px
425
+ }
426
+ .CalendarMonthGrid {
427
+ background: #fff;
428
+ text-align: left;
429
+ z-index: 0
430
+ }
431
+ .CalendarMonthGrid__animating {
432
+ z-index: 1
433
+ }
434
+ .CalendarMonthGrid__horizontal {
435
+ position: absolute;
436
+ left: 9px
437
+ }
438
+ .CalendarMonthGrid__vertical,
439
+ .CalendarMonthGrid__vertical_scrollable {
440
+ margin: 0 auto
441
+ }
442
+ .CalendarMonthGrid_month__horizontal {
443
+ display: inline-block;
444
+ vertical-align: top;
445
+ min-height: 100%
446
+ }
447
+ .CalendarMonthGrid_month__hideForAnimation {
448
+ position: absolute;
449
+ z-index: -1;
450
+ opacity: 0;
451
+ pointer-events: none
452
+ }
453
+ .CalendarMonthGrid_month__hidden {
454
+ visibility: hidden
455
+ }
456
+ .DayPickerNavigation {
457
+ position: relative;
458
+ z-index: 2
459
+ }
460
+ .DayPickerNavigation__horizontal {
461
+ height: 0
462
+ }
463
+ .DayPickerNavigation__verticalScrollable_prevNav {
464
+ z-index: 1
465
+ }
466
+ .DayPickerNavigation__verticalDefault {
467
+ position: absolute;
468
+ width: 100%;
469
+ height: 52px;
470
+ bottom: 0;
471
+ left: 0
472
+ }
473
+ .DayPickerNavigation__verticalScrollableDefault {
474
+ position: relative
475
+ }
476
+ .DayPickerNavigation__bottom {
477
+ height: auto
478
+ }
479
+ .DayPickerNavigation__bottomDefault {
480
+ -webkit-box-pack: justify;
481
+ -ms-flex-pack: justify;
482
+ display: -webkit-box;
483
+ display: -moz-box;
484
+ display: -ms-flexbox;
485
+ display: -webkit-flex;
486
+ display: flex;
487
+ -webkit-justify-content: space-between;
488
+ justify-content: space-between
489
+ }
490
+ .DayPickerNavigation_button {
491
+ cursor: pointer;
492
+ -webkit-user-select: none;
493
+ -moz-user-select: none;
494
+ -ms-user-select: none;
495
+ user-select: none;
496
+ border: 0;
497
+ padding: 0;
498
+ margin: 0
499
+ }
500
+ .DayPickerNavigation_button__default {
501
+ border: 1px solid #e4e7e7;
502
+ background-color: #fff;
503
+ color: #757575
504
+ }
505
+ .DayPickerNavigation_button__default:focus,
506
+ .DayPickerNavigation_button__default:hover {
507
+ border: 1px solid #c4c4c4
508
+ }
509
+ .DayPickerNavigation_button__default:active {
510
+ background: #f2f2f2
511
+ }
512
+ .DayPickerNavigation_button__disabled {
513
+ cursor: default;
514
+ border: 1px solid #f2f2f2
515
+ }
516
+ .DayPickerNavigation_button__disabled:focus,
517
+ .DayPickerNavigation_button__disabled:hover {
518
+ border: 1px solid #f2f2f2
519
+ }
520
+ .DayPickerNavigation_button__disabled:active {
521
+ background: 0 0
522
+ }
523
+ .DayPickerNavigation_button__horizontalDefault {
524
+ position: absolute;
525
+ top: 18px;
526
+ line-height: .78;
527
+ border-radius: 3px;
528
+ padding: 6px 9px
529
+ }
530
+ .DayPickerNavigation_bottomButton__horizontalDefault {
531
+ position: static;
532
+ margin: -10px 22px 30px
533
+ }
534
+ .DayPickerNavigation_leftButton__horizontalDefault {
535
+ left: 22px
536
+ }
537
+ .DayPickerNavigation_rightButton__horizontalDefault {
538
+ right: 22px
539
+ }
540
+ .DayPickerNavigation_button__verticalDefault {
541
+ padding: 5px;
542
+ background: #fff;
543
+ box-shadow: 0 0 5px 2px rgba(0,0,0,.1);
544
+ position: relative;
545
+ display: inline-block;
546
+ text-align: center;
547
+ height: 100%;
548
+ width: 50%
549
+ }
550
+ .DayPickerNavigation_nextButton__verticalDefault {
551
+ border-left: 0
552
+ }
553
+ .DayPickerNavigation_nextButton__verticalScrollableDefault,
554
+ .DayPickerNavigation_prevButton__verticalScrollableDefault {
555
+ width: 100%
556
+ }
557
+ .DayPickerNavigation_svg__horizontal {
558
+ height: 19px;
559
+ width: 19px;
560
+ fill: #82888a;
561
+ display: block
562
+ }
563
+ .DayPickerNavigation_svg__vertical {
564
+ height: 42px;
565
+ width: 42px;
566
+ fill: #484848
567
+ }
568
+ .DayPickerNavigation_svg__disabled {
569
+ fill: #f2f2f2
570
+ }
571
+ .DayPicker {
572
+ background: #fff;
573
+ position: relative;
574
+ text-align: left
575
+ }
576
+ .DayPicker__horizontal {
577
+ background: #fff
578
+ }
579
+ .DayPicker__verticalScrollable {
580
+ height: 100%
581
+ }
582
+ .DayPicker__hidden {
583
+ visibility: hidden
584
+ }
585
+ .DayPicker__withBorder {
586
+ box-shadow: 0 2px 6px rgba(0,0,0,.05),0 0 0 1px rgba(0,0,0,.07);
587
+ border-radius: 3px
588
+ }
589
+ .DayPicker_portal__horizontal {
590
+ box-shadow: none;
591
+ position: absolute;
592
+ left: 50%;
593
+ top: 50%
594
+ }
595
+ .DayPicker_portal__vertical {
596
+ position: initial
597
+ }
598
+ .DayPicker_focusRegion {
599
+ outline: 0
600
+ }
601
+ .DayPicker_calendarInfo__horizontal,
602
+ .DayPicker_wrapper__horizontal {
603
+ display: inline-block;
604
+ vertical-align: top
605
+ }
606
+ .DayPicker_weekHeaders {
607
+ position: relative
608
+ }
609
+ .DayPicker_weekHeaders__horizontal {
610
+ margin-left: 9px
611
+ }
612
+ .DayPicker_weekHeader {
613
+ color: #757575;
614
+ position: absolute;
615
+ top: 62px;
616
+ z-index: 2;
617
+ text-align: left
618
+ }
619
+ .DayPicker_weekHeader__vertical {
620
+ left: 50%
621
+ }
622
+ .DayPicker_weekHeader__verticalScrollable {
623
+ top: 0;
624
+ display: table-row;
625
+ border-bottom: 1px solid #dbdbdb;
626
+ background: #fff;
627
+ margin-left: 0;
628
+ left: 0;
629
+ width: 100%;
630
+ text-align: center
631
+ }
632
+ .DayPicker_weekHeader_ul {
633
+ list-style: none;
634
+ margin: 1px 0;
635
+ padding-left: 0;
636
+ padding-right: 0;
637
+ font-size: 14px
638
+ }
639
+ .DayPicker_weekHeader_li {
640
+ display: inline-block;
641
+ text-align: center
642
+ }
643
+ .DayPicker_transitionContainer {
644
+ position: relative;
645
+ overflow: hidden;
646
+ border-radius: 3px
647
+ }
648
+ .DayPicker_transitionContainer__horizontal {
649
+ -webkit-transition: height .2s ease-in-out;
650
+ -moz-transition: height .2s ease-in-out;
651
+ transition: height .2s ease-in-out
652
+ }
653
+ .DayPicker_transitionContainer__vertical {
654
+ width: 100%
655
+ }
656
+ .DayPicker_transitionContainer__verticalScrollable {
657
+ padding-top: 20px;
658
+ height: 100%;
659
+ position: absolute;
660
+ top: 0;
661
+ bottom: 0;
662
+ right: 0;
663
+ left: 0;
664
+ overflow-y: scroll
665
+ }
666
+ .DateInput {
667
+ margin: 0;
668
+ padding: 0;
669
+ background: #fff;
670
+ position: relative;
671
+ display: inline-block;
672
+ width: 130px;
673
+ vertical-align: middle
674
+ }
675
+ .DateInput__small {
676
+ width: 97px
677
+ }
678
+ .DateInput__block {
679
+ width: 100%
680
+ }
681
+ .DateInput__disabled {
682
+ background: #f2f2f2;
683
+ color: #dbdbdb
684
+ }
685
+ .DateInput_input {
686
+ font-weight: 200;
687
+ font-size: 19px;
688
+ line-height: 24px;
689
+ color: #484848;
690
+ background-color: #fff;
691
+ width: 100%;
692
+ padding: 11px 11px 9px;
693
+ border: 0;
694
+ border-top: 0;
695
+ border-right: 0;
696
+ border-bottom: 2px solid transparent;
697
+ border-left: 0;
698
+ border-radius: 0
699
+ }
700
+ .DateInput_input__small {
701
+ font-size: 15px;
702
+ line-height: 18px;
703
+ letter-spacing: .2px;
704
+ padding: 7px 7px 5px
705
+ }
706
+
707
+ /*noinspection ALL*/
708
+ .DateInput_input__regular {
709
+ font-weight: auto
710
+ }
711
+ .DateInput_input__readOnly {
712
+ -webkit-user-select: none;
713
+ -moz-user-select: none;
714
+ -ms-user-select: none;
715
+ user-select: none
716
+ }
717
+ .DateInput_input__focused {
718
+ outline: 0;
719
+ background: #fff;
720
+ border: 0;
721
+ border-top: 0;
722
+ border-right: 0;
723
+ border-bottom: 2px solid #008489;
724
+ border-left: 0
725
+ }
726
+ .DateInput_input__disabled {
727
+ background: #f2f2f2;
728
+ font-style: italic
729
+ }
730
+ .DateInput_screenReaderMessage {
731
+ border: 0;
732
+ clip: rect(0,0,0,0);
733
+ height: 1px;
734
+ margin: -1px;
735
+ overflow: hidden;
736
+ padding: 0;
737
+ position: absolute;
738
+ width: 1px
739
+ }
740
+ .DateInput_fang {
741
+ position: absolute;
742
+ width: 20px;
743
+ height: 10px;
744
+ left: 22px;
745
+ z-index: 2
746
+ }
747
+ .DateInput_fangShape {
748
+ fill: #fff
749
+ }
750
+ .DateInput_fangStroke {
751
+ stroke: #dbdbdb;
752
+ fill: transparent
753
+ }
754
+ .DateRangePickerInput {
755
+ background-color: #fff;
756
+ display: inline-block
757
+ }
758
+ .DateRangePickerInput__disabled {
759
+ background: #f2f2f2
760
+ }
761
+ .DateRangePickerInput__withBorder {
762
+ border-radius: 2px;
763
+ border: 1px solid #dbdbdb
764
+ }
765
+ .DateRangePickerInput__rtl {
766
+ direction: rtl
767
+ }
768
+ .DateRangePickerInput__block {
769
+ display: block
770
+ }
771
+ .DateRangePickerInput__showClearDates {
772
+ padding-right: 30px
773
+ }
774
+ .DateRangePickerInput_arrow {
775
+ display: inline-block;
776
+ vertical-align: middle;
777
+ color: #484848
778
+ }
779
+ .DateRangePickerInput_arrow_svg {
780
+ vertical-align: middle;
781
+ fill: #484848;
782
+ height: 24px;
783
+ width: 24px
784
+ }
785
+ .DateRangePickerInput_clearDates {
786
+ background: 0 0;
787
+ border: 0;
788
+ color: inherit;
789
+ font: inherit;
790
+ line-height: normal;
791
+ overflow: visible;
792
+ cursor: pointer;
793
+ padding: 10px;
794
+ margin: 0 10px 0 5px;
795
+ position: absolute;
796
+ right: 0;
797
+ top: 50%;
798
+ -webkit-transform: translateY(-50%);
799
+ -ms-transform: translateY(-50%);
800
+ transform: translateY(-50%)
801
+ }
802
+ .DateRangePickerInput_clearDates__small {
803
+ padding: 6px
804
+ }
805
+ .DateRangePickerInput_clearDates_default:focus,
806
+ .DateRangePickerInput_clearDates_default:hover {
807
+ background: #dbdbdb;
808
+ border-radius: 50%
809
+ }
810
+ .DateRangePickerInput_clearDates__hide {
811
+ visibility: hidden
812
+ }
813
+ .DateRangePickerInput_clearDates_svg {
814
+ fill: #82888a;
815
+ height: 12px;
816
+ width: 15px;
817
+ vertical-align: middle
818
+ }
819
+ .DateRangePickerInput_clearDates_svg__small {
820
+ height: 9px
821
+ }
822
+ .DateRangePickerInput_calendarIcon {
823
+ background: 0 0;
824
+ border: 0;
825
+ color: inherit;
826
+ font: inherit;
827
+ line-height: normal;
828
+ overflow: visible;
829
+ cursor: pointer;
830
+ display: inline-block;
831
+ vertical-align: middle;
832
+ padding: 10px;
833
+ margin: 0 5px 0 10px
834
+ }
835
+ .DateRangePickerInput_calendarIcon_svg {
836
+ fill: #82888a;
837
+ height: 15px;
838
+ width: 14px;
839
+ vertical-align: middle
840
+ }
841
+ .DateRangePicker {
842
+ position: relative;
843
+ display: inline-block
844
+ }
845
+ .DateRangePicker__block {
846
+ display: block
847
+ }
848
+ .DateRangePicker_picker {
849
+ z-index: 1;
850
+ background-color: #fff;
851
+ position: absolute
852
+ }
853
+ .DateRangePicker_picker__rtl {
854
+ direction: rtl
855
+ }
856
+ .DateRangePicker_picker__directionLeft {
857
+ left: 0
858
+ }
859
+ .DateRangePicker_picker__directionRight {
860
+ right: 0
861
+ }
862
+ .DateRangePicker_picker__portal {
863
+ background-color: rgba(0,0,0,.3);
864
+ position: fixed;
865
+ top: 0;
866
+ left: 0;
867
+ height: 100%;
868
+ width: 100%
869
+ }
870
+ .DateRangePicker_picker__fullScreenPortal {
871
+ background-color: #fff
872
+ }
873
+ .DateRangePicker_closeButton {
874
+ background: 0 0;
875
+ border: 0;
876
+ color: inherit;
877
+ font: inherit;
878
+ line-height: normal;
879
+ overflow: visible;
880
+ cursor: pointer;
881
+ position: absolute;
882
+ top: 0;
883
+ right: 0;
884
+ padding: 15px;
885
+ z-index: 2
886
+ }
887
+ .DateRangePicker_closeButton:focus,
888
+ .DateRangePicker_closeButton:hover {
889
+ /** XH Patch */
890
+ /** color: darken(#cacccd,10%); */
891
+ color: #b1b2b3;
892
+ text-decoration: none
893
+ }
894
+ .DateRangePicker_closeButton_svg {
895
+ height: 15px;
896
+ width: 15px;
897
+ fill: #cacccd
898
+ }