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