@idds/styles 1.0.42 → 1.0.43
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/package.json +1 -1
- package/src/components/drawer.css +6 -10
- package/src/components/radio-input.css +13 -16
package/package.json
CHANGED
|
@@ -260,7 +260,6 @@
|
|
|
260
260
|
.ina-drawer--position-right .ina-drawer__panel {
|
|
261
261
|
/* Default width for panels without specific width variant */
|
|
262
262
|
min-width: 420px;
|
|
263
|
-
width: 420px;
|
|
264
263
|
max-width: 520px;
|
|
265
264
|
/* Full height for side panels */
|
|
266
265
|
height: 100vh;
|
|
@@ -268,24 +267,21 @@
|
|
|
268
267
|
}
|
|
269
268
|
|
|
270
269
|
/* Width variants for desktop - Side panels (left/right) */
|
|
271
|
-
|
|
270
|
+
.ina-drawer--position-left .ina-drawer__panel--width-sm,
|
|
272
271
|
.ina-drawer--position-right .ina-drawer__panel--width-sm {
|
|
273
|
-
|
|
274
|
-
max-width: 400px !important;
|
|
272
|
+
width: 420px !important;
|
|
275
273
|
height: 100vh !important;
|
|
276
274
|
max-height: 100vh !important;
|
|
277
|
-
}
|
|
275
|
+
}
|
|
278
276
|
|
|
279
|
-
|
|
277
|
+
.ina-drawer--position-left .ina-drawer__panel--width-md,
|
|
280
278
|
.ina-drawer--position-right .ina-drawer__panel--width-md {
|
|
281
|
-
width:
|
|
282
|
-
min-width: 400px !important;
|
|
283
|
-
max-width: 500px !important;
|
|
279
|
+
width: 520px !important;
|
|
284
280
|
height: 100vh !important;
|
|
285
281
|
max-height: 100vh !important;
|
|
286
282
|
}
|
|
287
283
|
|
|
288
|
-
.ina-drawer--position-left .ina-drawer__panel--width-lg,
|
|
284
|
+
/* .ina-drawer--position-left .ina-drawer__panel--width-lg,
|
|
289
285
|
.ina-drawer--position-right .ina-drawer__panel--width-lg {
|
|
290
286
|
width: 500px !important;
|
|
291
287
|
min-width: 500px !important;
|
|
@@ -40,12 +40,6 @@
|
|
|
40
40
|
background-color: var(--ina-neutral-50);
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
.ina-radio-input__option:focus-within {
|
|
44
|
-
background-color: var(--ina-neutral-100);
|
|
45
|
-
outline: 2px solid var(--ina-primary-500);
|
|
46
|
-
outline-offset: 2px;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
43
|
.ina-radio-input__option--disabled {
|
|
50
44
|
cursor: not-allowed;
|
|
51
45
|
opacity: 0.6;
|
|
@@ -96,8 +90,8 @@
|
|
|
96
90
|
top: 50%;
|
|
97
91
|
left: 50%;
|
|
98
92
|
transform: translate(-50%, -50%);
|
|
99
|
-
width:
|
|
100
|
-
height:
|
|
93
|
+
width: 11px;
|
|
94
|
+
height: 11px;
|
|
101
95
|
border-radius: 50%;
|
|
102
96
|
background-color: var(--ina-stroke-tertiary, #141414);
|
|
103
97
|
}
|
|
@@ -111,7 +105,7 @@
|
|
|
111
105
|
|
|
112
106
|
/* Disabled states */
|
|
113
107
|
.ina-radio-input__field:disabled {
|
|
114
|
-
border-color: var(--ina-neutral-200, #
|
|
108
|
+
border-color: var(--ina-neutral-200, #e5e5e5);
|
|
115
109
|
background-color: var(--ina-background-secondary, var(--ina-neutral-50));
|
|
116
110
|
cursor: not-allowed;
|
|
117
111
|
opacity: 1;
|
|
@@ -120,8 +114,11 @@
|
|
|
120
114
|
|
|
121
115
|
/* Disabled + Checked state - Higher specificity */
|
|
122
116
|
.ina-radio-input__field:disabled:checked {
|
|
123
|
-
border-color: var(--ina-neutral-200, #
|
|
124
|
-
background-color: var(
|
|
117
|
+
border-color: var(--ina-neutral-200, #e5e5e5) !important;
|
|
118
|
+
background-color: var(
|
|
119
|
+
--ina-background-secondary,
|
|
120
|
+
var(--ina-neutral-50)
|
|
121
|
+
) !important;
|
|
125
122
|
filter: none;
|
|
126
123
|
}
|
|
127
124
|
|
|
@@ -134,7 +131,7 @@
|
|
|
134
131
|
width: 8px;
|
|
135
132
|
height: 8px;
|
|
136
133
|
border-radius: 50%;
|
|
137
|
-
background-color: var(--ina-neutral-200, #
|
|
134
|
+
background-color: var(--ina-neutral-200, #e5e5e5);
|
|
138
135
|
}
|
|
139
136
|
|
|
140
137
|
/* Radio option label */
|
|
@@ -153,7 +150,7 @@
|
|
|
153
150
|
}
|
|
154
151
|
|
|
155
152
|
/* Size variants */
|
|
156
|
-
.ina-radio-input--size-sm .ina-radio-input__main-label {
|
|
153
|
+
/* .ina-radio-input--size-sm .ina-radio-input__main-label {
|
|
157
154
|
font-size: var(--ina-font-xs);
|
|
158
155
|
}
|
|
159
156
|
|
|
@@ -164,9 +161,9 @@
|
|
|
164
161
|
.ina-radio-input--size-sm .ina-radio-input__field {
|
|
165
162
|
width: 16px;
|
|
166
163
|
height: 16px;
|
|
167
|
-
}
|
|
164
|
+
} */
|
|
168
165
|
|
|
169
|
-
.ina-radio-input--size-lg .ina-radio-input__main-label {
|
|
166
|
+
/* .ina-radio-input--size-lg .ina-radio-input__main-label {
|
|
170
167
|
font-size: var(--ina-font-base);
|
|
171
168
|
}
|
|
172
169
|
|
|
@@ -177,7 +174,7 @@
|
|
|
177
174
|
.ina-radio-input--size-lg .ina-radio-input__field {
|
|
178
175
|
width: 24px;
|
|
179
176
|
height: 24px;
|
|
180
|
-
}
|
|
177
|
+
} */
|
|
181
178
|
|
|
182
179
|
/* Orientation variants */
|
|
183
180
|
.ina-radio-input--orientation-horizontal .ina-radio-input__group {
|