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