platformscode-new-react 0.0.4 → 0.0.5
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/style.css +1 -1
- package/package.json +4 -1
- package/.editorconfig +0 -15
- package/.prettierrc.json +0 -13
- package/src/assets/styles/abstracts/_functions.scss +0 -3
- package/src/assets/styles/abstracts/_mixins.scss +0 -60
- package/src/assets/styles/abstracts/_variables.scss +0 -46
- package/src/assets/styles/abstracts/variables/_colors.scss +0 -145
- package/src/assets/styles/abstracts/variables/_radius.scss +0 -19
- package/src/assets/styles/abstracts/variables/_shadows.scss +0 -9
- package/src/assets/styles/abstracts/variables/_spacing.scss +0 -35
- package/src/assets/styles/abstracts/variables/_widths.scss +0 -306
- package/src/assets/styles/base/_animation.scss +0 -0
- package/src/assets/styles/base/_base.scss +0 -29
- package/src/assets/styles/base/_typography.scss +0 -73
- package/src/assets/styles/base/_utilities.scss +0 -260
- package/src/assets/styles/components/_accordions.scss +0 -184
- package/src/assets/styles/components/_avatar.scss +0 -87
- package/src/assets/styles/components/_breadcrumbs.scss +0 -63
- package/src/assets/styles/components/_btns.scss +0 -815
- package/src/assets/styles/components/_card.scss +0 -91
- package/src/assets/styles/components/_checkbox.scss +0 -241
- package/src/assets/styles/components/_content-switcher.scss +0 -108
- package/src/assets/styles/components/_data-table.scss +0 -155
- package/src/assets/styles/components/_date-picker.scss +0 -257
- package/src/assets/styles/components/_dropdown.scss +0 -479
- package/src/assets/styles/components/_featured-icons.scss +0 -127
- package/src/assets/styles/components/_file-upload.scss +0 -164
- package/src/assets/styles/components/_icons.scss +0 -3
- package/src/assets/styles/components/_inline-alert.scss +0 -166
- package/src/assets/styles/components/_input.scss +0 -473
- package/src/assets/styles/components/_links.scss +0 -130
- package/src/assets/styles/components/_list.scss +0 -130
- package/src/assets/styles/components/_loading.scss +0 -135
- package/src/assets/styles/components/_menu.scss +0 -85
- package/src/assets/styles/components/_modals.scss +0 -108
- package/src/assets/styles/components/_notification-toast.scss +0 -177
- package/src/assets/styles/components/_notifications.scss +0 -139
- package/src/assets/styles/components/_pagination.scss +0 -79
- package/src/assets/styles/components/_progress-indicator.scss +0 -230
- package/src/assets/styles/components/_radio.scss +0 -183
- package/src/assets/styles/components/_rating.scss +0 -77
- package/src/assets/styles/components/_shadows.scss +0 -23
- package/src/assets/styles/components/_structured-list.scss +0 -95
- package/src/assets/styles/components/_switch.scss +0 -192
- package/src/assets/styles/components/_tabs.scss +0 -231
- package/src/assets/styles/components/_tag.scss +0 -191
- package/src/assets/styles/components/_textarea.scss +0 -294
- package/src/assets/styles/components/_tooltip.scss +0 -257
- package/src/assets/styles/layout/_footer.scss +0 -186
- package/src/assets/styles/layout/_grid.scss +0 -73
- package/src/assets/styles/layout/_header.scss +0 -0
- package/src/assets/styles/layout/_layouts.scss +0 -33
- package/src/assets/styles/layout/_nav-header.scss +0 -449
- package/src/assets/styles/layout/_sidepanel.scss +0 -340
- package/src/assets/styles/layout/_table-of-content.scss +0 -179
- package/src/assets/styles/main.scss +0 -54
- package/src/assets/styles/themes/_dark.scss +0 -416
- package/src/assets/styles/themes/_light.scss +0 -404
- package/src/components.ts +0 -132
- package/src/index.ts +0 -2
- package/tsconfig.json +0 -32
- package/vite.config.ts +0 -44
|
@@ -1,815 +0,0 @@
|
|
|
1
|
-
.buttons {
|
|
2
|
-
.flex-column {
|
|
3
|
-
align-items: flex-start;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.btn {
|
|
8
|
-
-webkit-appearance: none;
|
|
9
|
-
appearance: none;
|
|
10
|
-
border-radius: var(--radius-sm);
|
|
11
|
-
// margin: var(--spacing-xs);
|
|
12
|
-
cursor: pointer;
|
|
13
|
-
border: 0;
|
|
14
|
-
outline: none;
|
|
15
|
-
display: inline-flex;
|
|
16
|
-
align-items: center;
|
|
17
|
-
justify-content: center;
|
|
18
|
-
gap: var(--buttons-lg-gap);
|
|
19
|
-
box-sizing: border-box;
|
|
20
|
-
overflow: hidden;
|
|
21
|
-
|
|
22
|
-
&-icon {
|
|
23
|
-
display: flex;
|
|
24
|
-
width: 24px;
|
|
25
|
-
height: 24px;
|
|
26
|
-
justify-content: center;
|
|
27
|
-
align-items: center;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
&--lg {
|
|
31
|
-
height: 40px;
|
|
32
|
-
padding-inline: var(--buttons-lg-padding);
|
|
33
|
-
@extend .text-md-medium;
|
|
34
|
-
|
|
35
|
-
span.btn-icon {
|
|
36
|
-
width: 24px;
|
|
37
|
-
height: 24px;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
&--md {
|
|
42
|
-
height: 32px;
|
|
43
|
-
padding-inline: var(--buttons-md-padding);
|
|
44
|
-
@extend .text-sm-medium;
|
|
45
|
-
|
|
46
|
-
span.btn-icon {
|
|
47
|
-
width: 20px;
|
|
48
|
-
height: 20px;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
&--sm {
|
|
53
|
-
height: 24px;
|
|
54
|
-
padding-inline: var(--buttons-sm-padding);
|
|
55
|
-
// border-radius: var(--radius-sm);
|
|
56
|
-
@extend .text-xs-medium;
|
|
57
|
-
|
|
58
|
-
span.btn-icon {
|
|
59
|
-
width: 16px;
|
|
60
|
-
height: 16px;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
&:focus::after {
|
|
64
|
-
// border-radius: var(--radius-sm) !important;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
&--icon {
|
|
69
|
-
padding: 0;
|
|
70
|
-
display: flex;
|
|
71
|
-
align-items: center;
|
|
72
|
-
justify-content: center;
|
|
73
|
-
|
|
74
|
-
&.btn--lg {
|
|
75
|
-
width: 40px;
|
|
76
|
-
height: 40px;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
&-menu.btn--lg {
|
|
80
|
-
width: auto;
|
|
81
|
-
padding-inline: var(--buttons-lg-padding);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
&.btn--md {
|
|
85
|
-
width: 32px;
|
|
86
|
-
height: 32px;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
&-menu.btn--md {
|
|
90
|
-
width: auto;
|
|
91
|
-
padding-inline: var(--buttons-md-padding);
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
&.btn--sm {
|
|
95
|
-
width: 24px;
|
|
96
|
-
height: 24px;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
&-menu.btn--sm {
|
|
100
|
-
width: auto;
|
|
101
|
-
padding-inline: var(--buttons-sm-padding);
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
&--primary-neutral {
|
|
106
|
-
background-color: var(--button-background-black-default);
|
|
107
|
-
color: var(--text-oncolor-primary);
|
|
108
|
-
|
|
109
|
-
&:hover {
|
|
110
|
-
background-color: var(--button-background-black-hovered);
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
&:visited {
|
|
114
|
-
background-color: var(--button-background-black-pressed);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
&:focus {
|
|
118
|
-
background-color: var(--button-background-black-focused);
|
|
119
|
-
outline: 2px solid var(--border-black);
|
|
120
|
-
position: relative;
|
|
121
|
-
|
|
122
|
-
&::after {
|
|
123
|
-
content: '';
|
|
124
|
-
display: block;
|
|
125
|
-
background-color: transparent;
|
|
126
|
-
width: 100%;
|
|
127
|
-
height: 100%;
|
|
128
|
-
position: absolute;
|
|
129
|
-
top: 0;
|
|
130
|
-
left: 0;
|
|
131
|
-
border: 1px solid #fff;
|
|
132
|
-
border-radius: var(--radius-sm);
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
&:active {
|
|
137
|
-
background-color: var(--button-background-black-selected);
|
|
138
|
-
outline: none;
|
|
139
|
-
|
|
140
|
-
&::after {
|
|
141
|
-
display: none !important;
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
&:disabled,
|
|
146
|
-
&[disabled] {
|
|
147
|
-
background: var(--background-disabled);
|
|
148
|
-
color: var(--text-default-disabled);
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
&--on-color {
|
|
152
|
-
background-color: var(--button-background-oncolor-default);
|
|
153
|
-
color: var(--text-default);
|
|
154
|
-
|
|
155
|
-
&:hover {
|
|
156
|
-
background-color: var(--button-background-oncolor-hovered);
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
&:visited,
|
|
160
|
-
&.selected {
|
|
161
|
-
background-color: var(--button-background-oncolor-selected);
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
&:focus {
|
|
165
|
-
outline-color: var(--border-white);
|
|
166
|
-
|
|
167
|
-
&::after {
|
|
168
|
-
border-color: var(--border-black);
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
&:active {
|
|
173
|
-
background-color: var(--button-background-oncolor-pressed);
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
&:disabled,
|
|
177
|
-
&[disabled] {
|
|
178
|
-
background-color: var(--button-background-disabled-on-color);
|
|
179
|
-
color: var(--text-default-oncolor-disabled);
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
&--primary-brand {
|
|
185
|
-
background-color: var(--button-background-primary-default);
|
|
186
|
-
color: var(--text-oncolor-primary);
|
|
187
|
-
|
|
188
|
-
&:hover {
|
|
189
|
-
background: var(--button-background-primary-hovered);
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
&:visited {
|
|
193
|
-
background: var(--button-background-primary-pressed);
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
&:focus {
|
|
197
|
-
background: var(--button-background-primary-focused);
|
|
198
|
-
outline: 2px solid var(--border-black);
|
|
199
|
-
position: relative;
|
|
200
|
-
|
|
201
|
-
&::after {
|
|
202
|
-
content: '';
|
|
203
|
-
display: block;
|
|
204
|
-
background-color: transparent;
|
|
205
|
-
width: 100%;
|
|
206
|
-
height: 100%;
|
|
207
|
-
position: absolute;
|
|
208
|
-
top: 0;
|
|
209
|
-
left: 0;
|
|
210
|
-
border: 1px solid #fff;
|
|
211
|
-
border-radius: var(--radius-sm);
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
&:active {
|
|
216
|
-
background: var(--button-background-primary-selected);
|
|
217
|
-
outline: none;
|
|
218
|
-
|
|
219
|
-
&::after {
|
|
220
|
-
display: none !important;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
&:disabled,
|
|
225
|
-
&[disabled] {
|
|
226
|
-
background: var(--background-disabled);
|
|
227
|
-
color: var(--text-default-disabled);
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
&--on-color {
|
|
231
|
-
background-color: var(--button-background-oncolor-default);
|
|
232
|
-
color: var(--text-default);
|
|
233
|
-
|
|
234
|
-
&:hover {
|
|
235
|
-
background-color: var(--button-background-oncolor-hovered);
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
&:visited,
|
|
239
|
-
&.selected {
|
|
240
|
-
background-color: var(--button-background-oncolor-pressed);
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
&:focus {
|
|
244
|
-
outline-color: var(--border-white);
|
|
245
|
-
|
|
246
|
-
&::after {
|
|
247
|
-
border-color: var(--border-black);
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
&:active {
|
|
252
|
-
background-color: var(--button-background-oncolor-pressed);
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
&:disabled,
|
|
256
|
-
&[disabled] {
|
|
257
|
-
background-color: var(--button-background-disabled-on-color);
|
|
258
|
-
color: var(--text-default-oncolor-disabled);
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
&--secondary {
|
|
264
|
-
background-color: var(--button-background-neutral-default);
|
|
265
|
-
color: var(--colors-text-primary);
|
|
266
|
-
|
|
267
|
-
&:hover {
|
|
268
|
-
background: var(--button-background-neutral-default-hoverd);
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
&:visited {
|
|
272
|
-
background: var(--button-background-neutral-default-pressed);
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
&:focus {
|
|
276
|
-
background: var(--button-background-neutral-default-focused);
|
|
277
|
-
outline: 2px solid var(--colors-base-black);
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
&:active {
|
|
281
|
-
background: var(--button-background-neutral-default-selected);
|
|
282
|
-
outline: none;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
&:disabled,
|
|
286
|
-
&[disabled] {
|
|
287
|
-
background: var(--background-disabled);
|
|
288
|
-
color: var(--text-default-disabled);
|
|
289
|
-
// border: 1px solid var(--colors-gray-neutral-200);
|
|
290
|
-
}
|
|
291
|
-
&--on-color {
|
|
292
|
-
background-color: var(--button-background-transparent-hovered);
|
|
293
|
-
color: var(--text-oncolor-primary);
|
|
294
|
-
|
|
295
|
-
&:hover {
|
|
296
|
-
background-color: var(--button-background-transparent-hovered);
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
&:visited,
|
|
300
|
-
&.selected {
|
|
301
|
-
background-color: var(--Button-button-background-transparent-selected);
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
&:focus {
|
|
305
|
-
outline-color: var(--border-white);
|
|
306
|
-
|
|
307
|
-
&::after {
|
|
308
|
-
display: none;
|
|
309
|
-
}
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
&:active {
|
|
313
|
-
background-color: var(--Button-button-background-transparent-pressed);
|
|
314
|
-
color: var(--text-oncolor-primary);
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
&:disabled,
|
|
318
|
-
&[disabled] {
|
|
319
|
-
background-color: var(--button-background-disabled-on-color);
|
|
320
|
-
color: var(--text-default-oncolor-disabled);
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
&--secondary-outline {
|
|
326
|
-
outline: 1px solid var(--border-neutral-primary);
|
|
327
|
-
background-color: transparent;
|
|
328
|
-
color: var(--text-default);
|
|
329
|
-
mix-blend-mode: multiply;
|
|
330
|
-
|
|
331
|
-
&:hover {
|
|
332
|
-
background: var(--button-background-neutral-default);
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
&:visited {
|
|
336
|
-
background: var(--button-background-neutral-pressed);
|
|
337
|
-
outline: 1px solid var(--border-neutral-primary);
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
&:focus {
|
|
341
|
-
background: transparent;
|
|
342
|
-
outline: 2px solid var(--border-black);
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
&:active {
|
|
346
|
-
background: var(--button-background-neutral-selected);
|
|
347
|
-
outline: 1px solid var(--border-neutral-primary);
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
&:disabled,
|
|
351
|
-
&[disabled] {
|
|
352
|
-
background: transparent;
|
|
353
|
-
color: var(--text-default-disabled);
|
|
354
|
-
border: 1px solid var(--border-neutral-secondary);
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
&--on-color {
|
|
358
|
-
outline-color: var(--border-white-40);
|
|
359
|
-
color: var(--text-oncolor-primary);
|
|
360
|
-
mix-blend-mode: normal;
|
|
361
|
-
|
|
362
|
-
&:hover {
|
|
363
|
-
background: var(--button-background-transparent-hovered);
|
|
364
|
-
outline-color: var(--border-white-40);
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
&:visited,
|
|
368
|
-
&.selected {
|
|
369
|
-
background: var(--button-background-transparent-hovered);
|
|
370
|
-
outline-color: var(--border-white-40);
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
&:focus {
|
|
374
|
-
background: transparent;
|
|
375
|
-
outline: 2px solid var(--border-white);
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
&:active {
|
|
379
|
-
background: var(--button-background-transparent-hovered);
|
|
380
|
-
outline-color: var(--border-white-40);
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
&:disabled,
|
|
384
|
-
&[disabled] {
|
|
385
|
-
outline-color: 1px solid var(--icon-default-oncolor-disabled);
|
|
386
|
-
color: var(--text-default-oncolor-disabled);
|
|
387
|
-
}
|
|
388
|
-
}
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
&--subtle,
|
|
392
|
-
&--close,
|
|
393
|
-
&--sort {
|
|
394
|
-
background-color: transparent;
|
|
395
|
-
color: var(--colors-text-primary);
|
|
396
|
-
mix-blend-mode: multiply;
|
|
397
|
-
|
|
398
|
-
&:hover {
|
|
399
|
-
background: var(--button-background-neutral-default);
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
&:visited {
|
|
403
|
-
background: var(--button-background-neutral-pressed);
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
&:focus {
|
|
407
|
-
background: transparent;
|
|
408
|
-
outline: 2px solid var(--border-black);
|
|
409
|
-
position: relative;
|
|
410
|
-
|
|
411
|
-
&::after {
|
|
412
|
-
content: '';
|
|
413
|
-
display: block;
|
|
414
|
-
background-color: transparent;
|
|
415
|
-
width: 100%;
|
|
416
|
-
height: 100%;
|
|
417
|
-
position: absolute;
|
|
418
|
-
top: 0;
|
|
419
|
-
left: 0;
|
|
420
|
-
border: 1px solid #fff;
|
|
421
|
-
border-radius: var(--radius-sm);
|
|
422
|
-
}
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
&:active {
|
|
426
|
-
background: var(--button-background-neutral-selected);
|
|
427
|
-
outline: none;
|
|
428
|
-
|
|
429
|
-
&::after {
|
|
430
|
-
display: none !important;
|
|
431
|
-
}
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
&:disabled,
|
|
435
|
-
&[disabled] {
|
|
436
|
-
background: transparent;
|
|
437
|
-
color: var(--text-default-disabled);
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
&--transparent {
|
|
442
|
-
background-color: transparent;
|
|
443
|
-
color: var(--text-default);
|
|
444
|
-
|
|
445
|
-
&:hover {
|
|
446
|
-
background: transparent;
|
|
447
|
-
color: var(--button-background-primary-hovered);
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
&:visited {
|
|
451
|
-
color: var(--button-background-primary-pressed);
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
&:focus {
|
|
455
|
-
background: transparent;
|
|
456
|
-
outline: 2px solid var(--border-black);
|
|
457
|
-
position: relative;
|
|
458
|
-
|
|
459
|
-
&::after {
|
|
460
|
-
content: '';
|
|
461
|
-
display: block;
|
|
462
|
-
background-color: transparent;
|
|
463
|
-
width: 100%;
|
|
464
|
-
height: 100%;
|
|
465
|
-
position: absolute;
|
|
466
|
-
top: 0;
|
|
467
|
-
left: 0;
|
|
468
|
-
border: 1px solid #fff;
|
|
469
|
-
border-radius: var(--radius-sm);
|
|
470
|
-
}
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
&:active {
|
|
474
|
-
color: var(--button-background-primary-selected);
|
|
475
|
-
outline: none;
|
|
476
|
-
|
|
477
|
-
&::after {
|
|
478
|
-
display: none !important;
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
&:disabled,
|
|
483
|
-
&[disabled] {
|
|
484
|
-
background: transparent;
|
|
485
|
-
color: var(--text-default-disabled);
|
|
486
|
-
}
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
&--close {
|
|
490
|
-
display: flex;
|
|
491
|
-
width: 40px;
|
|
492
|
-
height: 40px;
|
|
493
|
-
padding: var(--spacing-md);
|
|
494
|
-
justify-content: center;
|
|
495
|
-
align-items: center;
|
|
496
|
-
border-radius: var(--radius-sm);
|
|
497
|
-
background-color: transparent;
|
|
498
|
-
color: var(--icon-default);
|
|
499
|
-
|
|
500
|
-
&:hover {
|
|
501
|
-
background: var(--button-background-neutral-hovered);
|
|
502
|
-
color: var(--icon-default);
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
&:active {
|
|
506
|
-
background-color: var(--button-background-neutral-pressed);
|
|
507
|
-
}
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
&--des-primary {
|
|
511
|
-
background-color: var(--button-background-danger-primary-default);
|
|
512
|
-
color: var(--text-oncolor-primary);
|
|
513
|
-
|
|
514
|
-
&:hover {
|
|
515
|
-
background: var(--button-background-danger-primary-hovered);
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
&:visited {
|
|
519
|
-
background: var(--button-background-danger-primary-pressed);
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
&:focus {
|
|
523
|
-
background: var(--button-background-danger-primary-focused);
|
|
524
|
-
outline: 2px solid var(--border-black);
|
|
525
|
-
position: relative;
|
|
526
|
-
|
|
527
|
-
&::after {
|
|
528
|
-
content: '';
|
|
529
|
-
display: block;
|
|
530
|
-
background-color: transparent;
|
|
531
|
-
width: 100%;
|
|
532
|
-
height: 100%;
|
|
533
|
-
position: absolute;
|
|
534
|
-
top: 0;
|
|
535
|
-
left: 0;
|
|
536
|
-
border: 1px solid #fff;
|
|
537
|
-
border-radius: var(--radius-sm);
|
|
538
|
-
}
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
&:active {
|
|
542
|
-
background: var(--button-background-danger-primary-selected);
|
|
543
|
-
outline: none;
|
|
544
|
-
|
|
545
|
-
&::after {
|
|
546
|
-
display: none !important;
|
|
547
|
-
}
|
|
548
|
-
}
|
|
549
|
-
|
|
550
|
-
&:disabled,
|
|
551
|
-
&[disabled] {
|
|
552
|
-
background: var(--background-disabled);
|
|
553
|
-
color: var(--text-default-disabled);
|
|
554
|
-
}
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
&--des-secondary {
|
|
558
|
-
background-color: var(--button-background-danger-secondary-default);
|
|
559
|
-
color: var(--text-error);
|
|
560
|
-
|
|
561
|
-
&:hover {
|
|
562
|
-
background: var(--button-background-danger-secondary-hovered);
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
&:visited {
|
|
566
|
-
background: var(--button-background-danger-secondary-pressed);
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
&:focus {
|
|
570
|
-
background: var(--button-background-danger-secondary-focused);
|
|
571
|
-
outline: 2px solid var(--border-black);
|
|
572
|
-
position: relative;
|
|
573
|
-
|
|
574
|
-
&::after {
|
|
575
|
-
content: '';
|
|
576
|
-
display: block;
|
|
577
|
-
background-color: transparent;
|
|
578
|
-
width: 100%;
|
|
579
|
-
height: 100%;
|
|
580
|
-
position: absolute;
|
|
581
|
-
top: 0;
|
|
582
|
-
left: 0;
|
|
583
|
-
border: 1px solid #fff;
|
|
584
|
-
border-radius: var(--radius-sm);
|
|
585
|
-
}
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
&:active {
|
|
589
|
-
background: var(--button-background-danger-secondary-selected);
|
|
590
|
-
outline: none;
|
|
591
|
-
|
|
592
|
-
&::after {
|
|
593
|
-
display: none !important;
|
|
594
|
-
}
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
&:disabled,
|
|
598
|
-
&[disabled] {
|
|
599
|
-
background: var(--background-disabled);
|
|
600
|
-
color: var(--text-default-disabled);
|
|
601
|
-
}
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
&--des-secondary-outline {
|
|
605
|
-
outline: 1px solid var(--border-error-light);
|
|
606
|
-
background-color: transparent;
|
|
607
|
-
color: var(--text-error);
|
|
608
|
-
mix-blend-mode: multiply;
|
|
609
|
-
|
|
610
|
-
&:hover {
|
|
611
|
-
background: var(--button-background-danger-secondary-hovered);
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
&:visited {
|
|
615
|
-
background: var(--button-background-danger-secondary-pressed);
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
&:focus {
|
|
619
|
-
background: transparent;
|
|
620
|
-
outline: 2px solid var(--border-black);
|
|
621
|
-
position: relative;
|
|
622
|
-
|
|
623
|
-
&::after {
|
|
624
|
-
content: '';
|
|
625
|
-
display: block;
|
|
626
|
-
background-color: transparent;
|
|
627
|
-
width: 100%;
|
|
628
|
-
height: 100%;
|
|
629
|
-
position: absolute;
|
|
630
|
-
top: 0;
|
|
631
|
-
left: 0;
|
|
632
|
-
border: 1px solid #fff;
|
|
633
|
-
border-radius: var(--radius-sm);
|
|
634
|
-
}
|
|
635
|
-
}
|
|
636
|
-
|
|
637
|
-
&:active {
|
|
638
|
-
background: var(--button-background-danger-secondary-selected);
|
|
639
|
-
outline: 1px solid var(--border-error-light);
|
|
640
|
-
|
|
641
|
-
&::after {
|
|
642
|
-
display: none !important;
|
|
643
|
-
}
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
&:disabled,
|
|
647
|
-
&[disabled] {
|
|
648
|
-
background: transparent;
|
|
649
|
-
color: var(--text-default-disabled);
|
|
650
|
-
outline: 1px solid var(--border-neutral-secondary);
|
|
651
|
-
}
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
&--des-subtle {
|
|
655
|
-
background-color: transparent;
|
|
656
|
-
color: var(--text-error);
|
|
657
|
-
|
|
658
|
-
&:hover {
|
|
659
|
-
background: var(--button-background-danger-secondary-hovered);
|
|
660
|
-
}
|
|
661
|
-
|
|
662
|
-
&:visited {
|
|
663
|
-
background: var(--button-background-danger-secondary-pressed);
|
|
664
|
-
}
|
|
665
|
-
|
|
666
|
-
&:focus {
|
|
667
|
-
background: transparent;
|
|
668
|
-
outline: 2px solid var(--border-black);
|
|
669
|
-
position: relative;
|
|
670
|
-
|
|
671
|
-
&::after {
|
|
672
|
-
content: '';
|
|
673
|
-
display: block;
|
|
674
|
-
background-color: transparent;
|
|
675
|
-
width: 100%;
|
|
676
|
-
height: 100%;
|
|
677
|
-
position: absolute;
|
|
678
|
-
top: 0;
|
|
679
|
-
left: 0;
|
|
680
|
-
border: 1px solid #fff;
|
|
681
|
-
border-radius: var(--radius-sm);
|
|
682
|
-
}
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
&:active {
|
|
686
|
-
background: var(--button-background-danger-secondary-selected);
|
|
687
|
-
outline: none;
|
|
688
|
-
|
|
689
|
-
&::after {
|
|
690
|
-
display: none !important;
|
|
691
|
-
}
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
&:disabled,
|
|
695
|
-
&[disabled] {
|
|
696
|
-
background: transparent;
|
|
697
|
-
color: var(--text-default-disabled);
|
|
698
|
-
}
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
&--des-transparent {
|
|
702
|
-
background-color: transparent;
|
|
703
|
-
color: var(--button-background-danger-primary-default);
|
|
704
|
-
|
|
705
|
-
&:hover {
|
|
706
|
-
background: transparent;
|
|
707
|
-
color: var(--button-background-danger-primary-hovered);
|
|
708
|
-
}
|
|
709
|
-
|
|
710
|
-
&:visited {
|
|
711
|
-
color: var(--button-background-danger-primary-pressed);
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
&:focus {
|
|
715
|
-
background: transparent;
|
|
716
|
-
outline: 2px solid var(--border-black);
|
|
717
|
-
position: relative;
|
|
718
|
-
color: var(--button-background-danger-primary-selected);
|
|
719
|
-
|
|
720
|
-
&::after {
|
|
721
|
-
content: '';
|
|
722
|
-
display: block;
|
|
723
|
-
background-color: transparent;
|
|
724
|
-
width: 100%;
|
|
725
|
-
height: 100%;
|
|
726
|
-
position: absolute;
|
|
727
|
-
top: 0;
|
|
728
|
-
left: 0;
|
|
729
|
-
border: 1px solid #fff;
|
|
730
|
-
border-radius: var(--radius-sm);
|
|
731
|
-
}
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
&:active {
|
|
735
|
-
color: var(--button-background-danger-primary-selected);
|
|
736
|
-
outline: none;
|
|
737
|
-
|
|
738
|
-
&::after {
|
|
739
|
-
display: none !important;
|
|
740
|
-
}
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
&:disabled,
|
|
744
|
-
&[disabled] {
|
|
745
|
-
background: transparent;
|
|
746
|
-
color: var(--text-default-disabled);
|
|
747
|
-
}
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
&.btn--subtle-on-color,
|
|
751
|
-
&.btn--close-on-color {
|
|
752
|
-
background-color: transparent;
|
|
753
|
-
color: var(--text-oncolor-primary);
|
|
754
|
-
|
|
755
|
-
&:hover {
|
|
756
|
-
background-color: var(--button-background-transparent-hovered);
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
&:visited,
|
|
760
|
-
&.selected {
|
|
761
|
-
background-color: var(--button-background-transparent-selected);
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
&:focus {
|
|
765
|
-
outline: 2px solid var(--border-white);
|
|
766
|
-
|
|
767
|
-
&::after {
|
|
768
|
-
display: none;
|
|
769
|
-
}
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
&:active {
|
|
773
|
-
color: var(--text-oncolor-primary);
|
|
774
|
-
background-color: var(--button-background-transparent-pressed);
|
|
775
|
-
}
|
|
776
|
-
|
|
777
|
-
&:disabled,
|
|
778
|
-
&[disabled] {
|
|
779
|
-
background-color: transparent;
|
|
780
|
-
color: var(--text-default-oncolor-disabled);
|
|
781
|
-
}
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
&--transparent-on-color {
|
|
785
|
-
background-color: transparent;
|
|
786
|
-
color: var(--text-oncolor-primary);
|
|
787
|
-
|
|
788
|
-
&:hover {
|
|
789
|
-
color: var(--button-label-transparent-hovered-on-color);
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
&:visited,
|
|
793
|
-
&.selected {
|
|
794
|
-
color: var(--button-label-transparent-selected-on-color);
|
|
795
|
-
}
|
|
796
|
-
|
|
797
|
-
&:focus {
|
|
798
|
-
outline: 2px solid var(--colors-base-white);
|
|
799
|
-
|
|
800
|
-
&::after {
|
|
801
|
-
display: none;
|
|
802
|
-
}
|
|
803
|
-
}
|
|
804
|
-
|
|
805
|
-
&:active {
|
|
806
|
-
color: var(--button-label-transparent-pressed-on-color);
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
&:disabled,
|
|
810
|
-
&[disabled] {
|
|
811
|
-
background-color: transparent;
|
|
812
|
-
color: var(--text-default-oncolor-disabled);
|
|
813
|
-
}
|
|
814
|
-
}
|
|
815
|
-
}
|