@ncds/ui-admin 1.0.1 → 1.1.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.
- package/dist/cjs/src/components/button/ButtonGroup.js +8 -8
- package/dist/cjs/src/components/checkbox/Checkbox.js +1 -1
- package/dist/cjs/src/components/checkbox/CheckboxInput.js +1 -1
- package/dist/cjs/src/components/date-picker/DatePicker.js +2 -3
- package/dist/cjs/src/components/input/InputBase.js +5 -5
- package/dist/cjs/src/components/input/PasswordInput.js +4 -4
- package/dist/cjs/src/components/input/Textarea.js +2 -2
- package/dist/cjs/src/components/radio/Radio.js +1 -1
- package/dist/cjs/src/components/radio/RadioInput.js +1 -1
- package/dist/cjs/src/components/tab/HorizontalTab.js +6 -6
- package/dist/cjs/src/components/tab/TabButton.js +1 -1
- package/dist/cjs/src/components/tab/VerticalTab.js +1 -1
- package/dist/esm/src/components/button/ButtonGroup.js +8 -8
- package/dist/esm/src/components/checkbox/Checkbox.js +1 -1
- package/dist/esm/src/components/checkbox/CheckboxInput.js +1 -1
- package/dist/esm/src/components/date-picker/DatePicker.js +2 -3
- package/dist/esm/src/components/input/InputBase.js +5 -5
- package/dist/esm/src/components/input/PasswordInput.js +4 -4
- package/dist/esm/src/components/input/Textarea.js +2 -2
- package/dist/esm/src/components/radio/Radio.js +1 -1
- package/dist/esm/src/components/radio/RadioInput.js +1 -1
- package/dist/esm/src/components/tab/HorizontalTab.js +6 -6
- package/dist/esm/src/components/tab/TabButton.js +1 -1
- package/dist/esm/src/components/tab/VerticalTab.js +1 -1
- package/dist/types/src/components/button/ButtonGroup.d.ts +1 -1
- package/dist/types/src/components/checkbox/CheckboxInput.d.ts +1 -1
- package/dist/types/src/components/date-picker/DatePicker.d.ts +2 -3
- package/dist/types/src/components/input/InputBase.d.ts +1 -1
- package/dist/types/src/components/input/Textarea.d.ts +1 -1
- package/dist/types/src/components/radio/RadioInput.d.ts +1 -1
- package/dist/types/src/components/tab/HorizontalTab.d.ts +2 -3
- package/dist/types/src/components/tab/TabButton.d.ts +1 -1
- package/dist/ui-admin/assets/styles/style.css +1291 -64
- package/package.json +1 -1
|
@@ -513,6 +513,10 @@ button {
|
|
|
513
513
|
box-sizing: border-box;
|
|
514
514
|
background-color: var(--base-white);
|
|
515
515
|
gap: 8px;
|
|
516
|
+
padding: 4px 16px;
|
|
517
|
+
font-size: var(--font-size-xs);
|
|
518
|
+
line-height: var(--line-heights-xs);
|
|
519
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
516
520
|
}
|
|
517
521
|
.ncua-button-group__item[href] {
|
|
518
522
|
text-decoration: none;
|
|
@@ -542,67 +546,74 @@ button {
|
|
|
542
546
|
height: 12px;
|
|
543
547
|
background-color: var(--gray-200);
|
|
544
548
|
}
|
|
545
|
-
.ncua-button-
|
|
549
|
+
.ncua-button-group__item:where(.is-only-icon) {
|
|
550
|
+
padding: 6px;
|
|
551
|
+
}
|
|
552
|
+
:where(.ncua-button-group.has-border) {
|
|
553
|
+
border-radius: 6px;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.ncua-button-group--xxs .ncua-button-group__item {
|
|
546
557
|
padding: 4px 12px;
|
|
547
558
|
font-size: var(--font-size-xxxs);
|
|
548
559
|
line-height: var(--line-heights-xxxs);
|
|
549
560
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
550
561
|
}
|
|
551
|
-
:where(.ncua-button-group--
|
|
562
|
+
:where(.ncua-button-group--xxs .ncua-button-group__item.is-current, .ncua-button-group--xxs .ncua-button-group__item:hover, .ncua-button-group--xxs .ncua-button-group__item:focus) {
|
|
552
563
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
553
564
|
}
|
|
554
|
-
.ncua-button-group--
|
|
565
|
+
.ncua-button-group--xxs .ncua-button-group__item:where(.is-only-icon) {
|
|
555
566
|
padding: 6px;
|
|
556
567
|
}
|
|
557
|
-
:where(.ncua-button-group--
|
|
568
|
+
:where(.ncua-button-group--xxs.has-border) {
|
|
558
569
|
border-radius: 4px;
|
|
559
570
|
}
|
|
560
571
|
|
|
561
|
-
.ncua-button-group--
|
|
572
|
+
.ncua-button-group--xs .ncua-button-group__item {
|
|
562
573
|
padding: 4px 16px;
|
|
563
574
|
font-size: var(--font-size-xs);
|
|
564
575
|
line-height: var(--line-heights-xs);
|
|
565
576
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
566
577
|
}
|
|
567
|
-
:where(.ncua-button-group--
|
|
578
|
+
:where(.ncua-button-group--xs .ncua-button-group__item.is-current, .ncua-button-group--xs .ncua-button-group__item:hover, .ncua-button-group--xs .ncua-button-group__item:focus) {
|
|
568
579
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
569
580
|
}
|
|
570
|
-
.ncua-button-group--
|
|
581
|
+
.ncua-button-group--xs .ncua-button-group__item:where(.is-only-icon) {
|
|
571
582
|
padding: 6px;
|
|
572
583
|
}
|
|
573
|
-
:where(.ncua-button-group--
|
|
584
|
+
:where(.ncua-button-group--xs.has-border) {
|
|
574
585
|
border-radius: 6px;
|
|
575
586
|
}
|
|
576
587
|
|
|
577
|
-
.ncua-button-group--
|
|
588
|
+
.ncua-button-group--sm .ncua-button-group__item {
|
|
578
589
|
padding: 6px 16px;
|
|
579
590
|
font-size: var(--font-size-sm);
|
|
580
591
|
line-height: var(--line-heights-sm);
|
|
581
592
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
582
593
|
}
|
|
583
|
-
:where(.ncua-button-group--
|
|
594
|
+
:where(.ncua-button-group--sm .ncua-button-group__item.is-current, .ncua-button-group--sm .ncua-button-group__item:hover, .ncua-button-group--sm .ncua-button-group__item:focus) {
|
|
584
595
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
585
596
|
}
|
|
586
|
-
.ncua-button-group--
|
|
597
|
+
.ncua-button-group--sm .ncua-button-group__item:where(.is-only-icon) {
|
|
587
598
|
padding: 10px;
|
|
588
599
|
}
|
|
589
|
-
:where(.ncua-button-group--
|
|
600
|
+
:where(.ncua-button-group--sm.has-border) {
|
|
590
601
|
border-radius: 6px;
|
|
591
602
|
}
|
|
592
603
|
|
|
593
|
-
.ncua-button-group--
|
|
604
|
+
.ncua-button-group--md .ncua-button-group__item {
|
|
594
605
|
padding: 8px 16px;
|
|
595
606
|
font-size: var(--font-size-sm);
|
|
596
607
|
line-height: var(--line-heights-sm);
|
|
597
608
|
font-weight: var(--font-weights-commerce-sans-2);
|
|
598
609
|
}
|
|
599
|
-
:where(.ncua-button-group--
|
|
600
|
-
font-weight: var(--font-weights-commerce-sans-
|
|
610
|
+
:where(.ncua-button-group--md .ncua-button-group__item.is-current, .ncua-button-group--md .ncua-button-group__item:hover, .ncua-button-group--md .ncua-button-group__item:focus) {
|
|
611
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
601
612
|
}
|
|
602
|
-
.ncua-button-group--
|
|
613
|
+
.ncua-button-group--md .ncua-button-group__item:where(.is-only-icon) {
|
|
603
614
|
padding: 10px;
|
|
604
615
|
}
|
|
605
|
-
:where(.ncua-button-group--
|
|
616
|
+
:where(.ncua-button-group--md.has-border) {
|
|
606
617
|
border-radius: 8px;
|
|
607
618
|
}
|
|
608
619
|
|
|
@@ -755,8 +766,8 @@ button {
|
|
|
755
766
|
background-color: var(--gray-50);
|
|
756
767
|
border-radius: 4px;
|
|
757
768
|
}
|
|
758
|
-
.ncua-checkbox-field--
|
|
759
|
-
.ncua-checkbox-field--
|
|
769
|
+
.ncua-checkbox-field--sm .ncua-checkbox-field__text,
|
|
770
|
+
.ncua-checkbox-field--sm .ncua-checkbox-field__support-text {
|
|
760
771
|
font-size: var(--font-size-sm);
|
|
761
772
|
line-height: var(--line-heights-sm);
|
|
762
773
|
}
|
|
@@ -767,7 +778,7 @@ button {
|
|
|
767
778
|
.ncua-checkbox-field.has-text .ncua-checkbox-field__input {
|
|
768
779
|
transform: translateY(1px);
|
|
769
780
|
}
|
|
770
|
-
.ncua-checkbox-field.has-text.ncua-checkbox-field--
|
|
781
|
+
.ncua-checkbox-field.has-text.ncua-checkbox-field--sm .ncua-checkbox-field__input {
|
|
771
782
|
transform: translateY(3px);
|
|
772
783
|
}
|
|
773
784
|
|
|
@@ -1182,6 +1193,8 @@ button {
|
|
|
1182
1193
|
flex-direction: column;
|
|
1183
1194
|
line-height: normal;
|
|
1184
1195
|
vertical-align: top;
|
|
1196
|
+
gap: 4px;
|
|
1197
|
+
font-size: var(--font-size-xxs);
|
|
1185
1198
|
}
|
|
1186
1199
|
.ncua-input > *:last-child {
|
|
1187
1200
|
margin-bottom: 0;
|
|
@@ -1208,11 +1221,12 @@ button {
|
|
|
1208
1221
|
align-items: center;
|
|
1209
1222
|
background-color: var(--base-white);
|
|
1210
1223
|
border: 1px solid var(--gray-200);
|
|
1224
|
+
padding: 4px 10px;
|
|
1211
1225
|
}
|
|
1212
1226
|
.ncua-input__field--xs {
|
|
1213
1227
|
padding: 4px 10px;
|
|
1214
1228
|
}
|
|
1215
|
-
.ncua-input__field--
|
|
1229
|
+
.ncua-input__field--sm {
|
|
1216
1230
|
padding: 6px 12px;
|
|
1217
1231
|
}
|
|
1218
1232
|
.ncua-input__field {
|
|
@@ -1234,8 +1248,8 @@ button {
|
|
|
1234
1248
|
padding: 0;
|
|
1235
1249
|
border: 0;
|
|
1236
1250
|
color: var(--gray-700);
|
|
1237
|
-
font-size: var(--font-size-
|
|
1238
|
-
line-height: var(--line-heights-
|
|
1251
|
+
font-size: var(--font-size-xs);
|
|
1252
|
+
line-height: var(--line-heights-xs);
|
|
1239
1253
|
background-color: var(--base-white);
|
|
1240
1254
|
}
|
|
1241
1255
|
.ncua-input input::-webkit-input-placeholder,
|
|
@@ -1272,17 +1286,17 @@ button {
|
|
|
1272
1286
|
font-size: var(--font-size-xs);
|
|
1273
1287
|
line-height: var(--line-heights-xs);
|
|
1274
1288
|
}
|
|
1275
|
-
.ncua-input--
|
|
1289
|
+
.ncua-input--sm {
|
|
1276
1290
|
gap: 6px;
|
|
1277
1291
|
}
|
|
1278
|
-
.ncua-input--
|
|
1292
|
+
.ncua-input--sm input {
|
|
1279
1293
|
font-size: var(--font-size-sm);
|
|
1280
1294
|
line-height: var(--line-heights-sm);
|
|
1281
1295
|
}
|
|
1282
1296
|
.ncua-input--xs {
|
|
1283
1297
|
font-size: var(--font-size-xxs);
|
|
1284
1298
|
}
|
|
1285
|
-
.ncua-input--
|
|
1299
|
+
.ncua-input--sm {
|
|
1286
1300
|
font-size: var(--font-size-xs);
|
|
1287
1301
|
}
|
|
1288
1302
|
.ncua-input input:-webkit-autofill, .ncua-input input:-webkit-autofill:hover, .ncua-input input:-webkit-autofill:focus, .ncua-input input:-webkit-autofill:active {
|
|
@@ -1362,11 +1376,12 @@ button {
|
|
|
1362
1376
|
align-items: center;
|
|
1363
1377
|
background-color: var(--base-white);
|
|
1364
1378
|
border: 1px solid var(--gray-200);
|
|
1379
|
+
padding: 4px 10px;
|
|
1365
1380
|
}
|
|
1366
1381
|
.ncua-input__leading-text-wrap .ncua-input__leading-text--xs {
|
|
1367
1382
|
padding: 4px 10px;
|
|
1368
1383
|
}
|
|
1369
|
-
.ncua-input__leading-text-wrap .ncua-input__leading-text--
|
|
1384
|
+
.ncua-input__leading-text-wrap .ncua-input__leading-text--sm {
|
|
1370
1385
|
padding: 6px 12px;
|
|
1371
1386
|
}
|
|
1372
1387
|
.ncua-input__leading-text-wrap .ncua-input__leading-text {
|
|
@@ -1386,11 +1401,16 @@ button {
|
|
|
1386
1401
|
align-items: center;
|
|
1387
1402
|
background-color: var(--base-white);
|
|
1388
1403
|
border: 1px solid var(--gray-200);
|
|
1404
|
+
padding: 4px 10px;
|
|
1405
|
+
padding: 5px 10px;
|
|
1406
|
+
font-size: var(--font-size-xs);
|
|
1407
|
+
line-height: var(--line-heights-xs);
|
|
1408
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
1389
1409
|
}
|
|
1390
1410
|
.ncua-input__trailing-button .ncua-input__button--xs {
|
|
1391
1411
|
padding: 4px 10px;
|
|
1392
1412
|
}
|
|
1393
|
-
.ncua-input__trailing-button .ncua-input__button--
|
|
1413
|
+
.ncua-input__trailing-button .ncua-input__button--sm {
|
|
1394
1414
|
padding: 6px 12px;
|
|
1395
1415
|
}
|
|
1396
1416
|
.ncua-input__trailing-button .ncua-input__button {
|
|
@@ -1408,7 +1428,7 @@ button {
|
|
|
1408
1428
|
line-height: var(--line-heights-xs);
|
|
1409
1429
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
1410
1430
|
}
|
|
1411
|
-
.ncua-input__trailing-button .ncua-input__button--
|
|
1431
|
+
.ncua-input__trailing-button .ncua-input__button--sm {
|
|
1412
1432
|
padding: 7px 14px;
|
|
1413
1433
|
font-size: var(--font-size-sm);
|
|
1414
1434
|
line-height: var(--line-heights-sm);
|
|
@@ -1423,19 +1443,24 @@ button {
|
|
|
1423
1443
|
.ncua-input--textarea {
|
|
1424
1444
|
gap: 4px;
|
|
1425
1445
|
width: 100%;
|
|
1446
|
+
font-size: var(--font-size-xxs);
|
|
1426
1447
|
}
|
|
1427
|
-
.ncua-input--textarea
|
|
1448
|
+
.ncua-input--textarea textarea {
|
|
1428
1449
|
font-size: var(--font-size-xs);
|
|
1429
1450
|
line-height: var(--line-heights-xs);
|
|
1430
1451
|
}
|
|
1431
|
-
.ncua-input--textarea--
|
|
1452
|
+
.ncua-input--textarea--xs textarea {
|
|
1453
|
+
font-size: var(--font-size-xs);
|
|
1454
|
+
line-height: var(--line-heights-xs);
|
|
1455
|
+
}
|
|
1456
|
+
.ncua-input--textarea--sm textarea {
|
|
1432
1457
|
font-size: var(--font-size-sm);
|
|
1433
1458
|
line-height: var(--line-heights-sm);
|
|
1434
1459
|
}
|
|
1435
|
-
.ncua-input--textarea--
|
|
1460
|
+
.ncua-input--textarea--xs {
|
|
1436
1461
|
font-size: var(--font-size-xxs);
|
|
1437
1462
|
}
|
|
1438
|
-
.ncua-input--textarea--
|
|
1463
|
+
.ncua-input--textarea--sm {
|
|
1439
1464
|
font-size: var(--font-size-xs);
|
|
1440
1465
|
}
|
|
1441
1466
|
.ncua-input--textarea .ncua-input__content {
|
|
@@ -2065,7 +2090,7 @@ button {
|
|
|
2065
2090
|
.ncua-radio-field__support-text {
|
|
2066
2091
|
color: var(--gray-400);
|
|
2067
2092
|
}
|
|
2068
|
-
.ncua-radio-field--
|
|
2093
|
+
.ncua-radio-field--sm .ncua-radio-field__text, .ncua-radio-field--sm .ncua-radio-field__support-text {
|
|
2069
2094
|
font-size: var(--font-size-sm);
|
|
2070
2095
|
line-height: var(--line-heights-sm);
|
|
2071
2096
|
}
|
|
@@ -2076,7 +2101,7 @@ button {
|
|
|
2076
2101
|
.ncua-radio-field.has-text .ncua-radio-field__input {
|
|
2077
2102
|
transform: translateY(1px);
|
|
2078
2103
|
}
|
|
2079
|
-
.ncua-radio-field.has-text.ncua-radio-field--
|
|
2104
|
+
.ncua-radio-field.has-text.ncua-radio-field--sm .ncua-radio-field__input {
|
|
2080
2105
|
transform: translateY(3px);
|
|
2081
2106
|
}
|
|
2082
2107
|
|
|
@@ -2759,6 +2784,8 @@ button {
|
|
|
2759
2784
|
.ncua-date-picker {
|
|
2760
2785
|
position: relative;
|
|
2761
2786
|
display: inline-flex;
|
|
2787
|
+
width: 138px;
|
|
2788
|
+
height: 28px;
|
|
2762
2789
|
}
|
|
2763
2790
|
.ncua-date-picker .flatpickr-wrapper {
|
|
2764
2791
|
border: 1px solid var(--gray-200);
|
|
@@ -2767,6 +2794,9 @@ button {
|
|
|
2767
2794
|
background: var(--base-white);
|
|
2768
2795
|
box-shadow: var(--shadow-xs);
|
|
2769
2796
|
color: var(--gray-700);
|
|
2797
|
+
height: 100%;
|
|
2798
|
+
padding: 5px 10px;
|
|
2799
|
+
font-size: var(--font-size-xs);
|
|
2770
2800
|
}
|
|
2771
2801
|
.ncua-date-picker .flatpickr-wrapper:focus-within {
|
|
2772
2802
|
border-color: var(--gray-400);
|
|
@@ -2809,6 +2839,7 @@ button {
|
|
|
2809
2839
|
border-radius: 8px;
|
|
2810
2840
|
left: 0;
|
|
2811
2841
|
box-shadow: 1px 0 0 var(--gray-200), -1px 0 0 var(--gray-200), 0 1px 0 var(--gray-200), 0 -1px 0 var(--gray-200), 0 3px 13px rgba(0, 0, 0, 0.08);
|
|
2842
|
+
width: 248px;
|
|
2812
2843
|
}
|
|
2813
2844
|
.ncua-date-picker .flatpickr-calendar::before, .ncua-date-picker .flatpickr-calendar::after {
|
|
2814
2845
|
content: none;
|
|
@@ -2824,6 +2855,7 @@ button {
|
|
|
2824
2855
|
justify-content: space-between;
|
|
2825
2856
|
margin-inline: auto;
|
|
2826
2857
|
margin-block-end: 12px;
|
|
2858
|
+
width: 224px;
|
|
2827
2859
|
}
|
|
2828
2860
|
.ncua-date-picker .flatpickr-months .flatpickr-prev-month,
|
|
2829
2861
|
.ncua-date-picker .flatpickr-months .flatpickr-next-month {
|
|
@@ -2856,6 +2888,10 @@ button {
|
|
|
2856
2888
|
padding-block-start: 6px;
|
|
2857
2889
|
gap: 4px;
|
|
2858
2890
|
}
|
|
2891
|
+
.ncua-date-picker .flatpickr-current-month .flatpickr-monthDropdown-months,
|
|
2892
|
+
.ncua-date-picker .flatpickr-current-month .cur-year {
|
|
2893
|
+
font-size: var(--font-size-lg);
|
|
2894
|
+
}
|
|
2859
2895
|
.ncua-date-picker .flatpickr-monthDropdown-months {
|
|
2860
2896
|
margin: 0;
|
|
2861
2897
|
padding: 0;
|
|
@@ -2871,13 +2907,25 @@ button {
|
|
|
2871
2907
|
}
|
|
2872
2908
|
.ncua-date-picker .flatpickr-weekdays {
|
|
2873
2909
|
margin-inline: auto;
|
|
2910
|
+
width: 224px;
|
|
2874
2911
|
}
|
|
2875
2912
|
.ncua-date-picker .dayContainer {
|
|
2876
2913
|
row-gap: 4px;
|
|
2914
|
+
max-width: 224px;
|
|
2915
|
+
min-width: 224px;
|
|
2916
|
+
column-gap: 0;
|
|
2917
|
+
font-size: 13px;
|
|
2877
2918
|
}
|
|
2878
2919
|
.ncua-date-picker .flatpickr-days {
|
|
2879
2920
|
justify-content: center;
|
|
2880
2921
|
padding-block-end: 12px;
|
|
2922
|
+
width: 224px;
|
|
2923
|
+
}
|
|
2924
|
+
.ncua-date-picker .flatpickr-day {
|
|
2925
|
+
max-width: 32px;
|
|
2926
|
+
width: 32px;
|
|
2927
|
+
height: 32px;
|
|
2928
|
+
line-height: 32px;
|
|
2881
2929
|
}
|
|
2882
2930
|
.ncua-date-picker .flatpickr-day:hover {
|
|
2883
2931
|
background-color: var(--gray-50);
|
|
@@ -2894,70 +2942,68 @@ button {
|
|
|
2894
2942
|
.ncua-date-picker .flatpickr-day.today {
|
|
2895
2943
|
border-color: var(--gray-600);
|
|
2896
2944
|
}
|
|
2897
|
-
.ncua-date-picker--
|
|
2945
|
+
.ncua-date-picker--xs {
|
|
2898
2946
|
width: 138px;
|
|
2899
2947
|
height: 28px;
|
|
2900
2948
|
}
|
|
2901
|
-
.ncua-date-picker--
|
|
2902
|
-
height: 100%;
|
|
2949
|
+
.ncua-date-picker--xs .flatpickr-wrapper {
|
|
2903
2950
|
padding: 5px 10px;
|
|
2904
2951
|
font-size: var(--font-size-xs);
|
|
2905
2952
|
}
|
|
2906
|
-
.ncua-date-picker--
|
|
2953
|
+
.ncua-date-picker--sm {
|
|
2907
2954
|
width: 156px;
|
|
2908
2955
|
height: 36px;
|
|
2909
2956
|
}
|
|
2910
|
-
.ncua-date-picker--
|
|
2911
|
-
height: 100%;
|
|
2957
|
+
.ncua-date-picker--sm .flatpickr-wrapper {
|
|
2912
2958
|
padding: 7px 12px;
|
|
2913
2959
|
font-size: var(--font-size-sm);
|
|
2914
2960
|
}
|
|
2915
|
-
.ncua-date-picker--
|
|
2961
|
+
.ncua-date-picker--xs .flatpickr-calendar {
|
|
2916
2962
|
width: 248px;
|
|
2917
2963
|
}
|
|
2918
|
-
.ncua-date-picker--
|
|
2919
|
-
.ncua-date-picker--
|
|
2920
|
-
.ncua-date-picker--
|
|
2964
|
+
.ncua-date-picker--xs .flatpickr-months,
|
|
2965
|
+
.ncua-date-picker--xs .flatpickr-weekdays,
|
|
2966
|
+
.ncua-date-picker--xs .flatpickr-days {
|
|
2921
2967
|
width: 224px;
|
|
2922
2968
|
}
|
|
2923
|
-
.ncua-date-picker--
|
|
2969
|
+
.ncua-date-picker--xs .dayContainer {
|
|
2924
2970
|
max-width: 224px;
|
|
2925
2971
|
min-width: 224px;
|
|
2926
2972
|
column-gap: 0;
|
|
2927
2973
|
font-size: 13px;
|
|
2928
2974
|
}
|
|
2929
|
-
.ncua-date-picker--
|
|
2975
|
+
.ncua-date-picker--xs .flatpickr-day {
|
|
2930
2976
|
max-width: 32px;
|
|
2931
2977
|
width: 32px;
|
|
2932
2978
|
height: 32px;
|
|
2933
2979
|
line-height: 32px;
|
|
2934
2980
|
}
|
|
2935
|
-
.ncua-date-picker--
|
|
2936
|
-
.ncua-date-picker--
|
|
2937
|
-
font-size: var(--font-size-
|
|
2981
|
+
.ncua-date-picker--xs .flatpickr-current-month .flatpickr-monthDropdown-months,
|
|
2982
|
+
.ncua-date-picker--xs .flatpickr-current-month .cur-year {
|
|
2983
|
+
font-size: var(--font-size-xs);
|
|
2938
2984
|
}
|
|
2939
|
-
.ncua-date-picker--
|
|
2985
|
+
.ncua-date-picker--sm .flatpickr-calendar {
|
|
2940
2986
|
width: 343px;
|
|
2941
2987
|
}
|
|
2942
|
-
.ncua-date-picker--
|
|
2943
|
-
.ncua-date-picker--
|
|
2944
|
-
.ncua-date-picker--
|
|
2988
|
+
.ncua-date-picker--sm .flatpickr-months,
|
|
2989
|
+
.ncua-date-picker--sm .flatpickr-weekdays,
|
|
2990
|
+
.ncua-date-picker--sm .flatpickr-days {
|
|
2945
2991
|
width: 311px;
|
|
2946
2992
|
}
|
|
2947
|
-
.ncua-date-picker--
|
|
2993
|
+
.ncua-date-picker--sm .dayContainer {
|
|
2948
2994
|
max-width: 311px;
|
|
2949
2995
|
min-width: 311px;
|
|
2950
2996
|
column-gap: 9.83px;
|
|
2951
2997
|
font-size: 14px;
|
|
2952
2998
|
}
|
|
2953
|
-
.ncua-date-picker--
|
|
2999
|
+
.ncua-date-picker--sm .flatpickr-day {
|
|
2954
3000
|
max-width: 36px;
|
|
2955
3001
|
width: 36px;
|
|
2956
3002
|
height: 36px;
|
|
2957
3003
|
line-height: 36px;
|
|
2958
3004
|
}
|
|
2959
|
-
.ncua-date-picker--
|
|
2960
|
-
.ncua-date-picker--
|
|
3005
|
+
.ncua-date-picker--sm .flatpickr-current-month .flatpickr-monthDropdown-months,
|
|
3006
|
+
.ncua-date-picker--sm .flatpickr-current-month .cur-year {
|
|
2961
3007
|
font-size: var(--font-size-lg);
|
|
2962
3008
|
}
|
|
2963
3009
|
.ncua-date-picker--disabled .flatpickr-wrapper,
|
|
@@ -3348,21 +3394,24 @@ button {
|
|
|
3348
3394
|
border-radius: 6px;
|
|
3349
3395
|
cursor: pointer;
|
|
3350
3396
|
background-color: transparent;
|
|
3397
|
+
padding: 5px 12px;
|
|
3398
|
+
height: 34px;
|
|
3399
|
+
font-size: var(--font-size-xs);
|
|
3351
3400
|
}
|
|
3352
3401
|
.ncua-tab-button:hover, .ncua-tab-button.is-active {
|
|
3353
3402
|
color: var(--gray-700);
|
|
3354
3403
|
}
|
|
3355
|
-
.ncua-tab-button--
|
|
3404
|
+
.ncua-tab-button--sm {
|
|
3356
3405
|
padding: 5px 12px;
|
|
3357
3406
|
height: 34px;
|
|
3358
3407
|
font-size: var(--font-size-xs);
|
|
3359
3408
|
}
|
|
3360
|
-
.ncua-tab-button--
|
|
3409
|
+
.ncua-tab-button--md {
|
|
3361
3410
|
padding: 7px 12px;
|
|
3362
3411
|
height: 38px;
|
|
3363
3412
|
font-size: var(--font-size-sm);
|
|
3364
3413
|
}
|
|
3365
|
-
.ncua-tab-button--
|
|
3414
|
+
.ncua-tab-button--lg {
|
|
3366
3415
|
padding: 9px 14px;
|
|
3367
3416
|
height: 44px;
|
|
3368
3417
|
font-size: var(--font-size-md);
|
|
@@ -3373,15 +3422,19 @@ button {
|
|
|
3373
3422
|
.ncua-tab-button--button-primary:focus {
|
|
3374
3423
|
box-shadow: var(--focus-ring-4px-gray-100);
|
|
3375
3424
|
}
|
|
3376
|
-
.ncua-tab-button--button-white
|
|
3425
|
+
.ncua-tab-button--button-white {
|
|
3377
3426
|
padding: 5px 12px;
|
|
3378
3427
|
height: 28px;
|
|
3379
3428
|
}
|
|
3380
3429
|
.ncua-tab-button--button-white.ncua-tab-button--sm {
|
|
3430
|
+
padding: 5px 12px;
|
|
3431
|
+
height: 28px;
|
|
3432
|
+
}
|
|
3433
|
+
.ncua-tab-button--button-white.ncua-tab-button--md {
|
|
3381
3434
|
padding: 7px 12px;
|
|
3382
3435
|
height: 32px;
|
|
3383
3436
|
}
|
|
3384
|
-
.ncua-tab-button--button-white.ncua-tab-button--
|
|
3437
|
+
.ncua-tab-button--button-white.ncua-tab-button--lg {
|
|
3385
3438
|
padding: 9px 14px;
|
|
3386
3439
|
height: 40px;
|
|
3387
3440
|
}
|
|
@@ -3651,4 +3704,1178 @@ button {
|
|
|
3651
3704
|
}
|
|
3652
3705
|
.ncua-progress-circle-half-circle .ncua-progress-circle__label-container {
|
|
3653
3706
|
top: 80%;
|
|
3654
|
-
}
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
.flatpickr-calendar {
|
|
3710
|
+
background: transparent;
|
|
3711
|
+
opacity: 0;
|
|
3712
|
+
display: none;
|
|
3713
|
+
text-align: center;
|
|
3714
|
+
visibility: hidden;
|
|
3715
|
+
padding: 0;
|
|
3716
|
+
-webkit-animation: none;
|
|
3717
|
+
animation: none;
|
|
3718
|
+
direction: ltr;
|
|
3719
|
+
border: 0;
|
|
3720
|
+
font-size: 14px;
|
|
3721
|
+
line-height: 24px;
|
|
3722
|
+
border-radius: 5px;
|
|
3723
|
+
position: absolute;
|
|
3724
|
+
width: 307.875px;
|
|
3725
|
+
-webkit-box-sizing: border-box;
|
|
3726
|
+
box-sizing: border-box;
|
|
3727
|
+
-ms-touch-action: manipulation;
|
|
3728
|
+
touch-action: manipulation;
|
|
3729
|
+
background: #fff;
|
|
3730
|
+
-webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
|
|
3731
|
+
box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
|
|
3732
|
+
}
|
|
3733
|
+
|
|
3734
|
+
.flatpickr-calendar.open,
|
|
3735
|
+
.flatpickr-calendar.inline {
|
|
3736
|
+
opacity: 1;
|
|
3737
|
+
max-height: 640px;
|
|
3738
|
+
visibility: visible;
|
|
3739
|
+
}
|
|
3740
|
+
|
|
3741
|
+
.flatpickr-calendar.open {
|
|
3742
|
+
display: inline-block;
|
|
3743
|
+
z-index: 99999;
|
|
3744
|
+
}
|
|
3745
|
+
|
|
3746
|
+
.flatpickr-calendar.animate.open {
|
|
3747
|
+
-webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
3748
|
+
animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
3749
|
+
}
|
|
3750
|
+
|
|
3751
|
+
.flatpickr-calendar.inline {
|
|
3752
|
+
display: block;
|
|
3753
|
+
position: relative;
|
|
3754
|
+
top: 2px;
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3757
|
+
.flatpickr-calendar.static {
|
|
3758
|
+
position: absolute;
|
|
3759
|
+
top: calc(100% + 2px);
|
|
3760
|
+
}
|
|
3761
|
+
|
|
3762
|
+
.flatpickr-calendar.static.open {
|
|
3763
|
+
z-index: 999;
|
|
3764
|
+
display: block;
|
|
3765
|
+
}
|
|
3766
|
+
|
|
3767
|
+
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
|
|
3768
|
+
-webkit-box-shadow: none !important;
|
|
3769
|
+
box-shadow: none !important;
|
|
3770
|
+
}
|
|
3771
|
+
|
|
3772
|
+
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
|
|
3773
|
+
-webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
|
3774
|
+
box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
.flatpickr-calendar .hasWeeks .dayContainer,
|
|
3778
|
+
.flatpickr-calendar .hasTime .dayContainer {
|
|
3779
|
+
border-bottom: 0;
|
|
3780
|
+
border-bottom-right-radius: 0;
|
|
3781
|
+
border-bottom-left-radius: 0;
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3784
|
+
.flatpickr-calendar .hasWeeks .dayContainer {
|
|
3785
|
+
border-left: 0;
|
|
3786
|
+
}
|
|
3787
|
+
|
|
3788
|
+
.flatpickr-calendar.hasTime .flatpickr-time {
|
|
3789
|
+
height: 40px;
|
|
3790
|
+
border-top: 1px solid #e6e6e6;
|
|
3791
|
+
}
|
|
3792
|
+
|
|
3793
|
+
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
|
|
3794
|
+
height: auto;
|
|
3795
|
+
}
|
|
3796
|
+
|
|
3797
|
+
.flatpickr-calendar:before,
|
|
3798
|
+
.flatpickr-calendar:after {
|
|
3799
|
+
position: absolute;
|
|
3800
|
+
display: block;
|
|
3801
|
+
pointer-events: none;
|
|
3802
|
+
border: solid transparent;
|
|
3803
|
+
content: "";
|
|
3804
|
+
height: 0;
|
|
3805
|
+
width: 0;
|
|
3806
|
+
left: 22px;
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3809
|
+
.flatpickr-calendar.rightMost:before,
|
|
3810
|
+
.flatpickr-calendar.arrowRight:before,
|
|
3811
|
+
.flatpickr-calendar.rightMost:after,
|
|
3812
|
+
.flatpickr-calendar.arrowRight:after {
|
|
3813
|
+
left: auto;
|
|
3814
|
+
right: 22px;
|
|
3815
|
+
}
|
|
3816
|
+
|
|
3817
|
+
.flatpickr-calendar.arrowCenter:before,
|
|
3818
|
+
.flatpickr-calendar.arrowCenter:after {
|
|
3819
|
+
left: 50%;
|
|
3820
|
+
right: 50%;
|
|
3821
|
+
}
|
|
3822
|
+
|
|
3823
|
+
.flatpickr-calendar:before {
|
|
3824
|
+
border-width: 5px;
|
|
3825
|
+
margin: 0 -5px;
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3828
|
+
.flatpickr-calendar:after {
|
|
3829
|
+
border-width: 4px;
|
|
3830
|
+
margin: 0 -4px;
|
|
3831
|
+
}
|
|
3832
|
+
|
|
3833
|
+
.flatpickr-calendar.arrowTop:before,
|
|
3834
|
+
.flatpickr-calendar.arrowTop:after {
|
|
3835
|
+
bottom: 100%;
|
|
3836
|
+
}
|
|
3837
|
+
|
|
3838
|
+
.flatpickr-calendar.arrowTop:before {
|
|
3839
|
+
border-bottom-color: #e6e6e6;
|
|
3840
|
+
}
|
|
3841
|
+
|
|
3842
|
+
.flatpickr-calendar.arrowTop:after {
|
|
3843
|
+
border-bottom-color: #fff;
|
|
3844
|
+
}
|
|
3845
|
+
|
|
3846
|
+
.flatpickr-calendar.arrowBottom:before,
|
|
3847
|
+
.flatpickr-calendar.arrowBottom:after {
|
|
3848
|
+
top: 100%;
|
|
3849
|
+
}
|
|
3850
|
+
|
|
3851
|
+
.flatpickr-calendar.arrowBottom:before {
|
|
3852
|
+
border-top-color: #e6e6e6;
|
|
3853
|
+
}
|
|
3854
|
+
|
|
3855
|
+
.flatpickr-calendar.arrowBottom:after {
|
|
3856
|
+
border-top-color: #fff;
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3859
|
+
.flatpickr-calendar:focus {
|
|
3860
|
+
outline: 0;
|
|
3861
|
+
}
|
|
3862
|
+
|
|
3863
|
+
.flatpickr-wrapper {
|
|
3864
|
+
position: relative;
|
|
3865
|
+
display: inline-block;
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3868
|
+
.flatpickr-months {
|
|
3869
|
+
display: -webkit-box;
|
|
3870
|
+
display: -webkit-flex;
|
|
3871
|
+
display: -ms-flexbox;
|
|
3872
|
+
display: flex;
|
|
3873
|
+
}
|
|
3874
|
+
|
|
3875
|
+
.flatpickr-months .flatpickr-month {
|
|
3876
|
+
background: transparent;
|
|
3877
|
+
color: rgba(0, 0, 0, 0.9);
|
|
3878
|
+
fill: rgba(0, 0, 0, 0.9);
|
|
3879
|
+
height: 34px;
|
|
3880
|
+
line-height: 1;
|
|
3881
|
+
text-align: center;
|
|
3882
|
+
position: relative;
|
|
3883
|
+
-webkit-user-select: none;
|
|
3884
|
+
-moz-user-select: none;
|
|
3885
|
+
-ms-user-select: none;
|
|
3886
|
+
user-select: none;
|
|
3887
|
+
overflow: hidden;
|
|
3888
|
+
-webkit-box-flex: 1;
|
|
3889
|
+
-webkit-flex: 1;
|
|
3890
|
+
-ms-flex: 1;
|
|
3891
|
+
flex: 1;
|
|
3892
|
+
}
|
|
3893
|
+
|
|
3894
|
+
.flatpickr-months .flatpickr-prev-month,
|
|
3895
|
+
.flatpickr-months .flatpickr-next-month {
|
|
3896
|
+
-webkit-user-select: none;
|
|
3897
|
+
-moz-user-select: none;
|
|
3898
|
+
-ms-user-select: none;
|
|
3899
|
+
user-select: none;
|
|
3900
|
+
text-decoration: none;
|
|
3901
|
+
cursor: pointer;
|
|
3902
|
+
position: absolute;
|
|
3903
|
+
top: 0;
|
|
3904
|
+
height: 34px;
|
|
3905
|
+
padding: 10px;
|
|
3906
|
+
z-index: 3;
|
|
3907
|
+
color: rgba(0, 0, 0, 0.9);
|
|
3908
|
+
fill: rgba(0, 0, 0, 0.9);
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
|
|
3912
|
+
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
|
|
3913
|
+
display: none;
|
|
3914
|
+
}
|
|
3915
|
+
|
|
3916
|
+
.flatpickr-months .flatpickr-prev-month i,
|
|
3917
|
+
.flatpickr-months .flatpickr-next-month i {
|
|
3918
|
+
position: relative;
|
|
3919
|
+
}
|
|
3920
|
+
|
|
3921
|
+
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
|
|
3922
|
+
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
|
|
3923
|
+
/*
|
|
3924
|
+
/*rtl:begin:ignore*/
|
|
3925
|
+
/*
|
|
3926
|
+
*/
|
|
3927
|
+
left: 0;
|
|
3928
|
+
/*
|
|
3929
|
+
/*rtl:end:ignore*/
|
|
3930
|
+
/*
|
|
3931
|
+
*/
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
/*
|
|
3935
|
+
/*rtl:begin:ignore*/
|
|
3936
|
+
/*
|
|
3937
|
+
/*rtl:end:ignore*/
|
|
3938
|
+
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
|
|
3939
|
+
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
|
|
3940
|
+
/*
|
|
3941
|
+
/*rtl:begin:ignore*/
|
|
3942
|
+
/*
|
|
3943
|
+
*/
|
|
3944
|
+
right: 0;
|
|
3945
|
+
/*
|
|
3946
|
+
/*rtl:end:ignore*/
|
|
3947
|
+
/*
|
|
3948
|
+
*/
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3951
|
+
/*
|
|
3952
|
+
/*rtl:begin:ignore*/
|
|
3953
|
+
/*
|
|
3954
|
+
/*rtl:end:ignore*/
|
|
3955
|
+
.flatpickr-months .flatpickr-prev-month:hover,
|
|
3956
|
+
.flatpickr-months .flatpickr-next-month:hover {
|
|
3957
|
+
color: #959ea9;
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
.flatpickr-months .flatpickr-prev-month:hover svg,
|
|
3961
|
+
.flatpickr-months .flatpickr-next-month:hover svg {
|
|
3962
|
+
fill: #f64747;
|
|
3963
|
+
}
|
|
3964
|
+
|
|
3965
|
+
.flatpickr-months .flatpickr-prev-month svg,
|
|
3966
|
+
.flatpickr-months .flatpickr-next-month svg {
|
|
3967
|
+
width: 14px;
|
|
3968
|
+
height: 14px;
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
.flatpickr-months .flatpickr-prev-month svg path,
|
|
3972
|
+
.flatpickr-months .flatpickr-next-month svg path {
|
|
3973
|
+
-webkit-transition: fill 0.1s;
|
|
3974
|
+
transition: fill 0.1s;
|
|
3975
|
+
fill: inherit;
|
|
3976
|
+
}
|
|
3977
|
+
|
|
3978
|
+
.numInputWrapper {
|
|
3979
|
+
position: relative;
|
|
3980
|
+
height: auto;
|
|
3981
|
+
}
|
|
3982
|
+
|
|
3983
|
+
.numInputWrapper input,
|
|
3984
|
+
.numInputWrapper span {
|
|
3985
|
+
display: inline-block;
|
|
3986
|
+
}
|
|
3987
|
+
|
|
3988
|
+
.numInputWrapper input {
|
|
3989
|
+
width: 100%;
|
|
3990
|
+
}
|
|
3991
|
+
|
|
3992
|
+
.numInputWrapper input::-ms-clear {
|
|
3993
|
+
display: none;
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3996
|
+
.numInputWrapper input::-webkit-outer-spin-button,
|
|
3997
|
+
.numInputWrapper input::-webkit-inner-spin-button {
|
|
3998
|
+
margin: 0;
|
|
3999
|
+
-webkit-appearance: none;
|
|
4000
|
+
}
|
|
4001
|
+
|
|
4002
|
+
.numInputWrapper span {
|
|
4003
|
+
position: absolute;
|
|
4004
|
+
right: 0;
|
|
4005
|
+
width: 14px;
|
|
4006
|
+
padding: 0 4px 0 2px;
|
|
4007
|
+
height: 50%;
|
|
4008
|
+
line-height: 50%;
|
|
4009
|
+
opacity: 0;
|
|
4010
|
+
cursor: pointer;
|
|
4011
|
+
border: 1px solid rgba(57, 57, 57, 0.15);
|
|
4012
|
+
-webkit-box-sizing: border-box;
|
|
4013
|
+
box-sizing: border-box;
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4016
|
+
.numInputWrapper span:hover {
|
|
4017
|
+
background: rgba(0, 0, 0, 0.1);
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
.numInputWrapper span:active {
|
|
4021
|
+
background: rgba(0, 0, 0, 0.2);
|
|
4022
|
+
}
|
|
4023
|
+
|
|
4024
|
+
.numInputWrapper span:after {
|
|
4025
|
+
display: block;
|
|
4026
|
+
content: "";
|
|
4027
|
+
position: absolute;
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
.numInputWrapper span.arrowUp {
|
|
4031
|
+
top: 0;
|
|
4032
|
+
border-bottom: 0;
|
|
4033
|
+
}
|
|
4034
|
+
|
|
4035
|
+
.numInputWrapper span.arrowUp:after {
|
|
4036
|
+
border-left: 4px solid transparent;
|
|
4037
|
+
border-right: 4px solid transparent;
|
|
4038
|
+
border-bottom: 4px solid rgba(57, 57, 57, 0.6);
|
|
4039
|
+
top: 26%;
|
|
4040
|
+
}
|
|
4041
|
+
|
|
4042
|
+
.numInputWrapper span.arrowDown {
|
|
4043
|
+
top: 50%;
|
|
4044
|
+
}
|
|
4045
|
+
|
|
4046
|
+
.numInputWrapper span.arrowDown:after {
|
|
4047
|
+
border-left: 4px solid transparent;
|
|
4048
|
+
border-right: 4px solid transparent;
|
|
4049
|
+
border-top: 4px solid rgba(57, 57, 57, 0.6);
|
|
4050
|
+
top: 40%;
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
.numInputWrapper span svg {
|
|
4054
|
+
width: inherit;
|
|
4055
|
+
height: auto;
|
|
4056
|
+
}
|
|
4057
|
+
|
|
4058
|
+
.numInputWrapper span svg path {
|
|
4059
|
+
fill: rgba(0, 0, 0, 0.5);
|
|
4060
|
+
}
|
|
4061
|
+
|
|
4062
|
+
.numInputWrapper:hover {
|
|
4063
|
+
background: rgba(0, 0, 0, 0.05);
|
|
4064
|
+
}
|
|
4065
|
+
|
|
4066
|
+
.numInputWrapper:hover span {
|
|
4067
|
+
opacity: 1;
|
|
4068
|
+
}
|
|
4069
|
+
|
|
4070
|
+
.flatpickr-current-month {
|
|
4071
|
+
font-size: 135%;
|
|
4072
|
+
line-height: inherit;
|
|
4073
|
+
font-weight: 300;
|
|
4074
|
+
color: inherit;
|
|
4075
|
+
position: absolute;
|
|
4076
|
+
width: 75%;
|
|
4077
|
+
left: 12.5%;
|
|
4078
|
+
padding: 7.48px 0 0 0;
|
|
4079
|
+
line-height: 1;
|
|
4080
|
+
height: 34px;
|
|
4081
|
+
display: inline-block;
|
|
4082
|
+
text-align: center;
|
|
4083
|
+
-webkit-transform: translate3d(0px, 0px, 0px);
|
|
4084
|
+
transform: translate3d(0px, 0px, 0px);
|
|
4085
|
+
}
|
|
4086
|
+
|
|
4087
|
+
.flatpickr-current-month span.cur-month {
|
|
4088
|
+
font-family: inherit;
|
|
4089
|
+
font-weight: 700;
|
|
4090
|
+
color: inherit;
|
|
4091
|
+
display: inline-block;
|
|
4092
|
+
margin-left: 0.5ch;
|
|
4093
|
+
padding: 0;
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4096
|
+
.flatpickr-current-month span.cur-month:hover {
|
|
4097
|
+
background: rgba(0, 0, 0, 0.05);
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
.flatpickr-current-month .numInputWrapper {
|
|
4101
|
+
width: 6ch;
|
|
4102
|
+
width: 7ch\0 ;
|
|
4103
|
+
display: inline-block;
|
|
4104
|
+
}
|
|
4105
|
+
|
|
4106
|
+
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
|
|
4107
|
+
border-bottom-color: rgba(0, 0, 0, 0.9);
|
|
4108
|
+
}
|
|
4109
|
+
|
|
4110
|
+
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
|
|
4111
|
+
border-top-color: rgba(0, 0, 0, 0.9);
|
|
4112
|
+
}
|
|
4113
|
+
|
|
4114
|
+
.flatpickr-current-month input.cur-year {
|
|
4115
|
+
background: transparent;
|
|
4116
|
+
-webkit-box-sizing: border-box;
|
|
4117
|
+
box-sizing: border-box;
|
|
4118
|
+
color: inherit;
|
|
4119
|
+
cursor: text;
|
|
4120
|
+
padding: 0 0 0 0.5ch;
|
|
4121
|
+
margin: 0;
|
|
4122
|
+
display: inline-block;
|
|
4123
|
+
font-size: inherit;
|
|
4124
|
+
font-family: inherit;
|
|
4125
|
+
font-weight: 300;
|
|
4126
|
+
line-height: inherit;
|
|
4127
|
+
height: auto;
|
|
4128
|
+
border: 0;
|
|
4129
|
+
border-radius: 0;
|
|
4130
|
+
vertical-align: initial;
|
|
4131
|
+
-webkit-appearance: textfield;
|
|
4132
|
+
-moz-appearance: textfield;
|
|
4133
|
+
appearance: textfield;
|
|
4134
|
+
}
|
|
4135
|
+
|
|
4136
|
+
.flatpickr-current-month input.cur-year:focus {
|
|
4137
|
+
outline: 0;
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4140
|
+
.flatpickr-current-month input.cur-year[disabled],
|
|
4141
|
+
.flatpickr-current-month input.cur-year[disabled]:hover {
|
|
4142
|
+
font-size: 100%;
|
|
4143
|
+
color: rgba(0, 0, 0, 0.5);
|
|
4144
|
+
background: transparent;
|
|
4145
|
+
pointer-events: none;
|
|
4146
|
+
}
|
|
4147
|
+
|
|
4148
|
+
.flatpickr-current-month .flatpickr-monthDropdown-months {
|
|
4149
|
+
appearance: menulist;
|
|
4150
|
+
background: transparent;
|
|
4151
|
+
border: none;
|
|
4152
|
+
border-radius: 0;
|
|
4153
|
+
box-sizing: border-box;
|
|
4154
|
+
color: inherit;
|
|
4155
|
+
cursor: pointer;
|
|
4156
|
+
font-size: inherit;
|
|
4157
|
+
font-family: inherit;
|
|
4158
|
+
font-weight: 300;
|
|
4159
|
+
height: auto;
|
|
4160
|
+
line-height: inherit;
|
|
4161
|
+
margin: -1px 0 0 0;
|
|
4162
|
+
outline: none;
|
|
4163
|
+
padding: 0 0 0 0.5ch;
|
|
4164
|
+
position: relative;
|
|
4165
|
+
vertical-align: initial;
|
|
4166
|
+
-webkit-box-sizing: border-box;
|
|
4167
|
+
-webkit-appearance: menulist;
|
|
4168
|
+
-moz-appearance: menulist;
|
|
4169
|
+
width: auto;
|
|
4170
|
+
}
|
|
4171
|
+
|
|
4172
|
+
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
|
|
4173
|
+
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
|
|
4174
|
+
outline: none;
|
|
4175
|
+
}
|
|
4176
|
+
|
|
4177
|
+
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
|
|
4178
|
+
background: rgba(0, 0, 0, 0.05);
|
|
4179
|
+
}
|
|
4180
|
+
|
|
4181
|
+
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
|
|
4182
|
+
background-color: transparent;
|
|
4183
|
+
outline: none;
|
|
4184
|
+
padding: 0;
|
|
4185
|
+
}
|
|
4186
|
+
|
|
4187
|
+
.flatpickr-weekdays {
|
|
4188
|
+
background: transparent;
|
|
4189
|
+
text-align: center;
|
|
4190
|
+
overflow: hidden;
|
|
4191
|
+
width: 100%;
|
|
4192
|
+
display: -webkit-box;
|
|
4193
|
+
display: -webkit-flex;
|
|
4194
|
+
display: -ms-flexbox;
|
|
4195
|
+
display: flex;
|
|
4196
|
+
-webkit-box-align: center;
|
|
4197
|
+
-webkit-align-items: center;
|
|
4198
|
+
-ms-flex-align: center;
|
|
4199
|
+
align-items: center;
|
|
4200
|
+
height: 28px;
|
|
4201
|
+
}
|
|
4202
|
+
|
|
4203
|
+
.flatpickr-weekdays .flatpickr-weekdaycontainer {
|
|
4204
|
+
display: -webkit-box;
|
|
4205
|
+
display: -webkit-flex;
|
|
4206
|
+
display: -ms-flexbox;
|
|
4207
|
+
display: flex;
|
|
4208
|
+
-webkit-box-flex: 1;
|
|
4209
|
+
-webkit-flex: 1;
|
|
4210
|
+
-ms-flex: 1;
|
|
4211
|
+
flex: 1;
|
|
4212
|
+
}
|
|
4213
|
+
|
|
4214
|
+
span.flatpickr-weekday {
|
|
4215
|
+
cursor: default;
|
|
4216
|
+
font-size: 90%;
|
|
4217
|
+
background: transparent;
|
|
4218
|
+
color: rgba(0, 0, 0, 0.54);
|
|
4219
|
+
line-height: 1;
|
|
4220
|
+
margin: 0;
|
|
4221
|
+
text-align: center;
|
|
4222
|
+
display: block;
|
|
4223
|
+
-webkit-box-flex: 1;
|
|
4224
|
+
-webkit-flex: 1;
|
|
4225
|
+
-ms-flex: 1;
|
|
4226
|
+
flex: 1;
|
|
4227
|
+
font-weight: bolder;
|
|
4228
|
+
}
|
|
4229
|
+
|
|
4230
|
+
.dayContainer,
|
|
4231
|
+
.flatpickr-weeks {
|
|
4232
|
+
padding: 1px 0 0 0;
|
|
4233
|
+
}
|
|
4234
|
+
|
|
4235
|
+
.flatpickr-days {
|
|
4236
|
+
position: relative;
|
|
4237
|
+
overflow: hidden;
|
|
4238
|
+
display: -webkit-box;
|
|
4239
|
+
display: -webkit-flex;
|
|
4240
|
+
display: -ms-flexbox;
|
|
4241
|
+
display: flex;
|
|
4242
|
+
-webkit-box-align: start;
|
|
4243
|
+
-webkit-align-items: flex-start;
|
|
4244
|
+
-ms-flex-align: start;
|
|
4245
|
+
align-items: flex-start;
|
|
4246
|
+
width: 307.875px;
|
|
4247
|
+
}
|
|
4248
|
+
|
|
4249
|
+
.flatpickr-days:focus {
|
|
4250
|
+
outline: 0;
|
|
4251
|
+
}
|
|
4252
|
+
|
|
4253
|
+
.dayContainer {
|
|
4254
|
+
padding: 0;
|
|
4255
|
+
outline: 0;
|
|
4256
|
+
text-align: left;
|
|
4257
|
+
width: 307.875px;
|
|
4258
|
+
min-width: 307.875px;
|
|
4259
|
+
max-width: 307.875px;
|
|
4260
|
+
-webkit-box-sizing: border-box;
|
|
4261
|
+
box-sizing: border-box;
|
|
4262
|
+
display: inline-block;
|
|
4263
|
+
display: -ms-flexbox;
|
|
4264
|
+
display: -webkit-box;
|
|
4265
|
+
display: -webkit-flex;
|
|
4266
|
+
display: flex;
|
|
4267
|
+
-webkit-flex-wrap: wrap;
|
|
4268
|
+
flex-wrap: wrap;
|
|
4269
|
+
-ms-flex-wrap: wrap;
|
|
4270
|
+
-ms-flex-pack: justify;
|
|
4271
|
+
-webkit-justify-content: space-around;
|
|
4272
|
+
justify-content: space-around;
|
|
4273
|
+
-webkit-transform: translate3d(0px, 0px, 0px);
|
|
4274
|
+
transform: translate3d(0px, 0px, 0px);
|
|
4275
|
+
opacity: 1;
|
|
4276
|
+
}
|
|
4277
|
+
|
|
4278
|
+
.dayContainer + .dayContainer {
|
|
4279
|
+
-webkit-box-shadow: -1px 0 0 #e6e6e6;
|
|
4280
|
+
box-shadow: -1px 0 0 #e6e6e6;
|
|
4281
|
+
}
|
|
4282
|
+
|
|
4283
|
+
.flatpickr-day {
|
|
4284
|
+
background: none;
|
|
4285
|
+
border: 1px solid transparent;
|
|
4286
|
+
border-radius: 150px;
|
|
4287
|
+
-webkit-box-sizing: border-box;
|
|
4288
|
+
box-sizing: border-box;
|
|
4289
|
+
color: #393939;
|
|
4290
|
+
cursor: pointer;
|
|
4291
|
+
font-weight: 400;
|
|
4292
|
+
width: 14.2857143%;
|
|
4293
|
+
-webkit-flex-basis: 14.2857143%;
|
|
4294
|
+
-ms-flex-preferred-size: 14.2857143%;
|
|
4295
|
+
flex-basis: 14.2857143%;
|
|
4296
|
+
max-width: 39px;
|
|
4297
|
+
height: 39px;
|
|
4298
|
+
line-height: 39px;
|
|
4299
|
+
margin: 0;
|
|
4300
|
+
display: inline-block;
|
|
4301
|
+
position: relative;
|
|
4302
|
+
-webkit-box-pack: center;
|
|
4303
|
+
-webkit-justify-content: center;
|
|
4304
|
+
-ms-flex-pack: center;
|
|
4305
|
+
justify-content: center;
|
|
4306
|
+
text-align: center;
|
|
4307
|
+
}
|
|
4308
|
+
|
|
4309
|
+
.flatpickr-day.inRange,
|
|
4310
|
+
.flatpickr-day.prevMonthDay.inRange,
|
|
4311
|
+
.flatpickr-day.nextMonthDay.inRange,
|
|
4312
|
+
.flatpickr-day.today.inRange,
|
|
4313
|
+
.flatpickr-day.prevMonthDay.today.inRange,
|
|
4314
|
+
.flatpickr-day.nextMonthDay.today.inRange,
|
|
4315
|
+
.flatpickr-day:hover,
|
|
4316
|
+
.flatpickr-day.prevMonthDay:hover,
|
|
4317
|
+
.flatpickr-day.nextMonthDay:hover,
|
|
4318
|
+
.flatpickr-day:focus,
|
|
4319
|
+
.flatpickr-day.prevMonthDay:focus,
|
|
4320
|
+
.flatpickr-day.nextMonthDay:focus {
|
|
4321
|
+
cursor: pointer;
|
|
4322
|
+
outline: 0;
|
|
4323
|
+
background: #e6e6e6;
|
|
4324
|
+
border-color: #e6e6e6;
|
|
4325
|
+
}
|
|
4326
|
+
|
|
4327
|
+
.flatpickr-day.today {
|
|
4328
|
+
border-color: #959ea9;
|
|
4329
|
+
}
|
|
4330
|
+
|
|
4331
|
+
.flatpickr-day.today:hover,
|
|
4332
|
+
.flatpickr-day.today:focus {
|
|
4333
|
+
border-color: #959ea9;
|
|
4334
|
+
background: #959ea9;
|
|
4335
|
+
color: #fff;
|
|
4336
|
+
}
|
|
4337
|
+
|
|
4338
|
+
.flatpickr-day.selected,
|
|
4339
|
+
.flatpickr-day.startRange,
|
|
4340
|
+
.flatpickr-day.endRange,
|
|
4341
|
+
.flatpickr-day.selected.inRange,
|
|
4342
|
+
.flatpickr-day.startRange.inRange,
|
|
4343
|
+
.flatpickr-day.endRange.inRange,
|
|
4344
|
+
.flatpickr-day.selected:focus,
|
|
4345
|
+
.flatpickr-day.startRange:focus,
|
|
4346
|
+
.flatpickr-day.endRange:focus,
|
|
4347
|
+
.flatpickr-day.selected:hover,
|
|
4348
|
+
.flatpickr-day.startRange:hover,
|
|
4349
|
+
.flatpickr-day.endRange:hover,
|
|
4350
|
+
.flatpickr-day.selected.prevMonthDay,
|
|
4351
|
+
.flatpickr-day.startRange.prevMonthDay,
|
|
4352
|
+
.flatpickr-day.endRange.prevMonthDay,
|
|
4353
|
+
.flatpickr-day.selected.nextMonthDay,
|
|
4354
|
+
.flatpickr-day.startRange.nextMonthDay,
|
|
4355
|
+
.flatpickr-day.endRange.nextMonthDay {
|
|
4356
|
+
background: #569ff7;
|
|
4357
|
+
-webkit-box-shadow: none;
|
|
4358
|
+
box-shadow: none;
|
|
4359
|
+
color: #fff;
|
|
4360
|
+
border-color: #569ff7;
|
|
4361
|
+
}
|
|
4362
|
+
|
|
4363
|
+
.flatpickr-day.selected.startRange,
|
|
4364
|
+
.flatpickr-day.startRange.startRange,
|
|
4365
|
+
.flatpickr-day.endRange.startRange {
|
|
4366
|
+
border-radius: 50px 0 0 50px;
|
|
4367
|
+
}
|
|
4368
|
+
|
|
4369
|
+
.flatpickr-day.selected.endRange,
|
|
4370
|
+
.flatpickr-day.startRange.endRange,
|
|
4371
|
+
.flatpickr-day.endRange.endRange {
|
|
4372
|
+
border-radius: 0 50px 50px 0;
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4375
|
+
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
|
|
4376
|
+
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
|
|
4377
|
+
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
|
|
4378
|
+
-webkit-box-shadow: -10px 0 0 #569ff7;
|
|
4379
|
+
box-shadow: -10px 0 0 #569ff7;
|
|
4380
|
+
}
|
|
4381
|
+
|
|
4382
|
+
.flatpickr-day.selected.startRange.endRange,
|
|
4383
|
+
.flatpickr-day.startRange.startRange.endRange,
|
|
4384
|
+
.flatpickr-day.endRange.startRange.endRange {
|
|
4385
|
+
border-radius: 50px;
|
|
4386
|
+
}
|
|
4387
|
+
|
|
4388
|
+
.flatpickr-day.inRange {
|
|
4389
|
+
border-radius: 0;
|
|
4390
|
+
-webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
|
4391
|
+
box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
.flatpickr-day.flatpickr-disabled,
|
|
4395
|
+
.flatpickr-day.flatpickr-disabled:hover,
|
|
4396
|
+
.flatpickr-day.prevMonthDay,
|
|
4397
|
+
.flatpickr-day.nextMonthDay,
|
|
4398
|
+
.flatpickr-day.notAllowed,
|
|
4399
|
+
.flatpickr-day.notAllowed.prevMonthDay,
|
|
4400
|
+
.flatpickr-day.notAllowed.nextMonthDay {
|
|
4401
|
+
color: rgba(57, 57, 57, 0.3);
|
|
4402
|
+
background: transparent;
|
|
4403
|
+
border-color: transparent;
|
|
4404
|
+
cursor: default;
|
|
4405
|
+
}
|
|
4406
|
+
|
|
4407
|
+
.flatpickr-day.flatpickr-disabled,
|
|
4408
|
+
.flatpickr-day.flatpickr-disabled:hover {
|
|
4409
|
+
cursor: not-allowed;
|
|
4410
|
+
color: rgba(57, 57, 57, 0.1);
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4413
|
+
.flatpickr-day.week.selected {
|
|
4414
|
+
border-radius: 0;
|
|
4415
|
+
-webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
|
|
4416
|
+
box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
.flatpickr-day.hidden {
|
|
4420
|
+
visibility: hidden;
|
|
4421
|
+
}
|
|
4422
|
+
|
|
4423
|
+
.rangeMode .flatpickr-day {
|
|
4424
|
+
margin-top: 1px;
|
|
4425
|
+
}
|
|
4426
|
+
|
|
4427
|
+
.flatpickr-weekwrapper {
|
|
4428
|
+
float: left;
|
|
4429
|
+
}
|
|
4430
|
+
|
|
4431
|
+
.flatpickr-weekwrapper .flatpickr-weeks {
|
|
4432
|
+
padding: 0 12px;
|
|
4433
|
+
-webkit-box-shadow: 1px 0 0 #e6e6e6;
|
|
4434
|
+
box-shadow: 1px 0 0 #e6e6e6;
|
|
4435
|
+
}
|
|
4436
|
+
|
|
4437
|
+
.flatpickr-weekwrapper .flatpickr-weekday {
|
|
4438
|
+
float: none;
|
|
4439
|
+
width: 100%;
|
|
4440
|
+
line-height: 28px;
|
|
4441
|
+
}
|
|
4442
|
+
|
|
4443
|
+
.flatpickr-weekwrapper span.flatpickr-day,
|
|
4444
|
+
.flatpickr-weekwrapper span.flatpickr-day:hover {
|
|
4445
|
+
display: block;
|
|
4446
|
+
width: 100%;
|
|
4447
|
+
max-width: none;
|
|
4448
|
+
color: rgba(57, 57, 57, 0.3);
|
|
4449
|
+
background: transparent;
|
|
4450
|
+
cursor: default;
|
|
4451
|
+
border: none;
|
|
4452
|
+
}
|
|
4453
|
+
|
|
4454
|
+
.flatpickr-innerContainer {
|
|
4455
|
+
display: block;
|
|
4456
|
+
display: -webkit-box;
|
|
4457
|
+
display: -webkit-flex;
|
|
4458
|
+
display: -ms-flexbox;
|
|
4459
|
+
display: flex;
|
|
4460
|
+
-webkit-box-sizing: border-box;
|
|
4461
|
+
box-sizing: border-box;
|
|
4462
|
+
overflow: hidden;
|
|
4463
|
+
}
|
|
4464
|
+
|
|
4465
|
+
.flatpickr-rContainer {
|
|
4466
|
+
display: inline-block;
|
|
4467
|
+
padding: 0;
|
|
4468
|
+
-webkit-box-sizing: border-box;
|
|
4469
|
+
box-sizing: border-box;
|
|
4470
|
+
}
|
|
4471
|
+
|
|
4472
|
+
.flatpickr-time {
|
|
4473
|
+
text-align: center;
|
|
4474
|
+
outline: 0;
|
|
4475
|
+
display: block;
|
|
4476
|
+
height: 0;
|
|
4477
|
+
line-height: 40px;
|
|
4478
|
+
max-height: 40px;
|
|
4479
|
+
-webkit-box-sizing: border-box;
|
|
4480
|
+
box-sizing: border-box;
|
|
4481
|
+
overflow: hidden;
|
|
4482
|
+
display: -webkit-box;
|
|
4483
|
+
display: -webkit-flex;
|
|
4484
|
+
display: -ms-flexbox;
|
|
4485
|
+
display: flex;
|
|
4486
|
+
}
|
|
4487
|
+
|
|
4488
|
+
.flatpickr-time:after {
|
|
4489
|
+
content: "";
|
|
4490
|
+
display: table;
|
|
4491
|
+
clear: both;
|
|
4492
|
+
}
|
|
4493
|
+
|
|
4494
|
+
.flatpickr-time .numInputWrapper {
|
|
4495
|
+
-webkit-box-flex: 1;
|
|
4496
|
+
-webkit-flex: 1;
|
|
4497
|
+
-ms-flex: 1;
|
|
4498
|
+
flex: 1;
|
|
4499
|
+
width: 40%;
|
|
4500
|
+
height: 40px;
|
|
4501
|
+
float: left;
|
|
4502
|
+
}
|
|
4503
|
+
|
|
4504
|
+
.flatpickr-time .numInputWrapper span.arrowUp:after {
|
|
4505
|
+
border-bottom-color: #393939;
|
|
4506
|
+
}
|
|
4507
|
+
|
|
4508
|
+
.flatpickr-time .numInputWrapper span.arrowDown:after {
|
|
4509
|
+
border-top-color: #393939;
|
|
4510
|
+
}
|
|
4511
|
+
|
|
4512
|
+
.flatpickr-time.hasSeconds .numInputWrapper {
|
|
4513
|
+
width: 26%;
|
|
4514
|
+
}
|
|
4515
|
+
|
|
4516
|
+
.flatpickr-time.time24hr .numInputWrapper {
|
|
4517
|
+
width: 49%;
|
|
4518
|
+
}
|
|
4519
|
+
|
|
4520
|
+
.flatpickr-time input {
|
|
4521
|
+
background: transparent;
|
|
4522
|
+
-webkit-box-shadow: none;
|
|
4523
|
+
box-shadow: none;
|
|
4524
|
+
border: 0;
|
|
4525
|
+
border-radius: 0;
|
|
4526
|
+
text-align: center;
|
|
4527
|
+
margin: 0;
|
|
4528
|
+
padding: 0;
|
|
4529
|
+
height: inherit;
|
|
4530
|
+
line-height: inherit;
|
|
4531
|
+
color: #393939;
|
|
4532
|
+
font-size: 14px;
|
|
4533
|
+
position: relative;
|
|
4534
|
+
-webkit-box-sizing: border-box;
|
|
4535
|
+
box-sizing: border-box;
|
|
4536
|
+
-webkit-appearance: textfield;
|
|
4537
|
+
-moz-appearance: textfield;
|
|
4538
|
+
appearance: textfield;
|
|
4539
|
+
}
|
|
4540
|
+
|
|
4541
|
+
.flatpickr-time input.flatpickr-hour {
|
|
4542
|
+
font-weight: bold;
|
|
4543
|
+
}
|
|
4544
|
+
|
|
4545
|
+
.flatpickr-time input.flatpickr-minute,
|
|
4546
|
+
.flatpickr-time input.flatpickr-second {
|
|
4547
|
+
font-weight: 400;
|
|
4548
|
+
}
|
|
4549
|
+
|
|
4550
|
+
.flatpickr-time input:focus {
|
|
4551
|
+
outline: 0;
|
|
4552
|
+
border: 0;
|
|
4553
|
+
}
|
|
4554
|
+
|
|
4555
|
+
.flatpickr-time .flatpickr-time-separator,
|
|
4556
|
+
.flatpickr-time .flatpickr-am-pm {
|
|
4557
|
+
height: inherit;
|
|
4558
|
+
float: left;
|
|
4559
|
+
line-height: inherit;
|
|
4560
|
+
color: #393939;
|
|
4561
|
+
font-weight: bold;
|
|
4562
|
+
width: 2%;
|
|
4563
|
+
-webkit-user-select: none;
|
|
4564
|
+
-moz-user-select: none;
|
|
4565
|
+
-ms-user-select: none;
|
|
4566
|
+
user-select: none;
|
|
4567
|
+
-webkit-align-self: center;
|
|
4568
|
+
-ms-flex-item-align: center;
|
|
4569
|
+
align-self: center;
|
|
4570
|
+
}
|
|
4571
|
+
|
|
4572
|
+
.flatpickr-time .flatpickr-am-pm {
|
|
4573
|
+
outline: 0;
|
|
4574
|
+
width: 18%;
|
|
4575
|
+
cursor: pointer;
|
|
4576
|
+
text-align: center;
|
|
4577
|
+
font-weight: 400;
|
|
4578
|
+
}
|
|
4579
|
+
|
|
4580
|
+
.flatpickr-time input:hover,
|
|
4581
|
+
.flatpickr-time .flatpickr-am-pm:hover,
|
|
4582
|
+
.flatpickr-time input:focus,
|
|
4583
|
+
.flatpickr-time .flatpickr-am-pm:focus {
|
|
4584
|
+
background: #eee;
|
|
4585
|
+
}
|
|
4586
|
+
|
|
4587
|
+
.flatpickr-input[readonly] {
|
|
4588
|
+
cursor: pointer;
|
|
4589
|
+
}
|
|
4590
|
+
|
|
4591
|
+
@-webkit-keyframes fpFadeInDown {
|
|
4592
|
+
from {
|
|
4593
|
+
opacity: 0;
|
|
4594
|
+
-webkit-transform: translate3d(0, -20px, 0);
|
|
4595
|
+
transform: translate3d(0, -20px, 0);
|
|
4596
|
+
}
|
|
4597
|
+
to {
|
|
4598
|
+
opacity: 1;
|
|
4599
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
4600
|
+
transform: translate3d(0, 0, 0);
|
|
4601
|
+
}
|
|
4602
|
+
}
|
|
4603
|
+
@keyframes fpFadeInDown {
|
|
4604
|
+
from {
|
|
4605
|
+
opacity: 0;
|
|
4606
|
+
-webkit-transform: translate3d(0, -20px, 0);
|
|
4607
|
+
transform: translate3d(0, -20px, 0);
|
|
4608
|
+
}
|
|
4609
|
+
to {
|
|
4610
|
+
opacity: 1;
|
|
4611
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
4612
|
+
transform: translate3d(0, 0, 0);
|
|
4613
|
+
}
|
|
4614
|
+
}
|
|
4615
|
+
/**
|
|
4616
|
+
* Swiper 11.2.6
|
|
4617
|
+
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
|
4618
|
+
* https://swiperjs.com
|
|
4619
|
+
*
|
|
4620
|
+
* Copyright 2014-2025 Vladimir Kharlampidi
|
|
4621
|
+
*
|
|
4622
|
+
* Released under the MIT License
|
|
4623
|
+
*
|
|
4624
|
+
* Released on: March 19, 2025
|
|
4625
|
+
*/
|
|
4626
|
+
/* FONT_START */
|
|
4627
|
+
@font-face {
|
|
4628
|
+
font-family: "swiper-icons";
|
|
4629
|
+
src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
|
|
4630
|
+
font-weight: 400;
|
|
4631
|
+
font-style: normal;
|
|
4632
|
+
}
|
|
4633
|
+
/* FONT_END */
|
|
4634
|
+
:root {
|
|
4635
|
+
--swiper-theme-color: #007aff;
|
|
4636
|
+
/*
|
|
4637
|
+
--swiper-preloader-color: var(--swiper-theme-color);
|
|
4638
|
+
--swiper-wrapper-transition-timing-function: initial;
|
|
4639
|
+
*/
|
|
4640
|
+
}
|
|
4641
|
+
|
|
4642
|
+
:host {
|
|
4643
|
+
position: relative;
|
|
4644
|
+
display: block;
|
|
4645
|
+
margin-left: auto;
|
|
4646
|
+
margin-right: auto;
|
|
4647
|
+
z-index: 1;
|
|
4648
|
+
}
|
|
4649
|
+
|
|
4650
|
+
.swiper {
|
|
4651
|
+
margin-left: auto;
|
|
4652
|
+
margin-right: auto;
|
|
4653
|
+
position: relative;
|
|
4654
|
+
overflow: hidden;
|
|
4655
|
+
list-style: none;
|
|
4656
|
+
padding: 0;
|
|
4657
|
+
/* Fix of Webkit flickering */
|
|
4658
|
+
z-index: 1;
|
|
4659
|
+
display: block;
|
|
4660
|
+
}
|
|
4661
|
+
|
|
4662
|
+
.swiper-vertical > .swiper-wrapper {
|
|
4663
|
+
flex-direction: column;
|
|
4664
|
+
}
|
|
4665
|
+
|
|
4666
|
+
.swiper-wrapper {
|
|
4667
|
+
position: relative;
|
|
4668
|
+
width: 100%;
|
|
4669
|
+
height: 100%;
|
|
4670
|
+
z-index: 1;
|
|
4671
|
+
display: flex;
|
|
4672
|
+
transition-property: transform;
|
|
4673
|
+
transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
|
|
4674
|
+
box-sizing: content-box;
|
|
4675
|
+
}
|
|
4676
|
+
|
|
4677
|
+
.swiper-android .swiper-slide,
|
|
4678
|
+
.swiper-ios .swiper-slide,
|
|
4679
|
+
.swiper-wrapper {
|
|
4680
|
+
transform: translate3d(0px, 0, 0);
|
|
4681
|
+
}
|
|
4682
|
+
|
|
4683
|
+
.swiper-horizontal {
|
|
4684
|
+
touch-action: pan-y;
|
|
4685
|
+
}
|
|
4686
|
+
|
|
4687
|
+
.swiper-vertical {
|
|
4688
|
+
touch-action: pan-x;
|
|
4689
|
+
}
|
|
4690
|
+
|
|
4691
|
+
.swiper-slide {
|
|
4692
|
+
flex-shrink: 0;
|
|
4693
|
+
width: 100%;
|
|
4694
|
+
height: 100%;
|
|
4695
|
+
position: relative;
|
|
4696
|
+
transition-property: transform;
|
|
4697
|
+
display: block;
|
|
4698
|
+
}
|
|
4699
|
+
|
|
4700
|
+
.swiper-slide-invisible-blank {
|
|
4701
|
+
visibility: hidden;
|
|
4702
|
+
}
|
|
4703
|
+
|
|
4704
|
+
/* Auto Height */
|
|
4705
|
+
.swiper-autoheight,
|
|
4706
|
+
.swiper-autoheight .swiper-slide {
|
|
4707
|
+
height: auto;
|
|
4708
|
+
}
|
|
4709
|
+
|
|
4710
|
+
.swiper-autoheight .swiper-wrapper {
|
|
4711
|
+
align-items: flex-start;
|
|
4712
|
+
transition-property: transform, height;
|
|
4713
|
+
}
|
|
4714
|
+
|
|
4715
|
+
.swiper-backface-hidden .swiper-slide {
|
|
4716
|
+
transform: translateZ(0);
|
|
4717
|
+
-webkit-backface-visibility: hidden;
|
|
4718
|
+
backface-visibility: hidden;
|
|
4719
|
+
}
|
|
4720
|
+
|
|
4721
|
+
/* 3D Effects */
|
|
4722
|
+
.swiper-3d.swiper-css-mode .swiper-wrapper {
|
|
4723
|
+
perspective: 1200px;
|
|
4724
|
+
}
|
|
4725
|
+
|
|
4726
|
+
.swiper-3d .swiper-wrapper {
|
|
4727
|
+
transform-style: preserve-3d;
|
|
4728
|
+
}
|
|
4729
|
+
|
|
4730
|
+
.swiper-3d {
|
|
4731
|
+
perspective: 1200px;
|
|
4732
|
+
}
|
|
4733
|
+
|
|
4734
|
+
.swiper-3d .swiper-slide,
|
|
4735
|
+
.swiper-3d .swiper-cube-shadow {
|
|
4736
|
+
transform-style: preserve-3d;
|
|
4737
|
+
}
|
|
4738
|
+
|
|
4739
|
+
/* CSS Mode */
|
|
4740
|
+
.swiper-css-mode > .swiper-wrapper {
|
|
4741
|
+
overflow: auto;
|
|
4742
|
+
scrollbar-width: none;
|
|
4743
|
+
/* For Firefox */
|
|
4744
|
+
-ms-overflow-style: none;
|
|
4745
|
+
/* For Internet Explorer and Edge */
|
|
4746
|
+
}
|
|
4747
|
+
|
|
4748
|
+
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
|
|
4749
|
+
display: none;
|
|
4750
|
+
}
|
|
4751
|
+
|
|
4752
|
+
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
|
|
4753
|
+
scroll-snap-align: start start;
|
|
4754
|
+
}
|
|
4755
|
+
|
|
4756
|
+
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
|
|
4757
|
+
scroll-snap-type: x mandatory;
|
|
4758
|
+
}
|
|
4759
|
+
|
|
4760
|
+
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
|
|
4761
|
+
scroll-snap-type: y mandatory;
|
|
4762
|
+
}
|
|
4763
|
+
|
|
4764
|
+
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
|
|
4765
|
+
scroll-snap-type: none;
|
|
4766
|
+
}
|
|
4767
|
+
|
|
4768
|
+
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
|
|
4769
|
+
scroll-snap-align: none;
|
|
4770
|
+
}
|
|
4771
|
+
|
|
4772
|
+
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
|
|
4773
|
+
content: "";
|
|
4774
|
+
flex-shrink: 0;
|
|
4775
|
+
order: 9999;
|
|
4776
|
+
}
|
|
4777
|
+
|
|
4778
|
+
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
|
|
4779
|
+
scroll-snap-align: center center;
|
|
4780
|
+
scroll-snap-stop: always;
|
|
4781
|
+
}
|
|
4782
|
+
|
|
4783
|
+
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
|
|
4784
|
+
margin-inline-start: var(--swiper-centered-offset-before);
|
|
4785
|
+
}
|
|
4786
|
+
|
|
4787
|
+
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
|
|
4788
|
+
height: 100%;
|
|
4789
|
+
min-height: 1px;
|
|
4790
|
+
width: var(--swiper-centered-offset-after);
|
|
4791
|
+
}
|
|
4792
|
+
|
|
4793
|
+
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
|
|
4794
|
+
margin-block-start: var(--swiper-centered-offset-before);
|
|
4795
|
+
}
|
|
4796
|
+
|
|
4797
|
+
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
|
|
4798
|
+
width: 100%;
|
|
4799
|
+
min-width: 1px;
|
|
4800
|
+
height: var(--swiper-centered-offset-after);
|
|
4801
|
+
}
|
|
4802
|
+
|
|
4803
|
+
/* Slide styles start */
|
|
4804
|
+
/* 3D Shadows */
|
|
4805
|
+
.swiper-3d .swiper-slide-shadow,
|
|
4806
|
+
.swiper-3d .swiper-slide-shadow-left,
|
|
4807
|
+
.swiper-3d .swiper-slide-shadow-right,
|
|
4808
|
+
.swiper-3d .swiper-slide-shadow-top,
|
|
4809
|
+
.swiper-3d .swiper-slide-shadow-bottom,
|
|
4810
|
+
.swiper-3d .swiper-slide-shadow,
|
|
4811
|
+
.swiper-3d .swiper-slide-shadow-left,
|
|
4812
|
+
.swiper-3d .swiper-slide-shadow-right,
|
|
4813
|
+
.swiper-3d .swiper-slide-shadow-top,
|
|
4814
|
+
.swiper-3d .swiper-slide-shadow-bottom {
|
|
4815
|
+
position: absolute;
|
|
4816
|
+
left: 0;
|
|
4817
|
+
top: 0;
|
|
4818
|
+
width: 100%;
|
|
4819
|
+
height: 100%;
|
|
4820
|
+
pointer-events: none;
|
|
4821
|
+
z-index: 10;
|
|
4822
|
+
}
|
|
4823
|
+
|
|
4824
|
+
.swiper-3d .swiper-slide-shadow {
|
|
4825
|
+
background: rgba(0, 0, 0, 0.15);
|
|
4826
|
+
}
|
|
4827
|
+
|
|
4828
|
+
.swiper-3d .swiper-slide-shadow-left {
|
|
4829
|
+
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
4830
|
+
}
|
|
4831
|
+
|
|
4832
|
+
.swiper-3d .swiper-slide-shadow-right {
|
|
4833
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
4834
|
+
}
|
|
4835
|
+
|
|
4836
|
+
.swiper-3d .swiper-slide-shadow-top {
|
|
4837
|
+
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
4838
|
+
}
|
|
4839
|
+
|
|
4840
|
+
.swiper-3d .swiper-slide-shadow-bottom {
|
|
4841
|
+
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
4842
|
+
}
|
|
4843
|
+
|
|
4844
|
+
.swiper-lazy-preloader {
|
|
4845
|
+
width: 42px;
|
|
4846
|
+
height: 42px;
|
|
4847
|
+
position: absolute;
|
|
4848
|
+
left: 50%;
|
|
4849
|
+
top: 50%;
|
|
4850
|
+
margin-left: -21px;
|
|
4851
|
+
margin-top: -21px;
|
|
4852
|
+
z-index: 10;
|
|
4853
|
+
transform-origin: 50%;
|
|
4854
|
+
box-sizing: border-box;
|
|
4855
|
+
border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
|
|
4856
|
+
border-radius: 50%;
|
|
4857
|
+
border-top-color: transparent;
|
|
4858
|
+
}
|
|
4859
|
+
|
|
4860
|
+
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
|
|
4861
|
+
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
|
|
4862
|
+
animation: swiper-preloader-spin 1s infinite linear;
|
|
4863
|
+
}
|
|
4864
|
+
|
|
4865
|
+
.swiper-lazy-preloader-white {
|
|
4866
|
+
--swiper-preloader-color: #fff;
|
|
4867
|
+
}
|
|
4868
|
+
|
|
4869
|
+
.swiper-lazy-preloader-black {
|
|
4870
|
+
--swiper-preloader-color: #000;
|
|
4871
|
+
}
|
|
4872
|
+
|
|
4873
|
+
@keyframes swiper-preloader-spin {
|
|
4874
|
+
0% {
|
|
4875
|
+
transform: rotate(0deg);
|
|
4876
|
+
}
|
|
4877
|
+
100% {
|
|
4878
|
+
transform: rotate(360deg);
|
|
4879
|
+
}
|
|
4880
|
+
}
|
|
4881
|
+
/* Slide styles end */
|