@idds/styles 1.5.76 → 1.5.78
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/index.css +155 -51
- package/dist/index.min.css +7 -7
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2688,9 +2688,6 @@ dialog.bottom-sheet-dropdown {
|
|
|
2688
2688
|
max-width: 100%;
|
|
2689
2689
|
transition: border-color 0.2s ease;
|
|
2690
2690
|
}
|
|
2691
|
-
.ina-button-group:focus-within {
|
|
2692
|
-
border-color: var(--ina-stroke-tertiary, #1f1f1f);
|
|
2693
|
-
}
|
|
2694
2691
|
.ina-button-group--disabled {
|
|
2695
2692
|
opacity: 0.6;
|
|
2696
2693
|
cursor: not-allowed;
|
|
@@ -2716,22 +2713,31 @@ dialog.bottom-sheet-dropdown {
|
|
|
2716
2713
|
-moz-user-select: none;
|
|
2717
2714
|
user-select: none;
|
|
2718
2715
|
}
|
|
2716
|
+
.ina-button-group__button:first-child {
|
|
2717
|
+
border-top-left-radius: inherit;
|
|
2718
|
+
border-bottom-left-radius: inherit;
|
|
2719
|
+
}
|
|
2719
2720
|
.ina-button-group__button:last-child {
|
|
2720
2721
|
border-right: none;
|
|
2722
|
+
border-top-right-radius: inherit;
|
|
2723
|
+
border-bottom-right-radius: inherit;
|
|
2721
2724
|
}
|
|
2722
2725
|
.ina-button-group__button:hover:not(.ina-button-group__button--disabled) {
|
|
2723
|
-
background-color: var(--ina-
|
|
2724
|
-
color: var(--ina-content-primary);
|
|
2726
|
+
background-color: var(--ina-primary-25);
|
|
2725
2727
|
}
|
|
2726
2728
|
.ina-button-group__button:focus-visible:not(
|
|
2727
2729
|
.ina-button-group__button--disabled
|
|
2728
2730
|
) {
|
|
2729
|
-
background-color: var(--ina-
|
|
2731
|
+
background-color: var(--ina-primary-25);
|
|
2730
2732
|
border: 2px solid var(--ina-primary-600, #0968f6);
|
|
2731
2733
|
}
|
|
2734
|
+
/* Focus states */
|
|
2735
|
+
.ina-button-group__button:focus:not(.ina-button-group__button--disabled) {
|
|
2736
|
+
border: 1px solid var(--ina-primary-600, #0968f6);
|
|
2737
|
+
}
|
|
2732
2738
|
.ina-button-group__button--selected {
|
|
2733
|
-
background-color: var(--ina-
|
|
2734
|
-
color: var(--ina-
|
|
2739
|
+
background-color: var(--ina-primary-25);
|
|
2740
|
+
color: var(--ina-primary-primary);
|
|
2735
2741
|
}
|
|
2736
2742
|
.ina-button-group__button--disabled {
|
|
2737
2743
|
opacity: 0.5;
|
|
@@ -2744,7 +2750,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
2744
2750
|
justify-content: center;
|
|
2745
2751
|
gap: 8px;
|
|
2746
2752
|
}
|
|
2747
|
-
@media (max-width:
|
|
2753
|
+
@media (max-width: 767px) {
|
|
2748
2754
|
.ina-button-group__button {
|
|
2749
2755
|
height: 32px;
|
|
2750
2756
|
padding: 0 12px;
|
|
@@ -2752,20 +2758,12 @@ dialog.bottom-sheet-dropdown {
|
|
|
2752
2758
|
line-height: var(--ina-line-height-xs);
|
|
2753
2759
|
}
|
|
2754
2760
|
}
|
|
2755
|
-
@media (min-width:
|
|
2761
|
+
@media (min-width: 768px) and (max-width: 1023px) {
|
|
2756
2762
|
.ina-button-group__button {
|
|
2757
2763
|
font-size: 14px;
|
|
2758
2764
|
padding: 0 14px;
|
|
2759
2765
|
}
|
|
2760
2766
|
}
|
|
2761
|
-
/* Focus states */
|
|
2762
|
-
.ina-button-group__button:focus:not(.ina-button-group__button--disabled) {
|
|
2763
|
-
outline: none;
|
|
2764
|
-
box-shadow:
|
|
2765
|
-
0 0 0 2px var(--ina-background-primary, #ffffff),
|
|
2766
|
-
0 0 0 3px var(--ina-stroke-tertiary, #1f1f1f);
|
|
2767
|
-
z-index: 2;
|
|
2768
|
-
}
|
|
2769
2767
|
/* Active states */
|
|
2770
2768
|
.ina-button-group__button:active:not(.ina-button-group__button--disabled) {
|
|
2771
2769
|
background-color: var(--ina-neutral-200);
|
|
@@ -2789,12 +2787,23 @@ dialog.bottom-sheet-dropdown {
|
|
|
2789
2787
|
}
|
|
2790
2788
|
[data-theme='dark']
|
|
2791
2789
|
.ina-button-group__button:hover:not(.ina-button-group__button--disabled) {
|
|
2792
|
-
background-color: var(--ina-
|
|
2793
|
-
|
|
2790
|
+
background-color: var(--ina-primary-primary);
|
|
2791
|
+
}
|
|
2792
|
+
[data-theme='dark']
|
|
2793
|
+
.ina-button-group__button:focus-visible:not(
|
|
2794
|
+
.ina-button-group__button--disabled
|
|
2795
|
+
) {
|
|
2796
|
+
background-color: var(--ina-primary-primary);
|
|
2797
|
+
border: 2px solid var(--ina-primary-25, #ffffff);
|
|
2798
|
+
}
|
|
2799
|
+
/* Focus states */
|
|
2800
|
+
[data-theme='dark']
|
|
2801
|
+
.ina-button-group__button:focus:not(.ina-button-group__button--disabled) {
|
|
2802
|
+
border: 1px solid var(--ina-primary-25, #ffffff);
|
|
2794
2803
|
}
|
|
2795
2804
|
[data-theme='dark'] .ina-button-group__button--selected {
|
|
2796
|
-
background-color: var(--ina-
|
|
2797
|
-
color: var(--ina-
|
|
2805
|
+
background-color: var(--ina-primary-primary);
|
|
2806
|
+
color: var(--ina-primary-25);
|
|
2798
2807
|
}
|
|
2799
2808
|
/* Reduced motion */
|
|
2800
2809
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -3841,12 +3850,11 @@ dialog.bottom-sheet-dropdown {
|
|
|
3841
3850
|
.ina-chip__custom-field {
|
|
3842
3851
|
margin-top: var(--ina-spacing-2);
|
|
3843
3852
|
}
|
|
3844
|
-
.ina-chip__custom-field .ina-
|
|
3845
|
-
/* Targeting TextField component styling */
|
|
3853
|
+
.ina-chip__custom-field .ina-chip__input-wrapper {
|
|
3846
3854
|
max-width: 50%; /* sm:max-w-1/2 */
|
|
3847
3855
|
}
|
|
3848
3856
|
@media (min-width: 768px) {
|
|
3849
|
-
.ina-chip__custom-field .ina-
|
|
3857
|
+
.ina-chip__custom-field .ina-chip__input-wrapper {
|
|
3850
3858
|
max-width: 25%; /* md:max-w-1/4 */
|
|
3851
3859
|
}
|
|
3852
3860
|
}
|
|
@@ -3882,7 +3890,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
3882
3890
|
gap: var(--ina-spacing-1);
|
|
3883
3891
|
}
|
|
3884
3892
|
|
|
3885
|
-
.ina-chip__custom-field .ina-
|
|
3893
|
+
.ina-chip__custom-field .ina-chip__input-wrapper {
|
|
3886
3894
|
max-width: 100%; /* Full width on small screens */
|
|
3887
3895
|
}
|
|
3888
3896
|
}
|
|
@@ -3923,10 +3931,70 @@ dialog.bottom-sheet-dropdown {
|
|
|
3923
3931
|
}
|
|
3924
3932
|
}
|
|
3925
3933
|
@media (max-width: 640px) {
|
|
3926
|
-
.ina-chip__input {
|
|
3934
|
+
.ina-chip__input-wrapper {
|
|
3927
3935
|
min-width: 100%;
|
|
3928
3936
|
}
|
|
3929
3937
|
}
|
|
3938
|
+
/* Custom Native Input styles matching TextField */
|
|
3939
|
+
.ina-chip__input-wrapper {
|
|
3940
|
+
position: relative;
|
|
3941
|
+
display: flex;
|
|
3942
|
+
align-items: center;
|
|
3943
|
+
gap: var(--ina-spacing-2);
|
|
3944
|
+
border-radius: var(--ina-radius-lg);
|
|
3945
|
+
border: 1px solid var(--ina-stroke-primary, #e5e5e5);
|
|
3946
|
+
padding: var(--ina-spacing-2) var(--ina-spacing-3);
|
|
3947
|
+
background-color: var(--ina-background-primary, #ffffff);
|
|
3948
|
+
transition: all var(--ina-transition-base);
|
|
3949
|
+
height: 40px; /* size-sm equivalent */
|
|
3950
|
+
box-sizing: border-box;
|
|
3951
|
+
}
|
|
3952
|
+
.ina-chip__input-wrapper:focus-within {
|
|
3953
|
+
box-shadow:
|
|
3954
|
+
0 0 0 2px #fff,
|
|
3955
|
+
0 0 0 3px var(--ina-content-primary, #1f1f1f);
|
|
3956
|
+
outline: none;
|
|
3957
|
+
background-color: var(--ina-background-primary, #ffffff);
|
|
3958
|
+
border-color: var(--ina-stroke-tertiary, #141414);
|
|
3959
|
+
}
|
|
3960
|
+
.ina-chip__input-wrapper:hover {
|
|
3961
|
+
background-color: var(--ina-background-secondary, #f8f8f7);
|
|
3962
|
+
}
|
|
3963
|
+
.ina-chip__input {
|
|
3964
|
+
flex: 1;
|
|
3965
|
+
background: transparent;
|
|
3966
|
+
border: none;
|
|
3967
|
+
outline: none;
|
|
3968
|
+
font-size: var(--ina-font-sm);
|
|
3969
|
+
font-family: inherit;
|
|
3970
|
+
color: var(--ina-content-primary);
|
|
3971
|
+
width: 100%;
|
|
3972
|
+
}
|
|
3973
|
+
.ina-chip__input::-moz-placeholder {
|
|
3974
|
+
color: var(--ina-content-tertiary, #a3a3a3) !important;
|
|
3975
|
+
}
|
|
3976
|
+
.ina-chip__input::placeholder {
|
|
3977
|
+
color: var(--ina-content-tertiary, #a3a3a3) !important;
|
|
3978
|
+
}
|
|
3979
|
+
.ina-chip__clear-button {
|
|
3980
|
+
flex-shrink: 0;
|
|
3981
|
+
background: none;
|
|
3982
|
+
border: none;
|
|
3983
|
+
cursor: pointer;
|
|
3984
|
+
padding: 0;
|
|
3985
|
+
display: inline-flex;
|
|
3986
|
+
align-items: center;
|
|
3987
|
+
justify-content: center;
|
|
3988
|
+
color: var(--ina-content-dark-secondary, #737373);
|
|
3989
|
+
transition: color var(--ina-transition-base);
|
|
3990
|
+
}
|
|
3991
|
+
.ina-chip__clear-button:hover:not(:disabled) {
|
|
3992
|
+
color: var(--ina-content-secondary, #525252);
|
|
3993
|
+
}
|
|
3994
|
+
.ina-chip__clear-icon {
|
|
3995
|
+
width: 16px;
|
|
3996
|
+
height: 16px;
|
|
3997
|
+
}
|
|
3930
3998
|
/**
|
|
3931
3999
|
* CircleProgressBar Component Styles
|
|
3932
4000
|
* Prefix "ina-" based on BEM styling
|
|
@@ -7232,13 +7300,13 @@ dialog.bottom-sheet-dropdown {
|
|
|
7232
7300
|
.ina-month-picker__trigger {
|
|
7233
7301
|
display: flex;
|
|
7234
7302
|
align-items: center;
|
|
7235
|
-
padding: var(--ina-spacing-
|
|
7303
|
+
padding: var(--ina-spacing-2) var(--ina-spacing-3);
|
|
7236
7304
|
border: 1px solid var(--ina-stroke-primary);
|
|
7237
7305
|
border-radius: var(--ina-radius-lg);
|
|
7238
7306
|
background-color: var(--ina-background-primary);
|
|
7239
7307
|
color: var(--ina-content-primary);
|
|
7240
7308
|
font-size: var(--ina-font-xs);
|
|
7241
|
-
font-weight: var(--ina-font-
|
|
7309
|
+
font-weight: var(--ina-font-semibold, 600);
|
|
7242
7310
|
cursor: pointer;
|
|
7243
7311
|
transition: all var(--ina-transition-fast);
|
|
7244
7312
|
width: -moz-fit-content;
|
|
@@ -7248,18 +7316,16 @@ dialog.bottom-sheet-dropdown {
|
|
|
7248
7316
|
}
|
|
7249
7317
|
.ina-month-picker__trigger--size-sm {
|
|
7250
7318
|
height: 32px;
|
|
7251
|
-
padding: var(--ina-spacing-1) var(--ina-spacing-2);
|
|
7252
7319
|
min-width: 50px;
|
|
7253
7320
|
}
|
|
7254
|
-
.ina-month-picker__trigger--size-sm .ina-month-picker__trigger-text {
|
|
7255
|
-
font-size: var(--ina-font-sm);
|
|
7256
|
-
font-weight: var(--ina-font-medium);
|
|
7257
|
-
}
|
|
7258
7321
|
.ina-month-picker__trigger--size-md {
|
|
7259
7322
|
height: 36px;
|
|
7260
7323
|
}
|
|
7261
7324
|
/* Desktop >= 768px */
|
|
7262
7325
|
@media (min-width: 768px) {
|
|
7326
|
+
.ina-month-picker__trigger {
|
|
7327
|
+
padding: var(--ina-spacing-2) var(--ina-spacing-4);
|
|
7328
|
+
}
|
|
7263
7329
|
.ina-month-picker__trigger-md {
|
|
7264
7330
|
height: 44px;
|
|
7265
7331
|
}
|
|
@@ -8875,7 +8941,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
8875
8941
|
/* Override user agent stylesheet untuk button */
|
|
8876
8942
|
border: none;
|
|
8877
8943
|
background: transparent;
|
|
8878
|
-
padding:
|
|
8944
|
+
padding: 2px;
|
|
8879
8945
|
margin: 0;
|
|
8880
8946
|
appearance: none;
|
|
8881
8947
|
-webkit-appearance: none;
|
|
@@ -8896,6 +8962,18 @@ dialog.bottom-sheet-dropdown {
|
|
|
8896
8962
|
line-height: normal;
|
|
8897
8963
|
outline: none;
|
|
8898
8964
|
}
|
|
8965
|
+
.ina-password-input__toggle-button:hover,
|
|
8966
|
+
.ina-password-input__clear-button:hover {
|
|
8967
|
+
color: var(--ina-content-primary);
|
|
8968
|
+
}
|
|
8969
|
+
.ina-password-input__toggle-button:focus-visible,
|
|
8970
|
+
.ina-password-input__clear-button:focus-visible {
|
|
8971
|
+
border: 2px solid var(--ina-stroke-secondary, #141414);
|
|
8972
|
+
background-color: var(--ina-background-secondary, #f8f8f7);
|
|
8973
|
+
color: var(--ina-content-primary);
|
|
8974
|
+
border-radius: var(--ina-radius-sm);
|
|
8975
|
+
outline: none;
|
|
8976
|
+
}
|
|
8899
8977
|
/**
|
|
8900
8978
|
* PhoneInput Component Styles
|
|
8901
8979
|
* Menggunakan BEM naming convention dengan prefix "ina-"
|
|
@@ -13010,7 +13088,6 @@ dialog.bottom-sheet-dropdown {
|
|
|
13010
13088
|
/* Clear button */
|
|
13011
13089
|
.ina-text-area__clear-button {
|
|
13012
13090
|
flex-shrink: 0;
|
|
13013
|
-
margin-top: var(--ina-spacing-2);
|
|
13014
13091
|
background: none;
|
|
13015
13092
|
border: none;
|
|
13016
13093
|
cursor: pointer;
|
|
@@ -13021,6 +13098,16 @@ dialog.bottom-sheet-dropdown {
|
|
|
13021
13098
|
color: var(--ina-content-secondary, #525252);
|
|
13022
13099
|
transition: color var(--ina-transition-base, 200ms ease-in-out);
|
|
13023
13100
|
}
|
|
13101
|
+
.ina-text-area__clear-button:hover {
|
|
13102
|
+
color: var(--ina-content-primary);
|
|
13103
|
+
}
|
|
13104
|
+
.ina-text-area__clear-button:focus-visible {
|
|
13105
|
+
border: 2px solid var(--ina-stroke-secondary, #141414);
|
|
13106
|
+
background-color: var(--ina-background-secondary, #f8f8f7);
|
|
13107
|
+
color: var(--ina-content-primary);
|
|
13108
|
+
border-radius: var(--ina-radius-sm);
|
|
13109
|
+
outline: none;
|
|
13110
|
+
}
|
|
13024
13111
|
.ina-text-area__clear-button:hover:not(:disabled) {
|
|
13025
13112
|
color: var(--ina-content-secondary);
|
|
13026
13113
|
}
|
|
@@ -13255,6 +13342,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
13255
13342
|
}
|
|
13256
13343
|
/* Clear button */
|
|
13257
13344
|
.ina-text-field__clear-button {
|
|
13345
|
+
padding: 2px !important;
|
|
13258
13346
|
flex-shrink: 0;
|
|
13259
13347
|
background: none;
|
|
13260
13348
|
border: none;
|
|
@@ -13266,6 +13354,15 @@ dialog.bottom-sheet-dropdown {
|
|
|
13266
13354
|
color: var(--ina-content-dark-secondary, #737373);
|
|
13267
13355
|
transition: color var(--ina-transition-base);
|
|
13268
13356
|
}
|
|
13357
|
+
.ina-text-field__clear-button:hover {
|
|
13358
|
+
color: var(--ina-content-primary);
|
|
13359
|
+
}
|
|
13360
|
+
.ina-text-field__clear-button:focus-visible {
|
|
13361
|
+
border: 2px solid var(--ina-stroke-secondary, #141414);
|
|
13362
|
+
background-color: var(--ina-background-secondary, #f8f8f7);
|
|
13363
|
+
color: var(--ina-content-primary);
|
|
13364
|
+
border-radius: var(--ina-radius-sm);
|
|
13365
|
+
}
|
|
13269
13366
|
.ina-text-field__clear-button:hover:not(:disabled) {
|
|
13270
13367
|
color: var(--ina-content-secondary, #525252);
|
|
13271
13368
|
}
|
|
@@ -14769,13 +14866,13 @@ dialog.bottom-sheet-dropdown {
|
|
|
14769
14866
|
display: flex;
|
|
14770
14867
|
align-items: center;
|
|
14771
14868
|
justify-content: space-between;
|
|
14772
|
-
padding: var(--ina-spacing-
|
|
14869
|
+
padding: var(--ina-spacing-2) var(--ina-spacing-3);
|
|
14773
14870
|
border: 1px solid var(--ina-stroke-primary);
|
|
14774
14871
|
border-radius: var(--ina-radius-lg);
|
|
14775
14872
|
background-color: var(--ina-background-primary);
|
|
14776
14873
|
color: var(--ina-content-primary);
|
|
14777
14874
|
font-size: var(--ina-font-xs);
|
|
14778
|
-
font-weight: var(--ina-font-
|
|
14875
|
+
font-weight: var(--ina-font-semibold, 600);
|
|
14779
14876
|
cursor: pointer;
|
|
14780
14877
|
transition: all var(--ina-transition-fast);
|
|
14781
14878
|
width: -moz-fit-content;
|
|
@@ -14785,18 +14882,16 @@ dialog.bottom-sheet-dropdown {
|
|
|
14785
14882
|
}
|
|
14786
14883
|
.ina-year-picker__trigger--size-sm {
|
|
14787
14884
|
height: 32px;
|
|
14788
|
-
padding: var(--ina-spacing-1) var(--ina-spacing-2);
|
|
14789
14885
|
min-width: 50px;
|
|
14790
14886
|
}
|
|
14791
|
-
.ina-year-picker__trigger--size-sm .ina-year-picker__trigger-text {
|
|
14792
|
-
font-size: var(--ina-font-sm);
|
|
14793
|
-
font-weight: var(--ina-font-medium);
|
|
14794
|
-
}
|
|
14795
14887
|
.ina-year-picker__trigger--size-md {
|
|
14796
14888
|
height: 36px;
|
|
14797
14889
|
}
|
|
14798
14890
|
/* Desktop >= 768px */
|
|
14799
14891
|
@media (min-width: 768px) {
|
|
14892
|
+
.ina-year-picker__trigger {
|
|
14893
|
+
padding: var(--ina-spacing-2) var(--ina-spacing-4);
|
|
14894
|
+
}
|
|
14800
14895
|
.ina-year-picker__trigger-md {
|
|
14801
14896
|
height: 44px;
|
|
14802
14897
|
}
|
|
@@ -14922,7 +15017,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
14922
15017
|
display: flex;
|
|
14923
15018
|
align-items: center;
|
|
14924
15019
|
justify-content: space-between;
|
|
14925
|
-
padding: var(--ina-spacing-4);
|
|
15020
|
+
padding: var(--ina-spacing-4, 16px);
|
|
14926
15021
|
border-bottom: 1px solid var(--ina-stroke-primary);
|
|
14927
15022
|
}
|
|
14928
15023
|
/* Navigation Buttons */
|
|
@@ -14930,18 +15025,22 @@ dialog.bottom-sheet-dropdown {
|
|
|
14930
15025
|
display: flex;
|
|
14931
15026
|
align-items: center;
|
|
14932
15027
|
justify-content: center;
|
|
14933
|
-
width: 32px;
|
|
14934
|
-
height: 32px;
|
|
14935
|
-
padding: var(--ina-spacing-2);
|
|
14936
15028
|
background-color: transparent;
|
|
14937
15029
|
color: var(--ina-content-primary);
|
|
14938
15030
|
border: none;
|
|
14939
15031
|
border-radius: var(--ina-radius-base);
|
|
14940
15032
|
cursor: pointer;
|
|
14941
15033
|
transition: all var(--ina-transition-fast);
|
|
14942
|
-
font-size: var(--ina-font-
|
|
15034
|
+
font-size: var(--ina-font-lg, 18px);
|
|
14943
15035
|
}
|
|
14944
|
-
@media (
|
|
15036
|
+
@media screen and (max-width: 639px) {
|
|
15037
|
+
.ina-year-picker__nav-button {
|
|
15038
|
+
font-size: var(--ina-font-sm);
|
|
15039
|
+
width: 28px;
|
|
15040
|
+
height: 28px;
|
|
15041
|
+
}
|
|
15042
|
+
}
|
|
15043
|
+
@media screen and (min-width: 768px) {
|
|
14945
15044
|
.ina-year-picker__nav-button {
|
|
14946
15045
|
font-size: var(--ina-font-base);
|
|
14947
15046
|
}
|
|
@@ -14949,14 +15048,19 @@ dialog.bottom-sheet-dropdown {
|
|
|
14949
15048
|
.ina-year-picker__nav-button:hover:not(:disabled) {
|
|
14950
15049
|
background-color: var(--ina-neutral-50);
|
|
14951
15050
|
}
|
|
15051
|
+
.ina-year-picker__nav-button:focus-visible:not(:disabled),
|
|
15052
|
+
.ina-year-picker__nav-button:focus:not(:disabled) {
|
|
15053
|
+
background-color: var(--ina-neutral-50);
|
|
15054
|
+
border: 2px solid var(--ina-neutral-600, #525252);
|
|
15055
|
+
}
|
|
14952
15056
|
.ina-year-picker__nav-button:disabled {
|
|
14953
15057
|
color: var(--ina-content-tertiary);
|
|
14954
15058
|
cursor: not-allowed;
|
|
14955
15059
|
opacity: 0.5;
|
|
14956
15060
|
}
|
|
14957
15061
|
.ina-year-picker__nav-icon {
|
|
14958
|
-
width:
|
|
14959
|
-
height:
|
|
15062
|
+
width: 24px;
|
|
15063
|
+
height: 24px;
|
|
14960
15064
|
}
|
|
14961
15065
|
/* Decade Range */
|
|
14962
15066
|
.ina-year-picker__decade-range {
|