|
7 | 7 | position: fixed; |
8 | 8 | top: 0; |
9 | 9 | left: 0; |
10 | | - display: -ms-flexbox; |
11 | 10 | display: flex; |
12 | | - -ms-flex-direction: column; |
13 | | - flex-direction: column; |
14 | | - -ms-flex-align: center; |
15 | | - align-items: center; |
16 | | - -ms-flex-pack: center; |
17 | | - justify-content: center; |
| 11 | + flex-direction: column; |
| 12 | + align-items: center; |
| 13 | + justify-content: center; |
18 | 14 | z-index: 999; |
19 | 15 | width: 100%; |
20 | 16 | height: 100%; |
21 | | - font-family: 'Raleway', 'Open Sans', Arial; |
| 17 | + font-family: inherit; |
22 | 18 | color: #333; |
23 | | - -webkit-user-select: none; |
24 | | - -moz-user-select: none; |
25 | | - -ms-user-select: none; |
26 | | - user-select: none; |
| 19 | + user-select: none; |
27 | 20 | } |
28 | 21 | #Datepickk.MSIE:not(.wrapped):not(.inline) .d-calendar { |
29 | 22 | height: 560px; |
|
150 | 143 | #Datepickk.fullscreen .d-calendar input + label { |
151 | 144 | outline: 1px solid #eaeaea; |
152 | 145 | box-sizing: border-box; |
153 | | - -ms-flex-align: start !important; |
154 | | - align-items: flex-start !important; |
155 | | - -ms-flex-pack: end !important; |
156 | | - justify-content: flex-end !important; |
| 146 | + align-items: flex-start !important; |
| 147 | + justify-content: flex-end !important; |
157 | 148 | } |
158 | 149 | #Datepickk.fullscreen .d-calendar input + label text { |
159 | 150 | padding: 5px 10px 0 0; |
|
162 | 153 | max-width: none; |
163 | 154 | } |
164 | 155 | #Datepickk .d-legend { |
165 | | - display: -ms-flexbox; |
166 | 156 | display: flex; |
167 | | - -ms-flex-wrap: wrap; |
168 | | - flex-wrap: wrap; |
169 | | - -ms-flex-pack: center; |
170 | | - justify-content: center; |
| 157 | + flex-wrap: wrap; |
| 158 | + justify-content: center; |
171 | 159 | width: 100%; |
172 | 160 | z-index: 2; |
173 | 161 | background-color: whitesmoke; |
|
209 | 197 | position: relative; |
210 | 198 | max-width: 500px; |
211 | 199 | max-height: 560px; |
212 | | - display: -ms-flexbox; |
213 | 200 | display: flex; |
214 | | - -ms-flex-direction: column; |
215 | | - flex-direction: column; |
216 | | - -ms-flex-pack: start; |
217 | | - justify-content: flex-start; |
218 | | - -ms-flex-positive: 1; |
219 | | - flex-grow: 1; |
| 201 | + flex-direction: column; |
| 202 | + justify-content: flex-start; |
| 203 | + flex-grow: 1; |
220 | 204 | z-index: 2; |
221 | 205 | } |
222 | 206 | #Datepickk .d-header { |
|
301 | 285 | content: ""; |
302 | 286 | } |
303 | 287 | #Datepickk .d-month-picker { |
304 | | - display: -ms-flexbox; |
305 | 288 | display: flex; |
306 | | - -ms-flex-pack: justify; |
307 | | - justify-content: space-between; |
| 289 | + justify-content: space-between; |
308 | 290 | background-color: rgba(27, 54, 63, 0.9); |
309 | 291 | height: 0; |
310 | 292 | overflow: hidden; |
|
332 | 314 | color: white; |
333 | 315 | } |
334 | 316 | #Datepickk .d-year-picker { |
335 | | - display: -ms-flexbox; |
336 | 317 | display: flex; |
337 | | - -ms-flex-pack: justify; |
338 | | - justify-content: space-between; |
| 318 | + justify-content: space-between; |
339 | 319 | background-color: rgba(27, 54, 63, 0.9); |
340 | 320 | height: 0; |
341 | 321 | overflow: hidden; |
|
363 | 343 | color: white; |
364 | 344 | } |
365 | 345 | #Datepickk .d-weekdays { |
366 | | - display: -ms-flexbox; |
367 | 346 | display: flex; |
368 | 347 | } |
369 | 348 | #Datepickk .d-week { |
370 | 349 | background-color: #E95A5A; |
371 | 350 | color: white; |
372 | | - display: -ms-flexbox; |
373 | 351 | display: flex; |
374 | 352 | width: 100%; |
375 | 353 | } |
376 | 354 | #Datepickk .d-week + .d-week { |
377 | 355 | border-left: 1px solid rgba(255, 255, 255, 0.05); |
378 | 356 | } |
379 | 357 | #Datepickk .d-week > div { |
380 | | - -ms-flex-preferred-size: calc(100% / 7); |
381 | | - flex-basis: calc(100% / 7); |
| 358 | + flex-basis: calc(100% / 7); |
382 | 359 | text-align: center; |
383 | 360 | } |
384 | 361 | #Datepickk .d-week > div p { |
|
391 | 368 | } |
392 | 369 | #Datepickk .d-table { |
393 | 370 | width: 100%; |
394 | | - display: -ms-flexbox; |
395 | 371 | display: flex; |
396 | | - -ms-flex-wrap: wrap; |
397 | | - flex-wrap: wrap; |
398 | | - -ms-flex: 1; |
399 | | - flex: 1; |
| 372 | + flex-wrap: wrap; |
| 373 | + flex: 1; |
400 | 374 | } |
401 | 375 | #Datepickk .d-table:first-child:nth-last-child(n + 3), |
402 | 376 | #Datepickk .d-table:first-child:nth-last-child(n + 3) ~ div { |
403 | | - -ms-flex: 0; |
404 | | - flex: 0; |
405 | | - -ms-flex-preferred-size: calc(100% / 3 - 1px); |
406 | | - flex-basis: calc(100% / 3 - 1px); |
| 377 | + flex: 0; |
| 378 | + flex-basis: calc(100% / 3 - 1px); |
407 | 379 | /*-1px due to browser render*/ |
408 | 380 | border-bottom: 1px solid rgba(0, 0, 0, 0.05); |
409 | 381 | } |
|
420 | 392 | flex-basis: calc(100% / 7); |
421 | 393 | -ms-flex-preferred-size: 14.28%; |
422 | 394 | /*Keep -> IE render fail*/ |
423 | | - display: -ms-flexbox; |
424 | 395 | display: flex; |
425 | | - -ms-flex-align: center; |
426 | | - align-items: center; |
427 | | - -ms-flex-pack: center; |
428 | | - justify-content: center; |
| 396 | + align-items: center; |
| 397 | + justify-content: center; |
429 | 398 | cursor: pointer; |
430 | 399 | transition: background-color 0.2s ease, background 0.2s ease, color 0.2s ease; |
431 | 400 | position: relative; |
|
551 | 520 | content: none; |
552 | 521 | } |
553 | 522 | #Datepickk .d-tables { |
554 | | - display: -ms-flexbox; |
555 | 523 | display: flex; |
556 | | - -ms-flex: 1; |
557 | | - flex: 1; |
558 | | - -ms-flex-wrap: wrap; |
559 | | - flex-wrap: wrap; |
| 524 | + flex: 1; |
| 525 | + flex-wrap: wrap; |
560 | 526 | } |
561 | 527 | #Datepickk .d-tables:not(.locked) input:not(:checked) + label:not(.hidden):hover { |
562 | 528 | color: #222; |
|
0 commit comments