@idds/styles 1.0.26
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/README.md +147 -0
- package/package.json +55 -0
- package/src/colors/brands/bgn.css +29 -0
- package/src/colors/brands/bkn.css +32 -0
- package/src/colors/brands/inagov.css +39 -0
- package/src/colors/brands/inaku.css +28 -0
- package/src/colors/brands/inapas.css +28 -0
- package/src/colors/brands/lan.css +38 -0
- package/src/colors/brands/pan-rb.css +30 -0
- package/src/colors/index.css +11 -0
- package/src/colors/primitives/index.css +150 -0
- package/src/colors/product/index.css +205 -0
- package/src/colors/utilities/index.css +77 -0
- package/src/components/accordion-card.css +99 -0
- package/src/components/accordion.css +120 -0
- package/src/components/action-dropdown.css +140 -0
- package/src/components/alert.css +180 -0
- package/src/components/avatar.css +182 -0
- package/src/components/badge.css +244 -0
- package/src/components/bottom-sheet.css +61 -0
- package/src/components/breadcrumb.css +94 -0
- package/src/components/button-group.css +130 -0
- package/src/components/button.css +233 -0
- package/src/components/card.css +488 -0
- package/src/components/carousel.css +100 -0
- package/src/components/chart.css +81 -0
- package/src/components/checkbox.css +211 -0
- package/src/components/chip.css +228 -0
- package/src/components/collapse.css +84 -0
- package/src/components/confirmation.css +131 -0
- package/src/components/date-picker.css +1063 -0
- package/src/components/divider.css +174 -0
- package/src/components/drawer.css +757 -0
- package/src/components/dropdown.css +369 -0
- package/src/components/field-input-table.css +347 -0
- package/src/components/file-upload.css +357 -0
- package/src/components/input-search.css +428 -0
- package/src/components/linear-progress-indicator.css +34 -0
- package/src/components/modal.css +497 -0
- package/src/components/month-picker.css +325 -0
- package/src/components/multiple-choice-grid.css +383 -0
- package/src/components/pagination.css +415 -0
- package/src/components/password-input.css +472 -0
- package/src/components/phone-input.css +412 -0
- package/src/components/progress-bar.css +447 -0
- package/src/components/radio-input.css +263 -0
- package/src/components/reset.css +431 -0
- package/src/components/select-dropdown.css +663 -0
- package/src/components/select-option.css +217 -0
- package/src/components/skeleton.css +488 -0
- package/src/components/spinner.css +450 -0
- package/src/components/stepper.css +209 -0
- package/src/components/tab-horizontal.css +278 -0
- package/src/components/tab-vertical.css +261 -0
- package/src/components/table-progress-bar.css +48 -0
- package/src/components/table.css +538 -0
- package/src/components/text-area.css +216 -0
- package/src/components/text-field.css +275 -0
- package/src/components/theme-toggle.css +259 -0
- package/src/components/time-picker.css +436 -0
- package/src/components/toast.css +245 -0
- package/src/components/toggle.css +223 -0
- package/src/components/tooltip.css +452 -0
- package/src/components/year-picker.css +423 -0
- package/src/index.css +3 -0
- package/src/tailwind/css/bgn.css +43 -0
- package/src/tailwind/css/bkn.css +37 -0
- package/src/tailwind/css/idds.css +231 -0
- package/src/tailwind/css/inagov.css +33 -0
- package/src/tailwind/css/inaku.css +33 -0
- package/src/tailwind/css/inapas.css +33 -0
- package/src/tailwind/css/lan.css +43 -0
- package/src/tailwind/css/pan-rb.css +35 -0
- package/src/tailwind/ts/bgn.ts +20 -0
- package/src/tailwind/ts/bkn.ts +38 -0
- package/src/tailwind/ts/idds.ts +240 -0
- package/src/tailwind/ts/inagov.ts +35 -0
- package/src/tailwind/ts/inaku.ts +35 -0
- package/src/tailwind/ts/inapas.ts +35 -0
- package/src/tailwind/ts/lan.ts +45 -0
- package/src/tailwind/ts/panrb.ts +37 -0
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
/* =========================== */
|
|
2
|
+
/* HORIZONTAL TAB STYLES */
|
|
3
|
+
/* =========================== */
|
|
4
|
+
|
|
5
|
+
.ina-tab-horizontal {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
width: fit-content;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ina-tab-horizontal--full-width {
|
|
12
|
+
width: 100%;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ina-tab-horizontal__container {
|
|
16
|
+
display: flex;
|
|
17
|
+
align-items: center;
|
|
18
|
+
gap: 4px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.ina-tab-horizontal__container--full-width {
|
|
22
|
+
width: 100%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/* Base Tab Styles */
|
|
26
|
+
.ina-tab-horizontal__tab {
|
|
27
|
+
display: inline-flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
border: none;
|
|
31
|
+
background: none;
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
transition: all var(--ina-transition-base);
|
|
34
|
+
white-space: nowrap;
|
|
35
|
+
position: relative;
|
|
36
|
+
border-radius: 4px;
|
|
37
|
+
padding: 0 16px;
|
|
38
|
+
box-sizing: border-box;
|
|
39
|
+
font-family: Inter, sans-serif;
|
|
40
|
+
font-style: normal;
|
|
41
|
+
font-weight: 400;
|
|
42
|
+
letter-spacing: var(--ina-spacing-letter-normal, 0);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.ina-tab-horizontal__tab--full-width {
|
|
46
|
+
flex: 1 0 0;
|
|
47
|
+
min-width: 120px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/* Size: Small */
|
|
51
|
+
.ina-tab-horizontal__tab--size-sm {
|
|
52
|
+
font-size: 14px;
|
|
53
|
+
line-height: 20px;
|
|
54
|
+
height: 36px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/* Size: Medium */
|
|
58
|
+
.ina-tab-horizontal__tab--size-md {
|
|
59
|
+
font-size: 16px;
|
|
60
|
+
line-height: 20px;
|
|
61
|
+
height: 40px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/* Mobile Responsive */
|
|
65
|
+
@media (max-width: 768px) {
|
|
66
|
+
.ina-tab-horizontal__tab--size-sm {
|
|
67
|
+
font-size: 12px;
|
|
68
|
+
height: 32px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.ina-tab-horizontal__tab--size-md {
|
|
72
|
+
font-size: 14px;
|
|
73
|
+
height: 36px;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/* Variant: Outline (Default) */
|
|
78
|
+
.ina-tab-horizontal__tab--variant-outline {
|
|
79
|
+
color: var(--ina-content-secondary);
|
|
80
|
+
background: transparent;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.ina-tab-horizontal__tab--variant-outline:hover:not(
|
|
84
|
+
.ina-tab-horizontal__tab--disabled
|
|
85
|
+
) {
|
|
86
|
+
color: var(--ina-content-primary);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.ina-tab-horizontal__tab--variant-outline.ina-tab-horizontal__tab--selected {
|
|
90
|
+
color: var(--ina-content-primary);
|
|
91
|
+
font-weight: 600;
|
|
92
|
+
border-bottom: 2px solid var(--ina-content-primary);
|
|
93
|
+
border-radius: 0;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.ina-tab-horizontal--use-brand-color .ina-tab-horizontal__tab--variant-outline {
|
|
97
|
+
color: var(--ina-content-secondary);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.ina-tab-horizontal--use-brand-color
|
|
101
|
+
.ina-tab-horizontal__tab--variant-outline:hover:not(
|
|
102
|
+
.ina-tab-horizontal__tab--disabled
|
|
103
|
+
) {
|
|
104
|
+
color: var(--ina-primary-500);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.ina-tab-horizontal--use-brand-color
|
|
108
|
+
.ina-tab-horizontal__tab--variant-outline.ina-tab-horizontal__tab--selected {
|
|
109
|
+
color: var(--ina-primary-500);
|
|
110
|
+
border-bottom-color: var(--ina-primary-500);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/* Variant: Button Brand */
|
|
114
|
+
.ina-tab-horizontal__tab--variant-button-brand {
|
|
115
|
+
color: var(--ina-content-secondary);
|
|
116
|
+
background: transparent;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.ina-tab-horizontal__tab--variant-button-brand:hover:not(
|
|
120
|
+
.ina-tab-horizontal__tab--disabled
|
|
121
|
+
) {
|
|
122
|
+
color: var(--ina-content-primary);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.ina-tab-horizontal__tab--variant-button-brand.ina-tab-horizontal__tab--selected {
|
|
126
|
+
background-color: var(--ina-primary-500);
|
|
127
|
+
color: var(--ina-white) !important;
|
|
128
|
+
font-weight: 600;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/* Variant: Button White */
|
|
132
|
+
.ina-tab-horizontal--variant-button-white {
|
|
133
|
+
background-color: var(--ina-background-secondary);
|
|
134
|
+
border-radius: 4px;
|
|
135
|
+
padding: 4px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.ina-tab-horizontal--variant-button-white .ina-tab-horizontal__container {
|
|
139
|
+
gap: 0;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.ina-tab-horizontal__tab--variant-button-white {
|
|
143
|
+
color: var(--ina-content-secondary);
|
|
144
|
+
background: transparent;
|
|
145
|
+
border-radius: 4px;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.ina-tab-horizontal__tab--variant-button-white:hover:not(
|
|
149
|
+
.ina-tab-horizontal__tab--disabled
|
|
150
|
+
) {
|
|
151
|
+
color: var(--ina-content-primary);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.ina-tab-horizontal__tab--variant-button-white.ina-tab-horizontal__tab--selected {
|
|
155
|
+
background-color: var(--ina-background-primary);
|
|
156
|
+
color: var(--ina-content-primary);
|
|
157
|
+
font-weight: 600;
|
|
158
|
+
box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08),
|
|
159
|
+
0 4px 6px -2px rgba(10, 13, 18, 0.03);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.ina-tab-horizontal--use-brand-color
|
|
163
|
+
.ina-tab-horizontal__tab--variant-button-white {
|
|
164
|
+
color: var(--ina-content-secondary);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.ina-tab-horizontal--use-brand-color
|
|
168
|
+
.ina-tab-horizontal__tab--variant-button-white:hover:not(
|
|
169
|
+
.ina-tab-horizontal__tab--disabled
|
|
170
|
+
) {
|
|
171
|
+
color: var(--ina-primary-500);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.ina-tab-horizontal--use-brand-color
|
|
175
|
+
.ina-tab-horizontal__tab--variant-button-white.ina-tab-horizontal__tab--selected {
|
|
176
|
+
color: var(--ina-primary-500);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/* Disabled State */
|
|
180
|
+
.ina-tab-horizontal__tab--disabled {
|
|
181
|
+
color: var(--ina-content-disabled);
|
|
182
|
+
cursor: not-allowed;
|
|
183
|
+
opacity: 0.6;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.ina-tab-horizontal__tab--disabled:hover {
|
|
187
|
+
color: var(--ina-content-disabled);
|
|
188
|
+
background-color: transparent;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.ina-tab-horizontal--disabled .ina-tab-horizontal__tab {
|
|
192
|
+
color: var(--ina-content-disabled);
|
|
193
|
+
cursor: not-allowed;
|
|
194
|
+
opacity: 0.6;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.ina-tab-horizontal--disabled .ina-tab-horizontal__tab:hover {
|
|
198
|
+
color: var(--ina-content-disabled);
|
|
199
|
+
background-color: transparent;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/* Focus State */
|
|
203
|
+
.ina-tab-horizontal__tab:focus {
|
|
204
|
+
outline: 2px solid var(--ina-primary-500);
|
|
205
|
+
outline-offset: 2px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.ina-tab-horizontal__tab:focus:not(:focus-visible) {
|
|
209
|
+
outline: none;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
/* Dark Mode */
|
|
213
|
+
[data-theme='dark'] .ina-tab-horizontal__tab--variant-outline {
|
|
214
|
+
color: var(--ina-content-secondary);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
[data-theme='dark']
|
|
218
|
+
.ina-tab-horizontal__tab--variant-outline:hover:not(
|
|
219
|
+
.ina-tab-horizontal__tab--disabled
|
|
220
|
+
) {
|
|
221
|
+
color: var(--ina-content-primary);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
[data-theme='dark']
|
|
225
|
+
.ina-tab-horizontal__tab--variant-button-brand:hover:not(
|
|
226
|
+
.ina-tab-horizontal__tab--disabled
|
|
227
|
+
) {
|
|
228
|
+
color: var(--ina-content-primary);
|
|
229
|
+
}
|
|
230
|
+
[data-theme='dark']
|
|
231
|
+
.ina-tab-horizontal__tab--variant-button-brand:hover:not(
|
|
232
|
+
.ina-tab-horizontal__tab--selected
|
|
233
|
+
) {
|
|
234
|
+
color: var(--ina-content-primary);
|
|
235
|
+
}
|
|
236
|
+
.ina-tab-horizontal__tab--variant-button-brand:hover:not(
|
|
237
|
+
.ina-tab-horizontal__tab--disabled
|
|
238
|
+
) {
|
|
239
|
+
color: var(--ina-content-primary);
|
|
240
|
+
}
|
|
241
|
+
.ina-tab-horizontal__tab--variant-button-brand:hover:not(
|
|
242
|
+
.ina-tab-horizontal__tab--selected
|
|
243
|
+
) {
|
|
244
|
+
color: var(--ina-content-primary);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
[data-theme='dark']
|
|
248
|
+
.ina-tab-horizontal__tab--variant-outline.ina-tab-horizontal__tab--selected {
|
|
249
|
+
color: var(--ina-content-primary);
|
|
250
|
+
border-bottom-color: var(--ina-content-primary);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
[data-theme='dark'] .ina-tab-horizontal__tab--variant-button-brand {
|
|
254
|
+
color: var(--ina-content-secondary);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
[data-theme='dark']
|
|
258
|
+
.ina-tab-horizontal__tab--variant-button-brand:hover:not(
|
|
259
|
+
.ina-tab-horizontal__tab--disabled
|
|
260
|
+
) {
|
|
261
|
+
color: var(--ina-content-primary);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
[data-theme='dark']
|
|
265
|
+
.ina-tab-horizontal__tab--variant-button-brand.ina-tab-horizontal__tab--selected {
|
|
266
|
+
background-color: var(--ina-primary-500);
|
|
267
|
+
color: var(--ina-white) !important;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
[data-theme='dark'] .ina-tab-horizontal--variant-button-white {
|
|
271
|
+
background-color: var(--ina-background-secondary);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
[data-theme='dark']
|
|
275
|
+
.ina-tab-horizontal__tab--variant-button-white.ina-tab-horizontal__tab--selected {
|
|
276
|
+
background-color: var(--ina-background-primary);
|
|
277
|
+
color: var(--ina-content-primary);
|
|
278
|
+
}
|
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
/* =========================== */
|
|
2
|
+
/* VERTICAL TAB STYLES */
|
|
3
|
+
/* =========================== */
|
|
4
|
+
|
|
5
|
+
.ina-tab-vertical {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
width: fit-content;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ina-tab-vertical__container {
|
|
12
|
+
display: flex;
|
|
13
|
+
flex-direction: column;
|
|
14
|
+
gap: 4px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* Base Tab Styles */
|
|
18
|
+
.ina-tab-vertical__tab {
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: center;
|
|
21
|
+
justify-content: flex-start;
|
|
22
|
+
border: none;
|
|
23
|
+
background: none;
|
|
24
|
+
cursor: pointer;
|
|
25
|
+
transition: all var(--ina-transition-base);
|
|
26
|
+
text-align: left;
|
|
27
|
+
position: relative;
|
|
28
|
+
border-radius: 4px;
|
|
29
|
+
width: 100%;
|
|
30
|
+
padding: 0 16px;
|
|
31
|
+
box-sizing: border-box;
|
|
32
|
+
font-family: Inter, sans-serif;
|
|
33
|
+
font-style: normal;
|
|
34
|
+
font-weight: 400;
|
|
35
|
+
letter-spacing: var(--ina-spacing-letter-normal, 0);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* Size: Small */
|
|
39
|
+
.ina-tab-vertical__tab--size-sm {
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
line-height: 20px;
|
|
42
|
+
height: 36px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/* Size: Medium */
|
|
46
|
+
.ina-tab-vertical__tab--size-md {
|
|
47
|
+
font-size: 16px;
|
|
48
|
+
line-height: 20px;
|
|
49
|
+
height: 40px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* Mobile Responsive */
|
|
53
|
+
@media (max-width: 768px) {
|
|
54
|
+
.ina-tab-vertical__tab--size-sm {
|
|
55
|
+
font-size: 12px;
|
|
56
|
+
height: 32px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.ina-tab-vertical__tab--size-md {
|
|
60
|
+
font-size: 14px;
|
|
61
|
+
height: 36px;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/* Variant: Outline (Default) */
|
|
66
|
+
.ina-tab-vertical__tab--variant-outline {
|
|
67
|
+
color: var(--ina-content-secondary);
|
|
68
|
+
background: transparent;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.ina-tab-vertical__tab--variant-outline:hover:not(
|
|
72
|
+
.ina-tab-vertical__tab--disabled
|
|
73
|
+
) {
|
|
74
|
+
color: var(--ina-content-primary);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.ina-tab-vertical__tab--variant-outline.ina-tab-vertical__tab--selected {
|
|
78
|
+
color: var(--ina-content-primary);
|
|
79
|
+
font-weight: 600;
|
|
80
|
+
border-left: 3px solid var(--ina-content-primary);
|
|
81
|
+
border-radius: 0;
|
|
82
|
+
padding-left: 13px; /* 16px - 3px border */
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.ina-tab-vertical--use-brand-color .ina-tab-vertical__tab--variant-outline {
|
|
86
|
+
color: var(--ina-content-secondary);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.ina-tab-vertical--use-brand-color
|
|
90
|
+
.ina-tab-vertical__tab--variant-outline:hover:not(
|
|
91
|
+
.ina-tab-vertical__tab--disabled
|
|
92
|
+
) {
|
|
93
|
+
color: var(--ina-primary-500);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.ina-tab-vertical--use-brand-color
|
|
97
|
+
.ina-tab-vertical__tab--variant-outline.ina-tab-vertical__tab--selected {
|
|
98
|
+
color: var(--ina-primary-500);
|
|
99
|
+
border-left-color: var(--ina-primary-500);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/* Variant: Button Brand */
|
|
103
|
+
.ina-tab-vertical__tab--variant-button-brand {
|
|
104
|
+
color: var(--ina-content-secondary);
|
|
105
|
+
background: transparent;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.ina-tab-vertical__tab--variant-button-brand:hover:not(
|
|
109
|
+
.ina-tab-vertical__tab--disabled
|
|
110
|
+
) {
|
|
111
|
+
color: var(--ina-content-primary);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.ina-tab-vertical__tab--variant-button-brand.ina-tab-vertical__tab--selected {
|
|
115
|
+
background-color: var(--ina-primary-500);
|
|
116
|
+
color: var(--ina-white) !important;
|
|
117
|
+
font-weight: 600;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/* Variant: Button White */
|
|
121
|
+
.ina-tab-vertical--variant-button-white {
|
|
122
|
+
background-color: var(--ina-background-secondary);
|
|
123
|
+
border-radius: 4px;
|
|
124
|
+
padding: 4px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.ina-tab-vertical--variant-button-white .ina-tab-vertical__container {
|
|
128
|
+
gap: 0;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.ina-tab-vertical__tab--variant-button-white {
|
|
132
|
+
color: var(--ina-content-secondary);
|
|
133
|
+
background: transparent;
|
|
134
|
+
border-radius: 4px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.ina-tab-vertical__tab--variant-button-white:hover:not(
|
|
138
|
+
.ina-tab-vertical__tab--disabled
|
|
139
|
+
) {
|
|
140
|
+
color: var(--ina-content-primary);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.ina-tab-vertical__tab--variant-button-white.ina-tab-vertical__tab--selected {
|
|
144
|
+
background-color: var(--ina-background-primary);
|
|
145
|
+
color: var(--ina-content-primary);
|
|
146
|
+
font-weight: 600;
|
|
147
|
+
border-radius: 4px;
|
|
148
|
+
box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08),
|
|
149
|
+
0 4px 6px -2px rgba(10, 13, 18, 0.03);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.ina-tab-vertical--use-brand-color
|
|
153
|
+
.ina-tab-vertical__tab--variant-button-white {
|
|
154
|
+
color: var(--ina-content-secondary);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.ina-tab-vertical--use-brand-color
|
|
158
|
+
.ina-tab-vertical__tab--variant-button-white:hover:not(
|
|
159
|
+
.ina-tab-vertical__tab--disabled
|
|
160
|
+
) {
|
|
161
|
+
color: var(--ina-primary-500);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.ina-tab-vertical--use-brand-color
|
|
165
|
+
.ina-tab-vertical__tab--variant-button-white.ina-tab-vertical__tab--selected {
|
|
166
|
+
color: var(--ina-primary-500);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/* Disabled State */
|
|
170
|
+
.ina-tab-vertical__tab--disabled {
|
|
171
|
+
color: var(--ina-content-disabled);
|
|
172
|
+
cursor: not-allowed;
|
|
173
|
+
opacity: 0.6;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.ina-tab-vertical__tab--disabled:hover {
|
|
177
|
+
color: var(--ina-content-disabled);
|
|
178
|
+
background-color: transparent;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.ina-tab-vertical--disabled .ina-tab-vertical__tab {
|
|
182
|
+
color: var(--ina-content-disabled);
|
|
183
|
+
cursor: not-allowed;
|
|
184
|
+
opacity: 0.6;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.ina-tab-vertical--disabled .ina-tab-vertical__tab:hover {
|
|
188
|
+
color: var(--ina-content-disabled);
|
|
189
|
+
background-color: transparent;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
/* Focus State */
|
|
193
|
+
.ina-tab-vertical__tab:focus {
|
|
194
|
+
outline: 2px solid var(--ina-primary-500);
|
|
195
|
+
outline-offset: 2px;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.ina-tab-vertical__tab:focus:not(:focus-visible) {
|
|
199
|
+
outline: none;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/* Dark Mode */
|
|
203
|
+
[data-theme='dark'] .ina-tab-vertical__tab--variant-outline {
|
|
204
|
+
color: var(--ina-content-secondary);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
[data-theme='dark']
|
|
208
|
+
.ina-tab-vertical__tab--variant-outline:hover:not(
|
|
209
|
+
.ina-tab-vertical__tab--disabled
|
|
210
|
+
) {
|
|
211
|
+
color: var(--ina-content-primary);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
[data-theme='dark']
|
|
215
|
+
.ina-tab-vertical__tab--variant-outline.ina-tab-vertical__tab--selected {
|
|
216
|
+
color: var(--ina-content-primary);
|
|
217
|
+
border-left-color: var(--ina-content-primary);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
[data-theme='dark'] .ina-tab-vertical__tab--variant-button-brand {
|
|
221
|
+
color: var(--ina-content-secondary);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
[data-theme='dark']
|
|
225
|
+
.ina-tab-vertical__tab--variant-button-brand:hover:not(
|
|
226
|
+
.ina-tab-vertical__tab--disabled
|
|
227
|
+
) {
|
|
228
|
+
color: var(--ina-content-primary);
|
|
229
|
+
}
|
|
230
|
+
[data-theme='dark']
|
|
231
|
+
.ina-tab-vertical__tab--variant-button-brand:hover:not(
|
|
232
|
+
.ina-tab-vertical__tab--selected
|
|
233
|
+
) {
|
|
234
|
+
color: var(--ina-content-primary);
|
|
235
|
+
}
|
|
236
|
+
.ina-tab-vertical__tab--variant-button-brand:hover:not(
|
|
237
|
+
.ina-tab-vertical__tab--disabled
|
|
238
|
+
) {
|
|
239
|
+
color: var(--ina-content-primary);
|
|
240
|
+
}
|
|
241
|
+
.ina-tab-vertical__tab--variant-button-brand:hover:not(
|
|
242
|
+
.ina-tab-vertical__tab--selected
|
|
243
|
+
) {
|
|
244
|
+
color: var(--ina-content-primary);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
[data-theme='dark']
|
|
248
|
+
.ina-tab-vertical__tab--variant-button-brand.ina-tab-vertical__tab--selected {
|
|
249
|
+
background-color: var(--ina-primary-500);
|
|
250
|
+
color: var(--ina-white) !important;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
[data-theme='dark'] .ina-tab-vertical--variant-button-white {
|
|
254
|
+
background-color: var(--ina-background-secondary);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
[data-theme='dark']
|
|
258
|
+
.ina-tab-vertical__tab--variant-button-white.ina-tab-vertical__tab--selected {
|
|
259
|
+
background-color: var(--ina-background-primary);
|
|
260
|
+
color: var(--ina-content-primary);
|
|
261
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* TableProgressBar Component Styles */
|
|
2
|
+
|
|
3
|
+
/* Base container */
|
|
4
|
+
.ina-table-progress-bar {
|
|
5
|
+
width: 100%;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* Animation states */
|
|
9
|
+
@keyframes ina-progress-animate {
|
|
10
|
+
0% {
|
|
11
|
+
transform: translateX(-100%);
|
|
12
|
+
}
|
|
13
|
+
100% {
|
|
14
|
+
transform: translateX(0);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ina-table-progress-bar--animating {
|
|
19
|
+
animation: ina-progress-animate 0.2s ease-in-out;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/* Variant styles */
|
|
23
|
+
.ina-table-progress-bar--variant-primary {
|
|
24
|
+
/* Inherits from ProgressBar component */
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ina-table-progress-bar--variant-secondary {
|
|
28
|
+
/* Inherits from ProgressBar component */
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.ina-table-progress-bar--variant-success {
|
|
32
|
+
/* Inherits from ProgressBar component */
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.ina-table-progress-bar--variant-warning {
|
|
36
|
+
/* Inherits from ProgressBar component */
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.ina-table-progress-bar--variant-error {
|
|
40
|
+
/* Inherits from ProgressBar component */
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/* Responsive adjustments */
|
|
44
|
+
@media (max-width: 640px) {
|
|
45
|
+
.ina-table-progress-bar {
|
|
46
|
+
/* Mobile-specific adjustments */
|
|
47
|
+
}
|
|
48
|
+
}
|