UNPKG

17.6 kBCSSView Raw
1.bp5-date-input .bp5-input-action{
2 display:flex;
3 flex-direction:row;
4}
5.bp5-datepicker{
6 background:#ffffff;
7 border-radius:2px;
8 display:flex;
9 padding:5px;
10 position:relative;
11 -webkit-user-select:none;
12 -moz-user-select:none;
13 -ms-user-select:none;
14 user-select:none;
15}
16.bp5-datepicker .DayPicker{
17 display:inline-block;
18 min-width:210px;
19 position:relative;
20 vertical-align:top;
21}
22.bp5-datepicker .DayPicker:focus{
23 outline:none;
24}
25.bp5-datepicker .bp5-datepicker-day-wrapper{
26 border-radius:2px;
27 padding:7px;
28}
29.bp5-datepicker .DayPicker-Month{
30 border-collapse:collapse;
31 border-spacing:0;
32 display:inline-table;
33 margin:0 5px;
34 -webkit-user-select:none;
35 -moz-user-select:none;
36 -ms-user-select:none;
37 user-select:none;
38}
39.bp5-datepicker .DayPicker-Month + .bp5-datepicker .DayPicker-Month{
40 margin-left:10px;
41}
42.bp5-datepicker .DayPicker-Caption{
43 display:table-caption;
44}
45.bp5-datepicker .DayPicker-Weekdays{
46 display:table-header-group;
47}
48.bp5-datepicker .DayPicker-WeekdaysRow{
49 display:table-row;
50}
51.bp5-datepicker .DayPicker-Weekday{
52 display:table-cell;
53 height:30px;
54 line-height:1;
55 text-align:center;
56 vertical-align:middle;
57 width:30px;
58 font-weight:600;
59 padding-top:5px;
60}
61.bp5-datepicker .DayPicker-Weekday abbr[title]{
62 text-decoration:none;
63}
64.bp5-datepicker .DayPicker-Body{
65 display:table-row-group;
66}
67.bp5-datepicker .DayPicker-Week{
68 display:table-row;
69}
70.bp5-datepicker .DayPicker-WeekNumber{
71 display:table-cell;
72 height:30px;
73 line-height:1;
74 text-align:center;
75 vertical-align:middle;
76 width:30px;
77 color:rgba(95, 107, 124, 0.6);
78 font-size:14px;
79}
80.bp5-datepicker .DayPicker-Day{
81 display:table-cell;
82 height:30px;
83 line-height:1;
84 text-align:center;
85 vertical-align:middle;
86 width:30px;
87 border-radius:2px;
88 cursor:pointer;
89}
90.bp5-datepicker .DayPicker-Day.DayPicker-Day--outside{
91 color:rgba(95, 107, 124, 0.6);
92}
93.bp5-datepicker .DayPicker-Day.DayPicker-Day--isToday .bp5-datepicker-day-wrapper{
94 border:1px solid rgba(17, 20, 24, 0.15);
95}
96.bp5-datepicker .DayPicker-Day:hover, .bp5-datepicker .DayPicker-Day:focus{
97 background:rgba(143, 153, 168, 0.15);
98 color:#1c2127;
99}
100.bp5-datepicker .DayPicker-Day:active{
101 background:rgba(143, 153, 168, 0.3);
102}
103.bp5-datepicker .DayPicker-Day.DayPicker-Day--selected{
104 background-color:#2d72d2;
105 border-radius:2px;
106 color:#ffffff;
107}
108.bp5-datepicker .DayPicker-Day.DayPicker-Day--selected:hover{
109 background-color:#215db0;
110}
111.bp5-datepicker .DayPicker-Day.DayPicker-Day--selected:active{
112 background-color:#184a90;
113}
114.bp5-datepicker .DayPicker-Day.DayPicker-Day--disabled{
115 background:none;
116 color:rgba(95, 107, 124, 0.6);
117 cursor:not-allowed;
118}
119
120.bp5-datepicker-navbar{
121 align-items:center;
122 display:flex;
123 height:30px;
124 left:0;
125 position:absolute;
126 right:0;
127 top:0;
128}
129.bp5-datepicker-navbar > .DayPicker-NavButton--prev{
130 margin-right:auto;
131}
132.bp5-datepicker-navbar > .DayPicker-NavButton--next{
133 margin-left:auto;
134}
135
136.bp5-datepicker-caption{
137 display:flex;
138 flex-direction:row;
139 justify-content:space-between;
140 margin:0 25px 5px;
141}
142.bp5-datepicker-caption > *{
143 flex-grow:0;
144 flex-shrink:0;
145}
146.bp5-datepicker-caption > :first-child{
147 flex-grow:1;
148 flex-shrink:1;
149}
150.bp5-datepicker-caption .bp5-html-select select{
151 font-weight:600;
152 padding-left:5px;
153 padding-right:16px;
154}
155.bp5-datepicker-caption .bp5-html-select select + .bp5-icon{
156 right:2px;
157}
158.bp5-datepicker-caption + .bp5-divider{
159 margin:0;
160}
161
162.bp5-datepicker-month-select{
163 flex-shrink:1;
164}
165
166.bp5-datepicker-year-select{
167 flex-shrink:1;
168 min-width:60px;
169}
170
171.bp5-datepicker-caption-measure{
172 font-weight:600;
173 padding-left:5px;
174}
175
176.bp5-datepicker-content{
177 align-items:center;
178 display:flex;
179 flex-direction:column;
180 gap:5px;
181}
182.bp5-datepicker-content > .bp5-divider{
183 margin:0;
184 width:calc(100% - 10px);
185}
186
187.bp5-datepicker-footer{
188 display:flex;
189 justify-content:space-between;
190 width:100%;
191}
192
193.bp5-dark .bp5-datepicker{
194 background:#2f343c;
195}
196.bp5-dark .bp5-datepicker .DayPicker-WeekNumber{
197 color:rgba(171, 179, 191, 0.6);
198}
199.bp5-dark .bp5-datepicker .DayPicker-Day.DayPicker-Day--outside{
200 color:rgba(171, 179, 191, 0.6);
201}
202.bp5-dark .bp5-datepicker .DayPicker-Day.DayPicker-Day--isToday .bp5-datepicker-day-wrapper{
203 border:1px solid rgba(255, 255, 255, 0.2);
204}
205.bp5-dark .bp5-datepicker .DayPicker-Day:hover, .bp5-dark .bp5-datepicker .DayPicker-Day:focus{
206 background:rgba(143, 153, 168, 0.15);
207 color:#ffffff;
208}
209.bp5-dark .bp5-datepicker .DayPicker-Day:active{
210 background:rgba(143, 153, 168, 0.3);
211}
212.bp5-dark .bp5-datepicker .DayPicker-Day.DayPicker-Day--selected{
213 background-color:#2d72d2;
214}
215.bp5-dark .bp5-datepicker .DayPicker-Day.DayPicker-Day--selected:hover{
216 background-color:#215db0;
217}
218.bp5-dark .bp5-datepicker .DayPicker-Day.DayPicker-Day--selected:active{
219 background-color:#184a90;
220}
221.bp5-dark .bp5-datepicker .DayPicker-Day.DayPicker-Day--disabled{
222 background:none;
223 color:rgba(171, 179, 191, 0.6);
224}
225.bp5-dark .bp5-datepicker .bp5-datepicker-footer{
226 border-top-color:rgba(17, 20, 24, 0.4);
227}
228
229.bp5-datepicker-timepicker-wrapper{
230 align-items:center;
231 display:flex;
232 flex-direction:column;
233}
234.bp5-datepicker-timepicker-wrapper .bp5-timepicker-arrow-row:empty + .bp5-timepicker-input-row{
235 margin:5px 0;
236}
237.bp5-daterangepicker{
238 display:flex;
239}
240.bp5-daterangepicker .DayPicker-NavButton--interactionDisabled{
241 display:none;
242}
243.bp5-daterangepicker.bp5-daterangepicker-contiguous .DayPicker{
244 min-width:220px;
245}
246.bp5-daterangepicker.bp5-daterangepicker-single-month .DayPicker{
247 min-width:210px;
248}
249.bp5-daterangepicker .DayPicker-Day{
250}
251.bp5-daterangepicker .DayPicker-Day--outside{
252 visibility:hidden;
253}
254.bp5-daterangepicker .DayPicker-Day--hovered-range{
255 border-radius:0;
256 color:#215db0;
257}
258.bp5-daterangepicker .DayPicker-Day--hovered-range:not(.DayPicker-Day--selected):not(.DayPicker-Day--selected-range):not(.DayPicker-Day--selected-range-start):not(.DayPicker-Day--selected-range-end){
259 background-color:rgba(45, 114, 210, 0.1);
260}
261.bp5-daterangepicker .DayPicker-Day--selected-range{
262 background-color:rgba(45, 114, 210, 0.1);
263 border-radius:0;
264 color:#215db0;
265}
266.bp5-daterangepicker .DayPicker-Day--selected-range:hover{
267 background-color:rgba(45, 114, 210, 0.2);
268 color:#215db0;
269}
270.bp5-daterangepicker .DayPicker-Day--selected-range-start:not(.DayPicker-Day--selected-range-end):not(.DayPicker-Day--hovered-range-end){
271 border-bottom-right-radius:0;
272 border-top-right-radius:0;
273}
274.bp5-daterangepicker .DayPicker-Day--selected-range-end:not(.DayPicker-Day--selected-range-start):not(.DayPicker-Day--hovered-range-start){
275 border-bottom-left-radius:0;
276 border-top-left-radius:0;
277}
278.bp5-daterangepicker .DayPicker-Day--hovered-range-start:not(.DayPicker-Day--hovered-range-end){
279 border-bottom-right-radius:0;
280 border-top-right-radius:0;
281}
282.bp5-daterangepicker .DayPicker-Day--hovered-range-end:not(.DayPicker-Day--hovered-range-start){
283 border-bottom-left-radius:0;
284 border-top-left-radius:0;
285}
286.bp5-dark .bp5-daterangepicker .DayPicker-Day--hovered-range{
287 color:#f6f7f9;
288}
289.bp5-dark .bp5-daterangepicker .DayPicker-Day--hovered-range:not(.DayPicker-Day--selected):not(.DayPicker-Day--selected-range):not(.DayPicker-Day--selected-range-start):not(.DayPicker-Day--selected-range-end){
290 background-color:rgba(45, 114, 210, 0.2);
291}
292.bp5-dark .bp5-daterangepicker .DayPicker-Day--selected-range{
293 background-color:rgba(45, 114, 210, 0.2);
294 color:#f6f7f9;
295}
296.bp5-dark .bp5-daterangepicker .DayPicker-Day--selected-range:hover{
297 background-color:rgba(45, 114, 210, 0.4);
298}
299
300.bp5-daterangepicker-calendars{
301 display:flex;
302 flex-direction:row;
303 justify-content:space-around;
304 width:100%;
305}
306
307.bp5-daterangepicker-timepickers{
308 display:flex;
309 flex-direction:row;
310 justify-content:space-around;
311 width:100%;
312}
313.bp5-daterangepicker-timepickers .bp5-timepicker-arrow-row:empty + .bp5-timepicker-input-row{
314 margin:5px 0;
315}
316
317.bp5-menu.bp5-daterangepicker-shortcuts{
318 min-width:120px;
319 padding:0;
320}
321.bp5-timepicker{
322 white-space:nowrap;
323}
324.bp5-timepicker .bp5-timepicker-arrow-row{
325 padding:0 1px;
326}
327.bp5-timepicker .bp5-timepicker-arrow-button{
328 color:#5f6b7c;
329 display:inline-block;
330 padding:4px 0;
331 text-align:center;
332 width:33px;
333}
334.bp5-timepicker .bp5-timepicker-arrow-button:hover{
335 color:#1c2127;
336}
337.bp5-dark .bp5-timepicker .bp5-timepicker-arrow-button{
338 color:#abb3bf;
339}
340.bp5-dark .bp5-timepicker .bp5-timepicker-arrow-button:hover{
341 color:#f6f7f9;
342}
343.bp5-timepicker .bp5-timepicker-arrow-button + .bp5-timepicker-arrow-button{
344 margin-left:11px;
345}
346.bp5-timepicker .bp5-timepicker-arrow-button:hover{
347 cursor:pointer;
348}
349.bp5-timepicker .bp5-timepicker-input-row{
350 background:#ffffff;
351 border-radius:2px;
352 box-shadow:inset 0 0 0 1px rgba(17, 20, 24, 0.2), inset 0 1px 1px rgba(17, 20, 24, 0.3);
353 display:inline-block;
354 height:30px;
355 line-height:28px;
356 padding:0 1px;
357 vertical-align:middle;
358}
359.bp5-timepicker .bp5-timepicker-divider-text{
360 color:#5f6b7c;
361 display:inline-block;
362 font-size:16px;
363 text-align:center;
364 width:11px;
365}
366.bp5-timepicker .bp5-timepicker-input{
367 -moz-appearance:textfield;
368 -webkit-appearance:textfield;
369 background:transparent;
370 border:0;
371 border-radius:2px;
372 box-shadow:0 0 0 0 rgba(45, 114, 210, 0), 0 0 0 0 rgba(45, 114, 210, 0);
373 color:#1c2127;
374 height:28px;
375 outline:0;
376 padding:0;
377 text-align:center;
378 transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
379 width:33px;
380}
381.bp5-timepicker .bp5-timepicker-input:focus{
382 box-shadow:inset 0 0 0 1px #2d72d2, 0 0 0 2px rgba(45, 114, 210, 0.3);
383}
384.bp5-timepicker .bp5-timepicker-input::-webkit-outer-spin-button, .bp5-timepicker .bp5-timepicker-input::-webkit-inner-spin-button{
385 -webkit-appearance:none;
386 appearance:none;
387 margin:0;
388}
389.bp5-timepicker .bp5-timepicker-input.bp5-intent-primary{
390 box-shadow:0 0 0 0 rgba(45, 114, 210, 0), 0 0 0 0 rgba(45, 114, 210, 0), inset 0 0 0 1px #2d72d2, inset 0 0 0 1px rgba(17, 20, 24, 0.2), inset 0 1px 1px rgba(17, 20, 24, 0.3);
391}
392.bp5-timepicker .bp5-timepicker-input.bp5-intent-primary:focus{
393 box-shadow:inset 0 0 0 1px #2d72d2, 0 0 0 2px rgba(45, 114, 210, 0.3), inset 0 1px 1px rgba(17, 20, 24, 0.2);
394}
395.bp5-timepicker .bp5-timepicker-input.bp5-intent-primary[readonly]{
396 box-shadow:inset 0 0 0 1px #2d72d2;
397}
398.bp5-timepicker .bp5-timepicker-input.bp5-intent-primary:disabled, .bp5-timepicker .bp5-timepicker-input.bp5-intent-primary.bp5-disabled{
399 box-shadow:none;
400}
401.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-primary{
402 box-shadow:0 0 0 0 rgba(76, 144, 240, 0), 0 0 0 0 rgba(76, 144, 240, 0), 0 0 0 0 rgba(76, 144, 240, 0), inset 0 0 0 1px #4c90f0, inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
403}
404.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-primary:focus{
405 box-shadow:inset 0 0 0 1px #4c90f0, inset 0 0 0 1px #4c90f0, 0 0 0 2px rgba(76, 144, 240, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
406}
407.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-primary[readonly]{
408 box-shadow:inset 0 0 0 1px #4c90f0;
409}
410.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-primary:disabled, .bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-primary.bp5-disabled{
411 box-shadow:none;
412}
413.bp5-timepicker .bp5-timepicker-input.bp5-intent-success{
414 box-shadow:0 0 0 0 rgba(35, 133, 81, 0), 0 0 0 0 rgba(35, 133, 81, 0), inset 0 0 0 1px #238551, inset 0 0 0 1px rgba(17, 20, 24, 0.2), inset 0 1px 1px rgba(17, 20, 24, 0.3);
415}
416.bp5-timepicker .bp5-timepicker-input.bp5-intent-success:focus{
417 box-shadow:inset 0 0 0 1px #238551, 0 0 0 2px rgba(35, 133, 81, 0.3), inset 0 1px 1px rgba(17, 20, 24, 0.2);
418}
419.bp5-timepicker .bp5-timepicker-input.bp5-intent-success[readonly]{
420 box-shadow:inset 0 0 0 1px #238551;
421}
422.bp5-timepicker .bp5-timepicker-input.bp5-intent-success:disabled, .bp5-timepicker .bp5-timepicker-input.bp5-intent-success.bp5-disabled{
423 box-shadow:none;
424}
425.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-success{
426 box-shadow:0 0 0 0 rgba(50, 164, 103, 0), 0 0 0 0 rgba(50, 164, 103, 0), 0 0 0 0 rgba(50, 164, 103, 0), inset 0 0 0 1px #32a467, inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
427}
428.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-success:focus{
429 box-shadow:inset 0 0 0 1px #32a467, inset 0 0 0 1px #32a467, 0 0 0 2px rgba(50, 164, 103, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
430}
431.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-success[readonly]{
432 box-shadow:inset 0 0 0 1px #32a467;
433}
434.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-success:disabled, .bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-success.bp5-disabled{
435 box-shadow:none;
436}
437.bp5-timepicker .bp5-timepicker-input.bp5-intent-warning{
438 box-shadow:0 0 0 0 rgba(200, 118, 25, 0), 0 0 0 0 rgba(200, 118, 25, 0), inset 0 0 0 1px #c87619, inset 0 0 0 1px rgba(17, 20, 24, 0.2), inset 0 1px 1px rgba(17, 20, 24, 0.3);
439}
440.bp5-timepicker .bp5-timepicker-input.bp5-intent-warning:focus{
441 box-shadow:inset 0 0 0 1px #c87619, 0 0 0 2px rgba(200, 118, 25, 0.3), inset 0 1px 1px rgba(17, 20, 24, 0.2);
442}
443.bp5-timepicker .bp5-timepicker-input.bp5-intent-warning[readonly]{
444 box-shadow:inset 0 0 0 1px #c87619;
445}
446.bp5-timepicker .bp5-timepicker-input.bp5-intent-warning:disabled, .bp5-timepicker .bp5-timepicker-input.bp5-intent-warning.bp5-disabled{
447 box-shadow:none;
448}
449.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-warning{
450 box-shadow:0 0 0 0 rgba(236, 154, 60, 0), 0 0 0 0 rgba(236, 154, 60, 0), 0 0 0 0 rgba(236, 154, 60, 0), inset 0 0 0 1px #ec9a3c, inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
451}
452.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-warning:focus{
453 box-shadow:inset 0 0 0 1px #ec9a3c, inset 0 0 0 1px #ec9a3c, 0 0 0 2px rgba(236, 154, 60, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
454}
455.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-warning[readonly]{
456 box-shadow:inset 0 0 0 1px #ec9a3c;
457}
458.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-warning:disabled, .bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-warning.bp5-disabled{
459 box-shadow:none;
460}
461.bp5-timepicker .bp5-timepicker-input.bp5-intent-danger{
462 box-shadow:0 0 0 0 rgba(205, 66, 70, 0), 0 0 0 0 rgba(205, 66, 70, 0), inset 0 0 0 1px #cd4246, inset 0 0 0 1px rgba(17, 20, 24, 0.2), inset 0 1px 1px rgba(17, 20, 24, 0.3);
463}
464.bp5-timepicker .bp5-timepicker-input.bp5-intent-danger:focus{
465 box-shadow:inset 0 0 0 1px #cd4246, 0 0 0 2px rgba(205, 66, 70, 0.3), inset 0 1px 1px rgba(17, 20, 24, 0.2);
466}
467.bp5-timepicker .bp5-timepicker-input.bp5-intent-danger[readonly]{
468 box-shadow:inset 0 0 0 1px #cd4246;
469}
470.bp5-timepicker .bp5-timepicker-input.bp5-intent-danger:disabled, .bp5-timepicker .bp5-timepicker-input.bp5-intent-danger.bp5-disabled{
471 box-shadow:none;
472}
473.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-danger{
474 box-shadow:0 0 0 0 rgba(231, 106, 110, 0), 0 0 0 0 rgba(231, 106, 110, 0), 0 0 0 0 rgba(231, 106, 110, 0), inset 0 0 0 1px #e76a6e, inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
475}
476.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-danger:focus{
477 box-shadow:inset 0 0 0 1px #e76a6e, inset 0 0 0 1px #e76a6e, 0 0 0 2px rgba(231, 106, 110, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
478}
479.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-danger[readonly]{
480 box-shadow:inset 0 0 0 1px #e76a6e;
481}
482.bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-danger:disabled, .bp5-dark .bp5-timepicker .bp5-timepicker-input.bp5-intent-danger.bp5-disabled{
483 box-shadow:none;
484}
485@media (forced-colors: active) and (prefers-color-scheme: dark){
486 .bp5-timepicker .bp5-timepicker-input{
487 border:1px solid buttonborder;
488 }
489}
490.bp5-timepicker .bp5-timepicker-ampm-select{
491 margin-left:5px;
492}
493.bp5-timepicker.bp5-disabled .bp5-timepicker-input-row{
494 background:rgba(211, 216, 222, 0.5);
495 box-shadow:none;
496 color:rgba(95, 107, 124, 0.6);
497 cursor:not-allowed;
498 resize:none;
499}
500.bp5-timepicker.bp5-disabled .bp5-timepicker-input-row::-moz-placeholder{
501 color:rgba(95, 107, 124, 0.6);
502}
503.bp5-timepicker.bp5-disabled .bp5-timepicker-input-row:-ms-input-placeholder{
504 color:rgba(95, 107, 124, 0.6);
505}
506.bp5-timepicker.bp5-disabled .bp5-timepicker-input-row::placeholder{
507 color:rgba(95, 107, 124, 0.6);
508}
509.bp5-timepicker.bp5-disabled .bp5-timepicker-input,
510.bp5-timepicker.bp5-disabled .bp5-timepicker-divider-text{
511 color:rgba(95, 107, 124, 0.6);
512 cursor:not-allowed;
513}
514.bp5-timepicker.bp5-disabled .bp5-timepicker-arrow-button,
515.bp5-timepicker.bp5-disabled .bp5-timepicker-arrow-button:hover{
516 color:rgba(95, 107, 124, 0.6);
517 cursor:not-allowed;
518}
519
520.bp5-dark .bp5-timepicker .bp5-timepicker-input-row{
521 background:rgba(17, 20, 24, 0.3);
522 box-shadow:inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
523}
524.bp5-dark .bp5-timepicker .bp5-timepicker-divider-text{
525 color:#abb3bf;
526}
527.bp5-dark .bp5-timepicker .bp5-timepicker-input{
528 color:#f6f7f9;
529}
530.bp5-dark .bp5-timepicker.bp5-disabled .bp5-timepicker-input,
531.bp5-dark .bp5-timepicker.bp5-disabled .bp5-timepicker-divider-text,
532.bp5-dark .bp5-timepicker.bp5-disabled .bp5-timepicker-arrow-button,
533.bp5-dark .bp5-timepicker.bp5-disabled .bp5-timepicker-arrow-button:hover{
534 color:rgba(171, 179, 191, 0.6);
535}
\No newline at end of file