flatpickr 2.5.6.0 → 2.5.8.0
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.
- checksums.yaml +4 -4
- data/lib/flatpickr/version.rb +1 -1
- data/vendor/assets/javascripts/flatpickr.js +39 -30
- data/vendor/assets/javascripts/flatpickr/l10n/lt.js +1 -1
- data/vendor/assets/stylesheets/flatpickr.css +2 -2
- data/vendor/assets/stylesheets/flatpickr/themes/airbnb.css +39 -36
- data/vendor/assets/stylesheets/flatpickr/themes/confetti.css +38 -37
- data/vendor/assets/stylesheets/flatpickr/themes/dark.css +39 -36
- data/vendor/assets/stylesheets/flatpickr/themes/{base16_flat.css → light.css} +96 -78
- data/vendor/assets/stylesheets/flatpickr/themes/material_blue.css +38 -37
- data/vendor/assets/stylesheets/flatpickr/themes/material_green.css +38 -37
- data/vendor/assets/stylesheets/flatpickr/themes/material_orange.css +38 -37
- data/vendor/assets/stylesheets/flatpickr/themes/material_red.css +38 -37
- metadata +3 -3
@@ -32,8 +32,8 @@
|
|
32
32
|
z-index: 99999;
|
33
33
|
}
|
34
34
|
.flatpickr-calendar.animate.open {
|
35
|
-
-webkit-animation:
|
36
|
-
animation:
|
35
|
+
-webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
36
|
+
animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
37
37
|
}
|
38
38
|
.flatpickr-calendar.inline {
|
39
39
|
display: block;
|
@@ -276,7 +276,7 @@
|
|
276
276
|
position: absolute;
|
277
277
|
width: 75%;
|
278
278
|
left: 12.5%;
|
279
|
-
padding:
|
279
|
+
padding: 4.2px 0 0 0;
|
280
280
|
line-height: 1;
|
281
281
|
height: 28px;
|
282
282
|
display: inline-block;
|
@@ -287,26 +287,26 @@
|
|
287
287
|
.flatpickr-current-month.slideLeft {
|
288
288
|
-webkit-transform: translate3d(-100%, 0px, 0px);
|
289
289
|
transform: translate3d(-100%, 0px, 0px);
|
290
|
-
-webkit-animation:
|
291
|
-
animation:
|
290
|
+
-webkit-animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
291
|
+
animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
292
292
|
}
|
293
293
|
.flatpickr-current-month.slideLeftNew {
|
294
294
|
-webkit-transform: translate3d(100%, 0px, 0px);
|
295
295
|
transform: translate3d(100%, 0px, 0px);
|
296
|
-
-webkit-animation:
|
297
|
-
animation:
|
296
|
+
-webkit-animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
297
|
+
animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
298
298
|
}
|
299
299
|
.flatpickr-current-month.slideRight {
|
300
300
|
-webkit-transform: translate3d(100%, 0px, 0px);
|
301
301
|
transform: translate3d(100%, 0px, 0px);
|
302
|
-
-webkit-animation:
|
303
|
-
animation:
|
302
|
+
-webkit-animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
303
|
+
animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
304
304
|
}
|
305
305
|
.flatpickr-current-month.slideRightNew {
|
306
306
|
-webkit-transform: translate3d(0, 0, 0px);
|
307
307
|
transform: translate3d(0, 0, 0px);
|
308
|
-
-webkit-animation:
|
309
|
-
animation:
|
308
|
+
-webkit-animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
309
|
+
animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
310
310
|
}
|
311
311
|
.flatpickr-current-month span.cur-month {
|
312
312
|
font-family: inherit;
|
@@ -373,17 +373,16 @@
|
|
373
373
|
span.flatpickr-weekday {
|
374
374
|
cursor: default;
|
375
375
|
font-size: 90%;
|
376
|
+
background: #ffb866;
|
376
377
|
color: rgba(0,0,0,0.54);
|
377
378
|
line-height: 1;
|
378
379
|
margin: 0;
|
379
|
-
background: #ffb866;
|
380
380
|
text-align: center;
|
381
381
|
display: block;
|
382
382
|
-webkit-flex: 1;
|
383
383
|
-ms-flex: 1;
|
384
384
|
flex: 1;
|
385
385
|
font-weight: bolder;
|
386
|
-
margin: 0;
|
387
386
|
}
|
388
387
|
.dayContainer,
|
389
388
|
.flatpickr-weeks {
|
@@ -396,7 +395,6 @@ span.flatpickr-weekday {
|
|
396
395
|
display: -ms-flexbox;
|
397
396
|
display: flex;
|
398
397
|
width: 315px;
|
399
|
-
background: #fff;
|
400
398
|
border-left: 1px solid rgba(72,72,72,0.1);
|
401
399
|
border-right: 1px solid rgba(72,72,72,0.1);
|
402
400
|
}
|
@@ -426,8 +424,8 @@ span.flatpickr-weekday {
|
|
426
424
|
opacity: 1;
|
427
425
|
}
|
428
426
|
.flatpickr-calendar.animate .dayContainer.slideLeft {
|
429
|
-
-webkit-animation:
|
430
|
-
animation:
|
427
|
+
-webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
428
|
+
animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
431
429
|
}
|
432
430
|
.flatpickr-calendar.animate .dayContainer.slideLeft,
|
433
431
|
.flatpickr-calendar.animate .dayContainer.slideLeftNew {
|
@@ -435,18 +433,18 @@ span.flatpickr-weekday {
|
|
435
433
|
transform: translate3d(-100%, 0px, 0px);
|
436
434
|
}
|
437
435
|
.flatpickr-calendar.animate .dayContainer.slideLeftNew {
|
438
|
-
-webkit-animation:
|
439
|
-
animation:
|
436
|
+
-webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
437
|
+
animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
440
438
|
}
|
441
439
|
.flatpickr-calendar.animate .dayContainer.slideRight {
|
442
|
-
-webkit-animation:
|
443
|
-
animation:
|
440
|
+
-webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
441
|
+
animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
444
442
|
-webkit-transform: translate3d(100%, 0px, 0px);
|
445
443
|
transform: translate3d(100%, 0px, 0px);
|
446
444
|
}
|
447
445
|
.flatpickr-calendar.animate .dayContainer.slideRightNew {
|
448
|
-
-webkit-animation:
|
449
|
-
animation:
|
446
|
+
-webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
447
|
+
animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
450
448
|
}
|
451
449
|
.flatpickr-day {
|
452
450
|
background: none;
|
@@ -574,7 +572,6 @@ span.flatpickr-weekday {
|
|
574
572
|
.flatpickr-weekwrapper .flatpickr-weeks {
|
575
573
|
padding: 0 12px;
|
576
574
|
border-left: 1px solid rgba(72,72,72,0.1);
|
577
|
-
box-shadow: 1px 0 0 rgba(72,72,72,0.1);
|
578
575
|
}
|
579
576
|
.flatpickr-weekwrapper .flatpickr-weekday {
|
580
577
|
float: none;
|
@@ -681,6 +678,10 @@ span.flatpickr-weekday {
|
|
681
678
|
-moz-user-select: none;
|
682
679
|
-ms-user-select: none;
|
683
680
|
user-select: none;
|
681
|
+
-webkit-align-self: center;
|
682
|
+
-ms-flex-item-align: center;
|
683
|
+
-ms-grid-row-align: center;
|
684
|
+
align-self: center;
|
684
685
|
}
|
685
686
|
.flatpickr-time .flatpickr-am-pm {
|
686
687
|
outline: 0;
|
@@ -696,7 +697,7 @@ span.flatpickr-weekday {
|
|
696
697
|
.flatpickr-input[readonly] {
|
697
698
|
cursor: pointer;
|
698
699
|
}
|
699
|
-
@-webkit-keyframes
|
700
|
+
@-webkit-keyframes fpFadeInDown {
|
700
701
|
from {
|
701
702
|
opacity: 0;
|
702
703
|
-webkit-transform: translate3d(0, -20px, 0);
|
@@ -708,7 +709,7 @@ span.flatpickr-weekday {
|
|
708
709
|
transform: translate3d(0, 0, 0);
|
709
710
|
}
|
710
711
|
}
|
711
|
-
@keyframes
|
712
|
+
@keyframes fpFadeInDown {
|
712
713
|
from {
|
713
714
|
opacity: 0;
|
714
715
|
-webkit-transform: translate3d(0, -20px, 0);
|
@@ -720,7 +721,7 @@ span.flatpickr-weekday {
|
|
720
721
|
transform: translate3d(0, 0, 0);
|
721
722
|
}
|
722
723
|
}
|
723
|
-
@-webkit-keyframes
|
724
|
+
@-webkit-keyframes fpSlideLeft {
|
724
725
|
from {
|
725
726
|
-webkit-transform: translate3d(0px, 0px, 0px);
|
726
727
|
transform: translate3d(0px, 0px, 0px);
|
@@ -730,7 +731,7 @@ span.flatpickr-weekday {
|
|
730
731
|
transform: translate3d(-100%, 0px, 0px);
|
731
732
|
}
|
732
733
|
}
|
733
|
-
@keyframes
|
734
|
+
@keyframes fpSlideLeft {
|
734
735
|
from {
|
735
736
|
-webkit-transform: translate3d(0px, 0px, 0px);
|
736
737
|
transform: translate3d(0px, 0px, 0px);
|
@@ -740,7 +741,7 @@ span.flatpickr-weekday {
|
|
740
741
|
transform: translate3d(-100%, 0px, 0px);
|
741
742
|
}
|
742
743
|
}
|
743
|
-
@-webkit-keyframes
|
744
|
+
@-webkit-keyframes fpSlideLeftNew {
|
744
745
|
from {
|
745
746
|
-webkit-transform: translate3d(100%, 0px, 0px);
|
746
747
|
transform: translate3d(100%, 0px, 0px);
|
@@ -750,7 +751,7 @@ span.flatpickr-weekday {
|
|
750
751
|
transform: translate3d(0px, 0px, 0px);
|
751
752
|
}
|
752
753
|
}
|
753
|
-
@keyframes
|
754
|
+
@keyframes fpSlideLeftNew {
|
754
755
|
from {
|
755
756
|
-webkit-transform: translate3d(100%, 0px, 0px);
|
756
757
|
transform: translate3d(100%, 0px, 0px);
|
@@ -760,7 +761,7 @@ span.flatpickr-weekday {
|
|
760
761
|
transform: translate3d(0px, 0px, 0px);
|
761
762
|
}
|
762
763
|
}
|
763
|
-
@-webkit-keyframes
|
764
|
+
@-webkit-keyframes fpSlideRight {
|
764
765
|
from {
|
765
766
|
-webkit-transform: translate3d(0, 0, 0px);
|
766
767
|
transform: translate3d(0, 0, 0px);
|
@@ -770,7 +771,7 @@ span.flatpickr-weekday {
|
|
770
771
|
transform: translate3d(100%, 0px, 0px);
|
771
772
|
}
|
772
773
|
}
|
773
|
-
@keyframes
|
774
|
+
@keyframes fpSlideRight {
|
774
775
|
from {
|
775
776
|
-webkit-transform: translate3d(0, 0, 0px);
|
776
777
|
transform: translate3d(0, 0, 0px);
|
@@ -780,7 +781,7 @@ span.flatpickr-weekday {
|
|
780
781
|
transform: translate3d(100%, 0px, 0px);
|
781
782
|
}
|
782
783
|
}
|
783
|
-
@-webkit-keyframes
|
784
|
+
@-webkit-keyframes fpSlideRightNew {
|
784
785
|
from {
|
785
786
|
-webkit-transform: translate3d(-100%, 0, 0px);
|
786
787
|
transform: translate3d(-100%, 0, 0px);
|
@@ -790,7 +791,7 @@ span.flatpickr-weekday {
|
|
790
791
|
transform: translate3d(0, 0, 0px);
|
791
792
|
}
|
792
793
|
}
|
793
|
-
@keyframes
|
794
|
+
@keyframes fpSlideRightNew {
|
794
795
|
from {
|
795
796
|
-webkit-transform: translate3d(-100%, 0, 0px);
|
796
797
|
transform: translate3d(-100%, 0, 0px);
|
@@ -800,7 +801,7 @@ span.flatpickr-weekday {
|
|
800
801
|
transform: translate3d(0, 0, 0px);
|
801
802
|
}
|
802
803
|
}
|
803
|
-
@-webkit-keyframes
|
804
|
+
@-webkit-keyframes fpFadeOut {
|
804
805
|
from {
|
805
806
|
opacity: 1;
|
806
807
|
}
|
@@ -808,7 +809,7 @@ span.flatpickr-weekday {
|
|
808
809
|
opacity: 0;
|
809
810
|
}
|
810
811
|
}
|
811
|
-
@keyframes
|
812
|
+
@keyframes fpFadeOut {
|
812
813
|
from {
|
813
814
|
opacity: 1;
|
814
815
|
}
|
@@ -816,7 +817,7 @@ span.flatpickr-weekday {
|
|
816
817
|
opacity: 0;
|
817
818
|
}
|
818
819
|
}
|
819
|
-
@-webkit-keyframes
|
820
|
+
@-webkit-keyframes fpFadeIn {
|
820
821
|
from {
|
821
822
|
opacity: 0;
|
822
823
|
}
|
@@ -824,7 +825,7 @@ span.flatpickr-weekday {
|
|
824
825
|
opacity: 1;
|
825
826
|
}
|
826
827
|
}
|
827
|
-
@keyframes
|
828
|
+
@keyframes fpFadeIn {
|
828
829
|
from {
|
829
830
|
opacity: 0;
|
830
831
|
}
|
@@ -33,8 +33,8 @@
|
|
33
33
|
z-index: 99999;
|
34
34
|
}
|
35
35
|
.flatpickr-calendar.animate.open {
|
36
|
-
-webkit-animation:
|
37
|
-
animation:
|
36
|
+
-webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
37
|
+
animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
38
38
|
}
|
39
39
|
.flatpickr-calendar.inline {
|
40
40
|
display: block;
|
@@ -270,7 +270,7 @@
|
|
270
270
|
position: absolute;
|
271
271
|
width: 75%;
|
272
272
|
left: 12.5%;
|
273
|
-
padding:
|
273
|
+
padding: 4.2px 0 0 0;
|
274
274
|
line-height: 1;
|
275
275
|
height: 28px;
|
276
276
|
display: inline-block;
|
@@ -281,26 +281,26 @@
|
|
281
281
|
.flatpickr-current-month.slideLeft {
|
282
282
|
-webkit-transform: translate3d(-100%, 0px, 0px);
|
283
283
|
transform: translate3d(-100%, 0px, 0px);
|
284
|
-
-webkit-animation:
|
285
|
-
animation:
|
284
|
+
-webkit-animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
285
|
+
animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
286
286
|
}
|
287
287
|
.flatpickr-current-month.slideLeftNew {
|
288
288
|
-webkit-transform: translate3d(100%, 0px, 0px);
|
289
289
|
transform: translate3d(100%, 0px, 0px);
|
290
|
-
-webkit-animation:
|
291
|
-
animation:
|
290
|
+
-webkit-animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
291
|
+
animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
292
292
|
}
|
293
293
|
.flatpickr-current-month.slideRight {
|
294
294
|
-webkit-transform: translate3d(100%, 0px, 0px);
|
295
295
|
transform: translate3d(100%, 0px, 0px);
|
296
|
-
-webkit-animation:
|
297
|
-
animation:
|
296
|
+
-webkit-animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
297
|
+
animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
298
298
|
}
|
299
299
|
.flatpickr-current-month.slideRightNew {
|
300
300
|
-webkit-transform: translate3d(0, 0, 0px);
|
301
301
|
transform: translate3d(0, 0, 0px);
|
302
|
-
-webkit-animation:
|
303
|
-
animation:
|
302
|
+
-webkit-animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
303
|
+
animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
304
304
|
}
|
305
305
|
.flatpickr-current-month span.cur-month {
|
306
306
|
font-family: inherit;
|
@@ -367,17 +367,16 @@
|
|
367
367
|
span.flatpickr-weekday {
|
368
368
|
cursor: default;
|
369
369
|
font-size: 90%;
|
370
|
-
|
370
|
+
background: transparent;
|
371
|
+
color: rgba(0,0,0,0.54);
|
371
372
|
line-height: 1;
|
372
373
|
margin: 0;
|
373
|
-
background: transparent;
|
374
374
|
text-align: center;
|
375
375
|
display: block;
|
376
376
|
-webkit-flex: 1;
|
377
377
|
-ms-flex: 1;
|
378
378
|
flex: 1;
|
379
379
|
font-weight: bolder;
|
380
|
-
margin: 0;
|
381
380
|
}
|
382
381
|
.dayContainer,
|
383
382
|
.flatpickr-weeks {
|
@@ -417,8 +416,8 @@ span.flatpickr-weekday {
|
|
417
416
|
opacity: 1;
|
418
417
|
}
|
419
418
|
.flatpickr-calendar.animate .dayContainer.slideLeft {
|
420
|
-
-webkit-animation:
|
421
|
-
animation:
|
419
|
+
-webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
420
|
+
animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
422
421
|
}
|
423
422
|
.flatpickr-calendar.animate .dayContainer.slideLeft,
|
424
423
|
.flatpickr-calendar.animate .dayContainer.slideLeftNew {
|
@@ -426,18 +425,18 @@ span.flatpickr-weekday {
|
|
426
425
|
transform: translate3d(-100%, 0px, 0px);
|
427
426
|
}
|
428
427
|
.flatpickr-calendar.animate .dayContainer.slideLeftNew {
|
429
|
-
-webkit-animation:
|
430
|
-
animation:
|
428
|
+
-webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
429
|
+
animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
431
430
|
}
|
432
431
|
.flatpickr-calendar.animate .dayContainer.slideRight {
|
433
|
-
-webkit-animation:
|
434
|
-
animation:
|
432
|
+
-webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
433
|
+
animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
435
434
|
-webkit-transform: translate3d(100%, 0px, 0px);
|
436
435
|
transform: translate3d(100%, 0px, 0px);
|
437
436
|
}
|
438
437
|
.flatpickr-calendar.animate .dayContainer.slideRightNew {
|
439
|
-
-webkit-animation:
|
440
|
-
animation:
|
438
|
+
-webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
439
|
+
animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
|
441
440
|
}
|
442
441
|
.flatpickr-day {
|
443
442
|
background: none;
|
@@ -667,6 +666,10 @@ span.flatpickr-weekday {
|
|
667
666
|
-moz-user-select: none;
|
668
667
|
-ms-user-select: none;
|
669
668
|
user-select: none;
|
669
|
+
-webkit-align-self: center;
|
670
|
+
-ms-flex-item-align: center;
|
671
|
+
-ms-grid-row-align: center;
|
672
|
+
align-self: center;
|
670
673
|
}
|
671
674
|
.flatpickr-time .flatpickr-am-pm {
|
672
675
|
outline: 0;
|
@@ -682,7 +685,7 @@ span.flatpickr-weekday {
|
|
682
685
|
.flatpickr-input[readonly] {
|
683
686
|
cursor: pointer;
|
684
687
|
}
|
685
|
-
@-webkit-keyframes
|
688
|
+
@-webkit-keyframes fpFadeInDown {
|
686
689
|
from {
|
687
690
|
opacity: 0;
|
688
691
|
-webkit-transform: translate3d(0, -20px, 0);
|
@@ -694,7 +697,7 @@ span.flatpickr-weekday {
|
|
694
697
|
transform: translate3d(0, 0, 0);
|
695
698
|
}
|
696
699
|
}
|
697
|
-
@keyframes
|
700
|
+
@keyframes fpFadeInDown {
|
698
701
|
from {
|
699
702
|
opacity: 0;
|
700
703
|
-webkit-transform: translate3d(0, -20px, 0);
|
@@ -706,7 +709,7 @@ span.flatpickr-weekday {
|
|
706
709
|
transform: translate3d(0, 0, 0);
|
707
710
|
}
|
708
711
|
}
|
709
|
-
@-webkit-keyframes
|
712
|
+
@-webkit-keyframes fpSlideLeft {
|
710
713
|
from {
|
711
714
|
-webkit-transform: translate3d(0px, 0px, 0px);
|
712
715
|
transform: translate3d(0px, 0px, 0px);
|
@@ -716,7 +719,7 @@ span.flatpickr-weekday {
|
|
716
719
|
transform: translate3d(-100%, 0px, 0px);
|
717
720
|
}
|
718
721
|
}
|
719
|
-
@keyframes
|
722
|
+
@keyframes fpSlideLeft {
|
720
723
|
from {
|
721
724
|
-webkit-transform: translate3d(0px, 0px, 0px);
|
722
725
|
transform: translate3d(0px, 0px, 0px);
|
@@ -726,7 +729,7 @@ span.flatpickr-weekday {
|
|
726
729
|
transform: translate3d(-100%, 0px, 0px);
|
727
730
|
}
|
728
731
|
}
|
729
|
-
@-webkit-keyframes
|
732
|
+
@-webkit-keyframes fpSlideLeftNew {
|
730
733
|
from {
|
731
734
|
-webkit-transform: translate3d(100%, 0px, 0px);
|
732
735
|
transform: translate3d(100%, 0px, 0px);
|
@@ -736,7 +739,7 @@ span.flatpickr-weekday {
|
|
736
739
|
transform: translate3d(0px, 0px, 0px);
|
737
740
|
}
|
738
741
|
}
|
739
|
-
@keyframes
|
742
|
+
@keyframes fpSlideLeftNew {
|
740
743
|
from {
|
741
744
|
-webkit-transform: translate3d(100%, 0px, 0px);
|
742
745
|
transform: translate3d(100%, 0px, 0px);
|
@@ -746,7 +749,7 @@ span.flatpickr-weekday {
|
|
746
749
|
transform: translate3d(0px, 0px, 0px);
|
747
750
|
}
|
748
751
|
}
|
749
|
-
@-webkit-keyframes
|
752
|
+
@-webkit-keyframes fpSlideRight {
|
750
753
|
from {
|
751
754
|
-webkit-transform: translate3d(0, 0, 0px);
|
752
755
|
transform: translate3d(0, 0, 0px);
|
@@ -756,7 +759,7 @@ span.flatpickr-weekday {
|
|
756
759
|
transform: translate3d(100%, 0px, 0px);
|
757
760
|
}
|
758
761
|
}
|
759
|
-
@keyframes
|
762
|
+
@keyframes fpSlideRight {
|
760
763
|
from {
|
761
764
|
-webkit-transform: translate3d(0, 0, 0px);
|
762
765
|
transform: translate3d(0, 0, 0px);
|
@@ -766,7 +769,7 @@ span.flatpickr-weekday {
|
|
766
769
|
transform: translate3d(100%, 0px, 0px);
|
767
770
|
}
|
768
771
|
}
|
769
|
-
@-webkit-keyframes
|
772
|
+
@-webkit-keyframes fpSlideRightNew {
|
770
773
|
from {
|
771
774
|
-webkit-transform: translate3d(-100%, 0, 0px);
|
772
775
|
transform: translate3d(-100%, 0, 0px);
|
@@ -776,7 +779,7 @@ span.flatpickr-weekday {
|
|
776
779
|
transform: translate3d(0, 0, 0px);
|
777
780
|
}
|
778
781
|
}
|
779
|
-
@keyframes
|
782
|
+
@keyframes fpSlideRightNew {
|
780
783
|
from {
|
781
784
|
-webkit-transform: translate3d(-100%, 0, 0px);
|
782
785
|
transform: translate3d(-100%, 0, 0px);
|
@@ -786,7 +789,7 @@ span.flatpickr-weekday {
|
|
786
789
|
transform: translate3d(0, 0, 0px);
|
787
790
|
}
|
788
791
|
}
|
789
|
-
@-webkit-keyframes
|
792
|
+
@-webkit-keyframes fpFadeOut {
|
790
793
|
from {
|
791
794
|
opacity: 1;
|
792
795
|
}
|
@@ -794,7 +797,7 @@ span.flatpickr-weekday {
|
|
794
797
|
opacity: 0;
|
795
798
|
}
|
796
799
|
}
|
797
|
-
@keyframes
|
800
|
+
@keyframes fpFadeOut {
|
798
801
|
from {
|
799
802
|
opacity: 1;
|
800
803
|
}
|
@@ -802,7 +805,7 @@ span.flatpickr-weekday {
|
|
802
805
|
opacity: 0;
|
803
806
|
}
|
804
807
|
}
|
805
|
-
@-webkit-keyframes
|
808
|
+
@-webkit-keyframes fpFadeIn {
|
806
809
|
from {
|
807
810
|
opacity: 0;
|
808
811
|
}
|
@@ -810,7 +813,7 @@ span.flatpickr-weekday {
|
|
810
813
|
opacity: 1;
|
811
814
|
}
|
812
815
|
}
|
813
|
-
@keyframes
|
816
|
+
@keyframes fpFadeIn {
|
814
817
|
from {
|
815
818
|
opacity: 0;
|
816
819
|
}
|