@idds/styles 1.5.77 → 1.5.81
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 +178 -39
- package/dist/index.min.css +8 -8
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2713,8 +2713,14 @@ dialog.bottom-sheet-dropdown {
|
|
|
2713
2713
|
-moz-user-select: none;
|
|
2714
2714
|
user-select: none;
|
|
2715
2715
|
}
|
|
2716
|
+
.ina-button-group__button:first-child {
|
|
2717
|
+
border-top-left-radius: inherit;
|
|
2718
|
+
border-bottom-left-radius: inherit;
|
|
2719
|
+
}
|
|
2716
2720
|
.ina-button-group__button:last-child {
|
|
2717
2721
|
border-right: none;
|
|
2722
|
+
border-top-right-radius: inherit;
|
|
2723
|
+
border-bottom-right-radius: inherit;
|
|
2718
2724
|
}
|
|
2719
2725
|
.ina-button-group__button:hover:not(.ina-button-group__button--disabled) {
|
|
2720
2726
|
background-color: var(--ina-primary-25);
|
|
@@ -2725,6 +2731,10 @@ dialog.bottom-sheet-dropdown {
|
|
|
2725
2731
|
background-color: var(--ina-primary-25);
|
|
2726
2732
|
border: 2px solid var(--ina-primary-600, #0968f6);
|
|
2727
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
|
+
}
|
|
2728
2738
|
.ina-button-group__button--selected {
|
|
2729
2739
|
background-color: var(--ina-primary-25);
|
|
2730
2740
|
color: var(--ina-primary-primary);
|
|
@@ -2740,7 +2750,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
2740
2750
|
justify-content: center;
|
|
2741
2751
|
gap: 8px;
|
|
2742
2752
|
}
|
|
2743
|
-
@media (max-width:
|
|
2753
|
+
@media (max-width: 767px) {
|
|
2744
2754
|
.ina-button-group__button {
|
|
2745
2755
|
height: 32px;
|
|
2746
2756
|
padding: 0 12px;
|
|
@@ -2748,19 +2758,12 @@ dialog.bottom-sheet-dropdown {
|
|
|
2748
2758
|
line-height: var(--ina-line-height-xs);
|
|
2749
2759
|
}
|
|
2750
2760
|
}
|
|
2751
|
-
@media (min-width:
|
|
2761
|
+
@media (min-width: 768px) and (max-width: 1023px) {
|
|
2752
2762
|
.ina-button-group__button {
|
|
2753
2763
|
font-size: 14px;
|
|
2754
2764
|
padding: 0 14px;
|
|
2755
2765
|
}
|
|
2756
2766
|
}
|
|
2757
|
-
/* Focus states */
|
|
2758
|
-
.ina-button-group__button:focus:not(.ina-button-group__button--disabled) {
|
|
2759
|
-
outline: none;
|
|
2760
|
-
box-shadow:
|
|
2761
|
-
0 0 0 2px var(--ina-background-primary, #ffffff),
|
|
2762
|
-
0 0 0 3px var(--ina-stroke-tertiary, #1f1f1f);
|
|
2763
|
-
}
|
|
2764
2767
|
/* Active states */
|
|
2765
2768
|
.ina-button-group__button:active:not(.ina-button-group__button--disabled) {
|
|
2766
2769
|
background-color: var(--ina-neutral-200);
|
|
@@ -2793,6 +2796,11 @@ dialog.bottom-sheet-dropdown {
|
|
|
2793
2796
|
background-color: var(--ina-primary-primary);
|
|
2794
2797
|
border: 2px solid var(--ina-primary-25, #ffffff);
|
|
2795
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);
|
|
2803
|
+
}
|
|
2796
2804
|
[data-theme='dark'] .ina-button-group__button--selected {
|
|
2797
2805
|
background-color: var(--ina-primary-primary);
|
|
2798
2806
|
color: var(--ina-primary-25);
|
|
@@ -3842,12 +3850,11 @@ dialog.bottom-sheet-dropdown {
|
|
|
3842
3850
|
.ina-chip__custom-field {
|
|
3843
3851
|
margin-top: var(--ina-spacing-2);
|
|
3844
3852
|
}
|
|
3845
|
-
.ina-chip__custom-field .ina-
|
|
3846
|
-
/* Targeting TextField component styling */
|
|
3853
|
+
.ina-chip__custom-field .ina-chip__input-wrapper {
|
|
3847
3854
|
max-width: 50%; /* sm:max-w-1/2 */
|
|
3848
3855
|
}
|
|
3849
3856
|
@media (min-width: 768px) {
|
|
3850
|
-
.ina-chip__custom-field .ina-
|
|
3857
|
+
.ina-chip__custom-field .ina-chip__input-wrapper {
|
|
3851
3858
|
max-width: 25%; /* md:max-w-1/4 */
|
|
3852
3859
|
}
|
|
3853
3860
|
}
|
|
@@ -3883,7 +3890,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
3883
3890
|
gap: var(--ina-spacing-1);
|
|
3884
3891
|
}
|
|
3885
3892
|
|
|
3886
|
-
.ina-chip__custom-field .ina-
|
|
3893
|
+
.ina-chip__custom-field .ina-chip__input-wrapper {
|
|
3887
3894
|
max-width: 100%; /* Full width on small screens */
|
|
3888
3895
|
}
|
|
3889
3896
|
}
|
|
@@ -3924,10 +3931,70 @@ dialog.bottom-sheet-dropdown {
|
|
|
3924
3931
|
}
|
|
3925
3932
|
}
|
|
3926
3933
|
@media (max-width: 640px) {
|
|
3927
|
-
.ina-chip__input {
|
|
3934
|
+
.ina-chip__input-wrapper {
|
|
3928
3935
|
min-width: 100%;
|
|
3929
3936
|
}
|
|
3930
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
|
+
}
|
|
3931
3998
|
/**
|
|
3932
3999
|
* CircleProgressBar Component Styles
|
|
3933
4000
|
* Prefix "ina-" based on BEM styling
|
|
@@ -4168,7 +4235,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
4168
4235
|
width: -moz-fit-content;
|
|
4169
4236
|
width: fit-content;
|
|
4170
4237
|
min-width: 200px; /* Ensure a decent minimum width */
|
|
4171
|
-
padding: var(--ina-spacing-2, 0.5rem) var(--ina-spacing-3, 0.75rem);
|
|
4238
|
+
padding: var(--ina-spacing-2, 0.5rem) var(--ina-spacing-8, 2rem) var(--ina-spacing-2, 0.5rem) var(--ina-spacing-3, 0.75rem);
|
|
4172
4239
|
border: 1px solid var(--ina-stroke-primary, #e5e5e5);
|
|
4173
4240
|
border-radius: var(--ina-radius-lg, 0.5rem);
|
|
4174
4241
|
background-color: var(--ina-background-primary, #ffffff);
|
|
@@ -4263,6 +4330,10 @@ dialog.bottom-sheet-dropdown {
|
|
|
4263
4330
|
}
|
|
4264
4331
|
/* Clear Button - Same styling as TextField */
|
|
4265
4332
|
.ina-date-picker__clear-button {
|
|
4333
|
+
position: absolute;
|
|
4334
|
+
right: var(--ina-spacing-3, 0.75rem);
|
|
4335
|
+
top: 50%;
|
|
4336
|
+
transform: translateY(-50%);
|
|
4266
4337
|
flex-shrink: 0;
|
|
4267
4338
|
background: none;
|
|
4268
4339
|
border: none;
|
|
@@ -4273,6 +4344,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
4273
4344
|
justify-content: center;
|
|
4274
4345
|
color: var(--ina-content-dark-secondary, #737373);
|
|
4275
4346
|
transition: color var(--ina-transition-base, 200ms ease-in-out);
|
|
4347
|
+
z-index: 2; /* Above trigger */
|
|
4276
4348
|
}
|
|
4277
4349
|
.ina-date-picker__clear-button:hover:not(:disabled) {
|
|
4278
4350
|
color: var(--ina-content-secondary, #525252);
|
|
@@ -7233,13 +7305,13 @@ dialog.bottom-sheet-dropdown {
|
|
|
7233
7305
|
.ina-month-picker__trigger {
|
|
7234
7306
|
display: flex;
|
|
7235
7307
|
align-items: center;
|
|
7236
|
-
padding: var(--ina-spacing-
|
|
7308
|
+
padding: var(--ina-spacing-2) var(--ina-spacing-3);
|
|
7237
7309
|
border: 1px solid var(--ina-stroke-primary);
|
|
7238
7310
|
border-radius: var(--ina-radius-lg);
|
|
7239
7311
|
background-color: var(--ina-background-primary);
|
|
7240
7312
|
color: var(--ina-content-primary);
|
|
7241
7313
|
font-size: var(--ina-font-xs);
|
|
7242
|
-
font-weight: var(--ina-font-
|
|
7314
|
+
font-weight: var(--ina-font-semibold, 600);
|
|
7243
7315
|
cursor: pointer;
|
|
7244
7316
|
transition: all var(--ina-transition-fast);
|
|
7245
7317
|
width: -moz-fit-content;
|
|
@@ -7249,18 +7321,16 @@ dialog.bottom-sheet-dropdown {
|
|
|
7249
7321
|
}
|
|
7250
7322
|
.ina-month-picker__trigger--size-sm {
|
|
7251
7323
|
height: 32px;
|
|
7252
|
-
padding: var(--ina-spacing-1) var(--ina-spacing-2);
|
|
7253
7324
|
min-width: 50px;
|
|
7254
7325
|
}
|
|
7255
|
-
.ina-month-picker__trigger--size-sm .ina-month-picker__trigger-text {
|
|
7256
|
-
font-size: var(--ina-font-sm);
|
|
7257
|
-
font-weight: var(--ina-font-medium);
|
|
7258
|
-
}
|
|
7259
7326
|
.ina-month-picker__trigger--size-md {
|
|
7260
7327
|
height: 36px;
|
|
7261
7328
|
}
|
|
7262
7329
|
/* Desktop >= 768px */
|
|
7263
7330
|
@media (min-width: 768px) {
|
|
7331
|
+
.ina-month-picker__trigger {
|
|
7332
|
+
padding: var(--ina-spacing-2) var(--ina-spacing-4);
|
|
7333
|
+
}
|
|
7264
7334
|
.ina-month-picker__trigger-md {
|
|
7265
7335
|
height: 44px;
|
|
7266
7336
|
}
|
|
@@ -8876,7 +8946,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
8876
8946
|
/* Override user agent stylesheet untuk button */
|
|
8877
8947
|
border: none;
|
|
8878
8948
|
background: transparent;
|
|
8879
|
-
padding:
|
|
8949
|
+
padding: 2px;
|
|
8880
8950
|
margin: 0;
|
|
8881
8951
|
appearance: none;
|
|
8882
8952
|
-webkit-appearance: none;
|
|
@@ -8897,6 +8967,18 @@ dialog.bottom-sheet-dropdown {
|
|
|
8897
8967
|
line-height: normal;
|
|
8898
8968
|
outline: none;
|
|
8899
8969
|
}
|
|
8970
|
+
.ina-password-input__toggle-button:hover,
|
|
8971
|
+
.ina-password-input__clear-button:hover {
|
|
8972
|
+
color: var(--ina-content-primary);
|
|
8973
|
+
}
|
|
8974
|
+
.ina-password-input__toggle-button:focus-visible,
|
|
8975
|
+
.ina-password-input__clear-button:focus-visible {
|
|
8976
|
+
border: 2px solid var(--ina-stroke-secondary, #141414);
|
|
8977
|
+
background-color: var(--ina-background-secondary, #f8f8f7);
|
|
8978
|
+
color: var(--ina-content-primary);
|
|
8979
|
+
border-radius: var(--ina-radius-sm);
|
|
8980
|
+
outline: none;
|
|
8981
|
+
}
|
|
8900
8982
|
/**
|
|
8901
8983
|
* PhoneInput Component Styles
|
|
8902
8984
|
* Menggunakan BEM naming convention dengan prefix "ina-"
|
|
@@ -9064,6 +9146,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
9064
9146
|
font-family: inherit;
|
|
9065
9147
|
color: var(--ina-content-primary, #1f1f1f);
|
|
9066
9148
|
min-width: 0;
|
|
9149
|
+
padding-right: var(--ina-spacing-6, 1.5rem);
|
|
9067
9150
|
}
|
|
9068
9151
|
.ina-phone-input__input::-moz-placeholder {
|
|
9069
9152
|
color: var(--ina-content-tertiary, #a3a3a3) !important;
|
|
@@ -9071,6 +9154,36 @@ dialog.bottom-sheet-dropdown {
|
|
|
9071
9154
|
.ina-phone-input__input::placeholder {
|
|
9072
9155
|
color: var(--ina-content-tertiary, #a3a3a3) !important;
|
|
9073
9156
|
}
|
|
9157
|
+
/* Clear button */
|
|
9158
|
+
.ina-phone-input__clear-button {
|
|
9159
|
+
position: absolute;
|
|
9160
|
+
right: var(--ina-spacing-3, 0.75rem);
|
|
9161
|
+
top: 50%;
|
|
9162
|
+
transform: translateY(-50%);
|
|
9163
|
+
display: flex;
|
|
9164
|
+
align-items: center;
|
|
9165
|
+
justify-content: center;
|
|
9166
|
+
width: 20px;
|
|
9167
|
+
height: 20px;
|
|
9168
|
+
border-radius: 50%;
|
|
9169
|
+
border: none;
|
|
9170
|
+
background: none;
|
|
9171
|
+
color: var(--ina-content-tertiary, #a3a3a3);
|
|
9172
|
+
cursor: pointer;
|
|
9173
|
+
padding: 0;
|
|
9174
|
+
transition: all var(--ina-transition-base, 200ms ease-in-out);
|
|
9175
|
+
}
|
|
9176
|
+
.ina-phone-input__clear-button:hover:not(:disabled) {
|
|
9177
|
+
background-color: var(--ina-neutral-100, #f0f0ef);
|
|
9178
|
+
color: var(--ina-content-secondary, #525252);
|
|
9179
|
+
}
|
|
9180
|
+
.ina-phone-input__clear-button:active:not(:disabled) {
|
|
9181
|
+
background-color: var(--ina-neutral-200, #e5e5e4);
|
|
9182
|
+
}
|
|
9183
|
+
.ina-phone-input__clear-button:focus-visible {
|
|
9184
|
+
outline: 2px solid var(--ina-content-primary, #1f1f1f);
|
|
9185
|
+
outline-offset: 2px;
|
|
9186
|
+
}
|
|
9074
9187
|
/* Helper text / Status message */
|
|
9075
9188
|
.ina-phone-input .ina-phone-input__helper-text {
|
|
9076
9189
|
font-size: var(--ina-font-xs, 0.75rem);
|
|
@@ -13011,7 +13124,6 @@ dialog.bottom-sheet-dropdown {
|
|
|
13011
13124
|
/* Clear button */
|
|
13012
13125
|
.ina-text-area__clear-button {
|
|
13013
13126
|
flex-shrink: 0;
|
|
13014
|
-
margin-top: var(--ina-spacing-2);
|
|
13015
13127
|
background: none;
|
|
13016
13128
|
border: none;
|
|
13017
13129
|
cursor: pointer;
|
|
@@ -13022,6 +13134,16 @@ dialog.bottom-sheet-dropdown {
|
|
|
13022
13134
|
color: var(--ina-content-secondary, #525252);
|
|
13023
13135
|
transition: color var(--ina-transition-base, 200ms ease-in-out);
|
|
13024
13136
|
}
|
|
13137
|
+
.ina-text-area__clear-button:hover {
|
|
13138
|
+
color: var(--ina-content-primary);
|
|
13139
|
+
}
|
|
13140
|
+
.ina-text-area__clear-button:focus-visible {
|
|
13141
|
+
border: 2px solid var(--ina-stroke-secondary, #141414);
|
|
13142
|
+
background-color: var(--ina-background-secondary, #f8f8f7);
|
|
13143
|
+
color: var(--ina-content-primary);
|
|
13144
|
+
border-radius: var(--ina-radius-sm);
|
|
13145
|
+
outline: none;
|
|
13146
|
+
}
|
|
13025
13147
|
.ina-text-area__clear-button:hover:not(:disabled) {
|
|
13026
13148
|
color: var(--ina-content-secondary);
|
|
13027
13149
|
}
|
|
@@ -13256,6 +13378,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
13256
13378
|
}
|
|
13257
13379
|
/* Clear button */
|
|
13258
13380
|
.ina-text-field__clear-button {
|
|
13381
|
+
padding: 2px !important;
|
|
13259
13382
|
flex-shrink: 0;
|
|
13260
13383
|
background: none;
|
|
13261
13384
|
border: none;
|
|
@@ -13267,6 +13390,15 @@ dialog.bottom-sheet-dropdown {
|
|
|
13267
13390
|
color: var(--ina-content-dark-secondary, #737373);
|
|
13268
13391
|
transition: color var(--ina-transition-base);
|
|
13269
13392
|
}
|
|
13393
|
+
.ina-text-field__clear-button:hover {
|
|
13394
|
+
color: var(--ina-content-primary);
|
|
13395
|
+
}
|
|
13396
|
+
.ina-text-field__clear-button:focus-visible {
|
|
13397
|
+
border: 2px solid var(--ina-stroke-secondary, #141414);
|
|
13398
|
+
background-color: var(--ina-background-secondary, #f8f8f7);
|
|
13399
|
+
color: var(--ina-content-primary);
|
|
13400
|
+
border-radius: var(--ina-radius-sm);
|
|
13401
|
+
}
|
|
13270
13402
|
.ina-text-field__clear-button:hover:not(:disabled) {
|
|
13271
13403
|
color: var(--ina-content-secondary, #525252);
|
|
13272
13404
|
}
|
|
@@ -14770,13 +14902,13 @@ dialog.bottom-sheet-dropdown {
|
|
|
14770
14902
|
display: flex;
|
|
14771
14903
|
align-items: center;
|
|
14772
14904
|
justify-content: space-between;
|
|
14773
|
-
padding: var(--ina-spacing-
|
|
14905
|
+
padding: var(--ina-spacing-2) var(--ina-spacing-3);
|
|
14774
14906
|
border: 1px solid var(--ina-stroke-primary);
|
|
14775
14907
|
border-radius: var(--ina-radius-lg);
|
|
14776
14908
|
background-color: var(--ina-background-primary);
|
|
14777
14909
|
color: var(--ina-content-primary);
|
|
14778
14910
|
font-size: var(--ina-font-xs);
|
|
14779
|
-
font-weight: var(--ina-font-
|
|
14911
|
+
font-weight: var(--ina-font-semibold, 600);
|
|
14780
14912
|
cursor: pointer;
|
|
14781
14913
|
transition: all var(--ina-transition-fast);
|
|
14782
14914
|
width: -moz-fit-content;
|
|
@@ -14786,18 +14918,16 @@ dialog.bottom-sheet-dropdown {
|
|
|
14786
14918
|
}
|
|
14787
14919
|
.ina-year-picker__trigger--size-sm {
|
|
14788
14920
|
height: 32px;
|
|
14789
|
-
padding: var(--ina-spacing-1) var(--ina-spacing-2);
|
|
14790
14921
|
min-width: 50px;
|
|
14791
14922
|
}
|
|
14792
|
-
.ina-year-picker__trigger--size-sm .ina-year-picker__trigger-text {
|
|
14793
|
-
font-size: var(--ina-font-sm);
|
|
14794
|
-
font-weight: var(--ina-font-medium);
|
|
14795
|
-
}
|
|
14796
14923
|
.ina-year-picker__trigger--size-md {
|
|
14797
14924
|
height: 36px;
|
|
14798
14925
|
}
|
|
14799
14926
|
/* Desktop >= 768px */
|
|
14800
14927
|
@media (min-width: 768px) {
|
|
14928
|
+
.ina-year-picker__trigger {
|
|
14929
|
+
padding: var(--ina-spacing-2) var(--ina-spacing-4);
|
|
14930
|
+
}
|
|
14801
14931
|
.ina-year-picker__trigger-md {
|
|
14802
14932
|
height: 44px;
|
|
14803
14933
|
}
|
|
@@ -14923,7 +15053,7 @@ dialog.bottom-sheet-dropdown {
|
|
|
14923
15053
|
display: flex;
|
|
14924
15054
|
align-items: center;
|
|
14925
15055
|
justify-content: space-between;
|
|
14926
|
-
padding: var(--ina-spacing-4);
|
|
15056
|
+
padding: var(--ina-spacing-4, 16px);
|
|
14927
15057
|
border-bottom: 1px solid var(--ina-stroke-primary);
|
|
14928
15058
|
}
|
|
14929
15059
|
/* Navigation Buttons */
|
|
@@ -14931,18 +15061,22 @@ dialog.bottom-sheet-dropdown {
|
|
|
14931
15061
|
display: flex;
|
|
14932
15062
|
align-items: center;
|
|
14933
15063
|
justify-content: center;
|
|
14934
|
-
width: 32px;
|
|
14935
|
-
height: 32px;
|
|
14936
|
-
padding: var(--ina-spacing-2);
|
|
14937
15064
|
background-color: transparent;
|
|
14938
15065
|
color: var(--ina-content-primary);
|
|
14939
15066
|
border: none;
|
|
14940
15067
|
border-radius: var(--ina-radius-base);
|
|
14941
15068
|
cursor: pointer;
|
|
14942
15069
|
transition: all var(--ina-transition-fast);
|
|
14943
|
-
font-size: var(--ina-font-
|
|
15070
|
+
font-size: var(--ina-font-lg, 18px);
|
|
14944
15071
|
}
|
|
14945
|
-
@media (
|
|
15072
|
+
@media screen and (max-width: 639px) {
|
|
15073
|
+
.ina-year-picker__nav-button {
|
|
15074
|
+
font-size: var(--ina-font-sm);
|
|
15075
|
+
width: 28px;
|
|
15076
|
+
height: 28px;
|
|
15077
|
+
}
|
|
15078
|
+
}
|
|
15079
|
+
@media screen and (min-width: 768px) {
|
|
14946
15080
|
.ina-year-picker__nav-button {
|
|
14947
15081
|
font-size: var(--ina-font-base);
|
|
14948
15082
|
}
|
|
@@ -14950,14 +15084,19 @@ dialog.bottom-sheet-dropdown {
|
|
|
14950
15084
|
.ina-year-picker__nav-button:hover:not(:disabled) {
|
|
14951
15085
|
background-color: var(--ina-neutral-50);
|
|
14952
15086
|
}
|
|
15087
|
+
.ina-year-picker__nav-button:focus-visible:not(:disabled),
|
|
15088
|
+
.ina-year-picker__nav-button:focus:not(:disabled) {
|
|
15089
|
+
background-color: var(--ina-neutral-50);
|
|
15090
|
+
border: 2px solid var(--ina-neutral-600, #525252);
|
|
15091
|
+
}
|
|
14953
15092
|
.ina-year-picker__nav-button:disabled {
|
|
14954
15093
|
color: var(--ina-content-tertiary);
|
|
14955
15094
|
cursor: not-allowed;
|
|
14956
15095
|
opacity: 0.5;
|
|
14957
15096
|
}
|
|
14958
15097
|
.ina-year-picker__nav-icon {
|
|
14959
|
-
width:
|
|
14960
|
-
height:
|
|
15098
|
+
width: 24px;
|
|
15099
|
+
height: 24px;
|
|
14961
15100
|
}
|
|
14962
15101
|
/* Decade Range */
|
|
14963
15102
|
.ina-year-picker__decade-range {
|