@vonage/vivid 3.43.0 → 3.44.0
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/appearance-ui/index.js +94 -0
- package/custom-elements.json +603 -37
- package/index.js +1 -1
- package/lib/appearance-ui/appearance-ui.d.ts +12 -0
- package/lib/appearance-ui/appearance-ui.template.d.ts +4 -0
- package/lib/appearance-ui/definition.d.ts +3 -0
- package/lib/dialog/dialog.d.ts +1 -4
- package/lib/menu/menu.d.ts +1 -0
- package/lib/menu-item/definition.d.ts +1 -0
- package/listbox/index.js +1 -1
- package/package.json +1 -1
- package/shared/definition.js +1 -1
- package/shared/definition11.js +1 -1
- package/shared/definition12.js +1 -1
- package/shared/definition13.js +1 -1
- package/shared/definition14.js +1 -1
- package/shared/definition15.js +1 -1
- package/shared/definition16.js +1 -1
- package/shared/definition17.js +2 -2
- package/shared/definition2.js +1 -1
- package/shared/definition20.js +16 -2
- package/shared/definition21.js +1 -1
- package/shared/definition22.js +1 -1
- package/shared/definition23.js +1 -1
- package/shared/definition24.js +1 -1
- package/shared/definition25.js +1 -1
- package/shared/definition28.js +6 -2
- package/shared/definition29.js +11 -3
- package/shared/definition3.js +1 -1
- package/shared/definition30.js +1 -1
- package/shared/definition31.js +1 -1
- package/shared/definition33.js +1 -1
- package/shared/definition34.js +3 -3
- package/shared/definition35.js +1 -1
- package/shared/definition36.js +1 -1
- package/shared/definition37.js +1 -1
- package/shared/definition38.js +1 -1
- package/shared/definition39.js +1 -1
- package/shared/definition4.js +1 -1
- package/shared/definition40.js +1 -1
- package/shared/definition41.js +1 -1
- package/shared/definition42.js +1 -1
- package/shared/definition43.js +1 -1
- package/shared/definition44.js +1 -1
- package/shared/definition45.js +1 -1
- package/shared/definition46.js +1 -1
- package/shared/definition48.js +1 -1
- package/shared/definition49.js +1 -1
- package/shared/definition5.js +1 -1
- package/shared/definition51.js +1 -1
- package/shared/definition52.js +3 -3
- package/shared/definition53.js +2 -2
- package/shared/definition54.js +1 -1
- package/shared/definition55.js +1 -1
- package/shared/definition56.js +1 -1
- package/shared/definition58.js +1 -1
- package/shared/definition6.js +1 -1
- package/shared/definition7.js +1 -1
- package/shared/definition8.js +1 -1
- package/shared/definition9.js +1 -1
- package/shared/index2.js +1 -1
- package/shared/presentationDate.js +2 -2
- package/shared/text-field.js +1 -1
- package/style.css +769 -110
- package/styles/core/all.css +1 -1
- package/styles/core/theme.css +1 -1
- package/styles/core/typography.css +1 -1
- package/styles/tokens/theme-dark.css +4 -4
- package/styles/tokens/theme-light.css +4 -4
- package/styles/tokens/vivid-2-compat.css +1 -1
- package/vivid.api.json +23 -0
package/style.css
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
4
4
|
*/
|
|
5
5
|
:host {
|
|
6
6
|
display: inline-block;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.base {
|
|
10
|
-
--_text-field-gutter: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2.5);
|
|
10
|
+
--_text-field-gutter-start: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2.5);
|
|
11
|
+
--_text-field-gutter-end: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2.5);
|
|
11
12
|
--_text-field-icon-size: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2);
|
|
12
13
|
display: inline-grid;
|
|
13
14
|
width: 100%;
|
|
@@ -54,6 +55,26 @@
|
|
|
54
55
|
--_appearance-color-fill: transparent;
|
|
55
56
|
--_appearance-color-outline: transparent;
|
|
56
57
|
}
|
|
58
|
+
.base:where(.error):where(:not(:disabled, .disabled)) {
|
|
59
|
+
--_appearance-color-text: notSet;
|
|
60
|
+
--_appearance-color-fill: var(--vvd-color-alert-50);
|
|
61
|
+
--_appearance-color-outline: var(--vvd-color-alert-500);
|
|
62
|
+
}
|
|
63
|
+
.base:where(.error):where(:not(:disabled, .disabled)).appearance-ghost {
|
|
64
|
+
--_appearance-color-text: notSet;
|
|
65
|
+
--_appearance-color-fill: var(--vvd-color-alert-50);
|
|
66
|
+
--_appearance-color-outline: transparent;
|
|
67
|
+
}
|
|
68
|
+
.base:where(.success):where(:not(:disabled, .disabled)) {
|
|
69
|
+
--_appearance-color-text: notSet;
|
|
70
|
+
--_appearance-color-fill: var(--vvd-color-success-50);
|
|
71
|
+
--_appearance-color-outline: var(--vvd-color-success-500);
|
|
72
|
+
}
|
|
73
|
+
.base:where(.success):where(:not(:disabled, .disabled)).appearance-ghost {
|
|
74
|
+
--_appearance-color-text: notSet;
|
|
75
|
+
--_appearance-color-fill: var(--vvd-color-success-50);
|
|
76
|
+
--_appearance-color-outline: transparent;
|
|
77
|
+
}
|
|
57
78
|
.base.connotation-success {
|
|
58
79
|
/* @cssprop [--vvd-text-field-success-primary=var(--vvd-color-success-500)] */
|
|
59
80
|
--_connotation-color-primary: var(--vvd-text-field-success-primary, var(--vvd-color-success-500));
|
|
@@ -110,8 +131,12 @@
|
|
|
110
131
|
|
|
111
132
|
.label:not(slot),
|
|
112
133
|
.label::slotted(label) {
|
|
113
|
-
|
|
114
|
-
|
|
134
|
+
/* As label is in light dom, use !important and initial to prevent values getting overridden by global CSS resets etc. */
|
|
135
|
+
box-sizing: initial !important;
|
|
136
|
+
padding: initial !important;
|
|
137
|
+
margin: initial !important;
|
|
138
|
+
color: var(--vvd-color-canvas-text) !important;
|
|
139
|
+
contain: inline-size !important;
|
|
115
140
|
font: var(--vvd-typography-base);
|
|
116
141
|
grid-column: 1/4;
|
|
117
142
|
grid-row: 1;
|
|
@@ -172,23 +197,25 @@
|
|
|
172
197
|
}
|
|
173
198
|
|
|
174
199
|
.control:not(slot), .control::slotted(input) {
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
200
|
+
/* As input is in light dom, use !important and initial to prevent values getting overridden by global CSS resets etc. */
|
|
201
|
+
width: 100% !important;
|
|
202
|
+
box-sizing: border-box !important;
|
|
203
|
+
border: 0 none !important;
|
|
204
|
+
margin: initial !important;
|
|
205
|
+
appearance: none !important; /* for box-shadow visibility on IOS */
|
|
206
|
+
background-color: transparent !important;
|
|
207
|
+
block-size: 100% !important;
|
|
208
|
+
border-radius: inherit !important;
|
|
209
|
+
color: inherit !important;
|
|
183
210
|
font: inherit;
|
|
184
|
-
padding-block: 0;
|
|
185
|
-
padding-inline-end: var(--_text-field-gutter);
|
|
186
|
-
padding-inline-start: var(--_text-field-gutter);
|
|
211
|
+
padding-block: 0 !important;
|
|
212
|
+
padding-inline-end: var(--_text-field-gutter-end) !important;
|
|
213
|
+
padding-inline-start: var(--_text-field-gutter-start) !important;
|
|
187
214
|
}
|
|
188
215
|
.control:not(slot):disabled, .control::slotted(input:disabled) {
|
|
189
|
-
cursor: not-allowed;
|
|
190
|
-
opacity: 1; /* 2. correct opacity on iOS */
|
|
191
|
-
-webkit-text-fill-color: var(--_appearance-color-text); /* 1. sets text fill to current `color` for safari */
|
|
216
|
+
cursor: not-allowed !important;
|
|
217
|
+
opacity: 1 !important; /* 2. correct opacity on iOS */
|
|
218
|
+
-webkit-text-fill-color: var(--_appearance-color-text) !important; /* 1. sets text fill to current `color` for safari */
|
|
192
219
|
}
|
|
193
220
|
.control:not(slot)::placeholder {
|
|
194
221
|
opacity: 1 !important; /* 2. correct opacity on iOS */
|
|
@@ -198,7 +225,7 @@
|
|
|
198
225
|
outline: none;
|
|
199
226
|
}
|
|
200
227
|
.has-icon .control:not(slot), .has-icon .control::slotted(input) {
|
|
201
|
-
padding-inline-start: calc(var(--_text-field-icon-size) + var(--_text-field-gutter) * 2);
|
|
228
|
+
padding-inline-start: calc(var(--_text-field-icon-size) + var(--_text-field-gutter-start) * 2) !important;
|
|
202
229
|
}
|
|
203
230
|
|
|
204
231
|
.icon {
|
|
@@ -207,7 +234,7 @@
|
|
|
207
234
|
color: var(--_low-ink-color);
|
|
208
235
|
font-size: var(--_text-field-icon-size);
|
|
209
236
|
inset-block-start: 50%;
|
|
210
|
-
inset-inline-start: calc(100% + var(--_text-field-gutter));
|
|
237
|
+
inset-inline-start: calc(100% + var(--_text-field-gutter-start));
|
|
211
238
|
line-height: 1;
|
|
212
239
|
transform: translateY(-50%);
|
|
213
240
|
}
|
|
@@ -319,7 +346,7 @@ slot, svg, ::slotted(:where(svg, img)) {
|
|
|
319
346
|
inline-size: inherit;
|
|
320
347
|
}/**
|
|
321
348
|
* Do not edit directly
|
|
322
|
-
* Generated on
|
|
349
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
323
350
|
*/
|
|
324
351
|
:host {
|
|
325
352
|
display: contents;
|
|
@@ -337,7 +364,7 @@ slot, svg, ::slotted(:where(svg, img)) {
|
|
|
337
364
|
outline-offset: -2px;
|
|
338
365
|
}/**
|
|
339
366
|
* Do not edit directly
|
|
340
|
-
* Generated on
|
|
367
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
341
368
|
*/
|
|
342
369
|
.message {
|
|
343
370
|
display: flex;
|
|
@@ -362,7 +389,7 @@ slot, svg, ::slotted(:where(svg, img)) {
|
|
|
362
389
|
color: var(--vvd-color-alert-500);
|
|
363
390
|
}/**
|
|
364
391
|
* Do not edit directly
|
|
365
|
-
* Generated on
|
|
392
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
366
393
|
*/
|
|
367
394
|
:host {
|
|
368
395
|
display: contents;
|
|
@@ -499,7 +526,7 @@ p {
|
|
|
499
526
|
font: var(--vvd-typography-base-condensed);
|
|
500
527
|
}/**
|
|
501
528
|
* Do not edit directly
|
|
502
|
-
* Generated on
|
|
529
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
503
530
|
*/
|
|
504
531
|
.base {
|
|
505
532
|
display: flex;
|
|
@@ -550,7 +577,7 @@ p {
|
|
|
550
577
|
display: none;
|
|
551
578
|
}/**
|
|
552
579
|
* Do not edit directly
|
|
553
|
-
* Generated on
|
|
580
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
554
581
|
*/
|
|
555
582
|
@supports selector(:focus-visible) {
|
|
556
583
|
:host(:focus-visible) {
|
|
@@ -673,7 +700,7 @@ label {
|
|
|
673
700
|
display: none;
|
|
674
701
|
}/**
|
|
675
702
|
* Do not edit directly
|
|
676
|
-
* Generated on
|
|
703
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
677
704
|
*/
|
|
678
705
|
:host {
|
|
679
706
|
display: inline-block;
|
|
@@ -760,7 +787,7 @@ label {
|
|
|
760
787
|
pointer-events: none;
|
|
761
788
|
}/**
|
|
762
789
|
* Do not edit directly
|
|
763
|
-
* Generated on
|
|
790
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
764
791
|
*/
|
|
765
792
|
:host {
|
|
766
793
|
display: inline-block;
|
|
@@ -824,7 +851,7 @@ label {
|
|
|
824
851
|
margin-block: 4px;
|
|
825
852
|
}/**
|
|
826
853
|
* Do not edit directly
|
|
827
|
-
* Generated on
|
|
854
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
828
855
|
*/
|
|
829
856
|
.control {
|
|
830
857
|
position: fixed;
|
|
@@ -927,7 +954,7 @@ label {
|
|
|
927
954
|
padding-inline-start: 8px;
|
|
928
955
|
}/**
|
|
929
956
|
* Do not edit directly
|
|
930
|
-
* Generated on
|
|
957
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
931
958
|
*/
|
|
932
959
|
:host {
|
|
933
960
|
display: inline-block;
|
|
@@ -1296,7 +1323,7 @@ slot[name=icon] {
|
|
|
1296
1323
|
filter: none;
|
|
1297
1324
|
}/**
|
|
1298
1325
|
* Do not edit directly
|
|
1299
|
-
* Generated on
|
|
1326
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
1300
1327
|
*/
|
|
1301
1328
|
.base {
|
|
1302
1329
|
align-items: center;
|
|
@@ -1419,7 +1446,7 @@ slot[name=icon] {
|
|
|
1419
1446
|
}
|
|
1420
1447
|
}/**
|
|
1421
1448
|
* Do not edit directly
|
|
1422
|
-
* Generated on
|
|
1449
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
1423
1450
|
*/
|
|
1424
1451
|
.base {
|
|
1425
1452
|
display: inline-flex;
|
|
@@ -1445,7 +1472,7 @@ slot[name=icon] {
|
|
|
1445
1472
|
min-inline-size: 32px;
|
|
1446
1473
|
}/**
|
|
1447
1474
|
* Do not edit directly
|
|
1448
|
-
* Generated on
|
|
1475
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
1449
1476
|
*/
|
|
1450
1477
|
.base {
|
|
1451
1478
|
display: inline-flex;
|
|
@@ -1556,7 +1583,7 @@ slot[name=icon] {
|
|
|
1556
1583
|
object-fit: cover;
|
|
1557
1584
|
}/**
|
|
1558
1585
|
* Do not edit directly
|
|
1559
|
-
* Generated on
|
|
1586
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
1560
1587
|
*/
|
|
1561
1588
|
:host {
|
|
1562
1589
|
display: inline-block;
|
|
@@ -1746,7 +1773,7 @@ slot[name=icon] {
|
|
|
1746
1773
|
order: 1;
|
|
1747
1774
|
}/**
|
|
1748
1775
|
* Do not edit directly
|
|
1749
|
-
* Generated on
|
|
1776
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
1750
1777
|
*/
|
|
1751
1778
|
:host {
|
|
1752
1779
|
display: block;
|
|
@@ -1827,7 +1854,7 @@ slot[name=icon] {
|
|
|
1827
1854
|
margin-inline-end: 8px;
|
|
1828
1855
|
}/**
|
|
1829
1856
|
* Do not edit directly
|
|
1830
|
-
* Generated on
|
|
1857
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
1831
1858
|
*/
|
|
1832
1859
|
.base {
|
|
1833
1860
|
display: flex;
|
|
@@ -1867,7 +1894,7 @@ slot[name=icon] {
|
|
|
1867
1894
|
display: none;
|
|
1868
1895
|
}/**
|
|
1869
1896
|
* Do not edit directly
|
|
1870
|
-
* Generated on
|
|
1897
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
1871
1898
|
*/
|
|
1872
1899
|
:host {
|
|
1873
1900
|
display: flex;
|
|
@@ -1968,7 +1995,7 @@ slot[name=icon] {
|
|
|
1968
1995
|
margin-inline-start: auto;
|
|
1969
1996
|
}/**
|
|
1970
1997
|
* Do not edit directly
|
|
1971
|
-
* Generated on
|
|
1998
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
1972
1999
|
*/
|
|
1973
2000
|
:host {
|
|
1974
2001
|
display: block;
|
|
@@ -2017,7 +2044,7 @@ header {
|
|
|
2017
2044
|
display: none;
|
|
2018
2045
|
}/**
|
|
2019
2046
|
* Do not edit directly
|
|
2020
|
-
* Generated on
|
|
2047
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
2021
2048
|
*/
|
|
2022
2049
|
.control {
|
|
2023
2050
|
position: relative;
|
|
@@ -2095,7 +2122,7 @@ header {
|
|
|
2095
2122
|
}
|
|
2096
2123
|
}
|
|
2097
2124
|
.control.size-expanded {
|
|
2098
|
-
--_fab-border-radius:
|
|
2125
|
+
--_fab-border-radius: 40px;
|
|
2099
2126
|
--_fab-block-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) + 16));
|
|
2100
2127
|
}
|
|
2101
2128
|
.control:not(.size-expanded) {
|
|
@@ -2162,7 +2189,7 @@ slot[name=icon] {
|
|
|
2162
2189
|
--focus-stroke-gap-color: transparent;
|
|
2163
2190
|
}/**
|
|
2164
2191
|
* Do not edit directly
|
|
2165
|
-
* Generated on
|
|
2192
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
2166
2193
|
*/
|
|
2167
2194
|
.base {
|
|
2168
2195
|
z-index: 1;
|
|
@@ -2304,7 +2331,7 @@ slot[name=icon] {
|
|
|
2304
2331
|
gap: 4px;
|
|
2305
2332
|
}/**
|
|
2306
2333
|
* Do not edit directly
|
|
2307
|
-
* Generated on
|
|
2334
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
2308
2335
|
*/
|
|
2309
2336
|
.control {
|
|
2310
2337
|
position: relative;
|
|
@@ -2407,7 +2434,7 @@ details > summary::-webkit-details-marker {
|
|
|
2407
2434
|
display: none;
|
|
2408
2435
|
}/**
|
|
2409
2436
|
* Do not edit directly
|
|
2410
|
-
* Generated on
|
|
2437
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
2411
2438
|
*/
|
|
2412
2439
|
.control {
|
|
2413
2440
|
position: relative;
|
|
@@ -2491,7 +2518,7 @@ slot[name=icon] {
|
|
|
2491
2518
|
line-height: 1;
|
|
2492
2519
|
}/**
|
|
2493
2520
|
* Do not edit directly
|
|
2494
|
-
* Generated on
|
|
2521
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
2495
2522
|
*/
|
|
2496
2523
|
.base {
|
|
2497
2524
|
display: flex;
|
|
@@ -2581,7 +2608,7 @@ slot[name=icon] {
|
|
|
2581
2608
|
font: var(--vvd-typography-base);
|
|
2582
2609
|
}/**
|
|
2583
2610
|
* Do not edit directly
|
|
2584
|
-
* Generated on
|
|
2611
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
2585
2612
|
*/
|
|
2586
2613
|
.control {
|
|
2587
2614
|
display: inline-flex;
|
|
@@ -2630,7 +2657,7 @@ slot[name=icon] {
|
|
|
2630
2657
|
inline-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2)));
|
|
2631
2658
|
}/**
|
|
2632
2659
|
* Do not edit directly
|
|
2633
|
-
* Generated on
|
|
2660
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
2634
2661
|
*/
|
|
2635
2662
|
.base {
|
|
2636
2663
|
height: 6px;
|
|
@@ -2687,7 +2714,7 @@ slot[name=icon] {
|
|
|
2687
2714
|
background-color: var(--vvd-color-neutral-100);
|
|
2688
2715
|
}
|
|
2689
2716
|
.base:not(.shape-sharp) .progress {
|
|
2690
|
-
border-radius:
|
|
2717
|
+
border-radius: 4px;
|
|
2691
2718
|
}
|
|
2692
2719
|
|
|
2693
2720
|
.indeterminate {
|
|
@@ -2782,7 +2809,7 @@ slot[name=icon] {
|
|
|
2782
2809
|
}
|
|
2783
2810
|
}/**
|
|
2784
2811
|
* Do not edit directly
|
|
2785
|
-
* Generated on
|
|
2812
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
2786
2813
|
*/
|
|
2787
2814
|
@supports selector(:focus-visible) {
|
|
2788
2815
|
.base:focus-visible {
|
|
@@ -2871,8 +2898,16 @@ slot[name=icon] {
|
|
|
2871
2898
|
inset-inline-end: var(--selectable-box-spacing, 16px);
|
|
2872
2899
|
}/**
|
|
2873
2900
|
* Do not edit directly
|
|
2874
|
-
* Generated on
|
|
2901
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
2875
2902
|
*/
|
|
2903
|
+
:host {
|
|
2904
|
+
display: block;
|
|
2905
|
+
}
|
|
2906
|
+
|
|
2907
|
+
.side-drawer-app-content {
|
|
2908
|
+
block-size: 100%;
|
|
2909
|
+
}
|
|
2910
|
+
|
|
2876
2911
|
.control {
|
|
2877
2912
|
position: fixed;
|
|
2878
2913
|
z-index: 1;
|
|
@@ -2918,7 +2953,7 @@ slot[name=icon] {
|
|
|
2918
2953
|
display: none;
|
|
2919
2954
|
}/**
|
|
2920
2955
|
* Do not edit directly
|
|
2921
|
-
* Generated on
|
|
2956
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
2922
2957
|
*/
|
|
2923
2958
|
:host {
|
|
2924
2959
|
display: inline-block;
|
|
@@ -3102,7 +3137,9 @@ slot[name=icon] {
|
|
|
3102
3137
|
}
|
|
3103
3138
|
|
|
3104
3139
|
.control {
|
|
3140
|
+
border-bottom-left-radius: var(--_border-radius);
|
|
3105
3141
|
border-inline-end: 0;
|
|
3142
|
+
border-top-left-radius: var(--_border-radius);
|
|
3106
3143
|
gap: var(--_split-button-icon-gap);
|
|
3107
3144
|
isolation: isolate;
|
|
3108
3145
|
/* Disabled */
|
|
@@ -3137,10 +3174,10 @@ slot[name=icon] {
|
|
|
3137
3174
|
inline-size: inherit;
|
|
3138
3175
|
}
|
|
3139
3176
|
.control:not(.shape-pill) {
|
|
3140
|
-
|
|
3177
|
+
--_border-radius: 6px;
|
|
3141
3178
|
}
|
|
3142
3179
|
.control.shape-pill {
|
|
3143
|
-
|
|
3180
|
+
--_border-radius: 24px;
|
|
3144
3181
|
}
|
|
3145
3182
|
.control.size-super-condensed {
|
|
3146
3183
|
--_split-button-block-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 16));
|
|
@@ -3182,7 +3219,9 @@ slot[name=icon] {
|
|
|
3182
3219
|
}
|
|
3183
3220
|
|
|
3184
3221
|
.indicator {
|
|
3222
|
+
border-bottom-right-radius: var(--_border-radius);
|
|
3185
3223
|
border-inline-start: 0;
|
|
3224
|
+
border-top-right-radius: var(--_border-radius);
|
|
3186
3225
|
inline-size: var(--_split-button-inline-size);
|
|
3187
3226
|
/* Disabled */
|
|
3188
3227
|
/* Shape */
|
|
@@ -3198,10 +3237,10 @@ slot[name=icon] {
|
|
|
3198
3237
|
cursor: not-allowed;
|
|
3199
3238
|
}
|
|
3200
3239
|
.indicator:not(.shape-pill) {
|
|
3201
|
-
|
|
3240
|
+
--_border-radius: 6px;
|
|
3202
3241
|
}
|
|
3203
3242
|
.indicator.shape-pill {
|
|
3204
|
-
|
|
3243
|
+
--_border-radius: 24px;
|
|
3205
3244
|
}
|
|
3206
3245
|
.indicator::before {
|
|
3207
3246
|
position: absolute;
|
|
@@ -3260,7 +3299,7 @@ slot[name=icon] {
|
|
|
3260
3299
|
--focus-inset: -1px;
|
|
3261
3300
|
}/**
|
|
3262
3301
|
* Do not edit directly
|
|
3263
|
-
* Generated on
|
|
3302
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
3264
3303
|
*/
|
|
3265
3304
|
.base {
|
|
3266
3305
|
--tag-block-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 16));
|
|
@@ -3419,7 +3458,7 @@ slot[name=icon] {
|
|
|
3419
3458
|
gap: 8px;
|
|
3420
3459
|
}/**
|
|
3421
3460
|
* Do not edit directly
|
|
3422
|
-
* Generated on
|
|
3461
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
3423
3462
|
*/
|
|
3424
3463
|
.control {
|
|
3425
3464
|
display: inline-block;
|
|
@@ -3444,7 +3483,7 @@ slot[name=icon] {
|
|
|
3444
3483
|
margin-block-start: 16px;
|
|
3445
3484
|
}/**
|
|
3446
3485
|
* Do not edit directly
|
|
3447
|
-
* Generated on
|
|
3486
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
3448
3487
|
*/
|
|
3449
3488
|
.control {
|
|
3450
3489
|
pointer-events: none;
|
|
@@ -3459,7 +3498,7 @@ slot[name=icon] {
|
|
|
3459
3498
|
font: var(--vvd-typography-base-bold);
|
|
3460
3499
|
}/**
|
|
3461
3500
|
* Do not edit directly
|
|
3462
|
-
* Generated on
|
|
3501
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
3463
3502
|
*/
|
|
3464
3503
|
@supports selector(:focus-visible) {
|
|
3465
3504
|
:host(:focus-visible) {
|
|
@@ -3587,7 +3626,574 @@ slot[name=icon] {
|
|
|
3587
3626
|
color: var(--vvd-color-neutral-600);
|
|
3588
3627
|
}/**
|
|
3589
3628
|
* Do not edit directly
|
|
3590
|
-
* Generated on
|
|
3629
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
3630
|
+
*/
|
|
3631
|
+
.wrapper {
|
|
3632
|
+
display: grid;
|
|
3633
|
+
column-gap: 8px;
|
|
3634
|
+
grid-template-columns: repeat(7, auto);
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
.base {
|
|
3638
|
+
display: inline-flex;
|
|
3639
|
+
box-sizing: border-box;
|
|
3640
|
+
align-items: center;
|
|
3641
|
+
justify-content: center;
|
|
3642
|
+
background-color: var(--_appearance-color-fill);
|
|
3643
|
+
block-size: 40px;
|
|
3644
|
+
border-radius: 6px;
|
|
3645
|
+
box-shadow: inset 0 0 0 1px var(--_appearance-color-outline);
|
|
3646
|
+
color: var(--_appearance-color-text);
|
|
3647
|
+
padding-inline: 16px;
|
|
3648
|
+
}
|
|
3649
|
+
.base.connotation-cta {
|
|
3650
|
+
/* @cssprop [--vvd-appearanceUI-cta-faint=var(--vvd-color-cta-50)] */
|
|
3651
|
+
--_connotation-color-faint: var(--vvd-appearanceUI-cta-faint, var(--vvd-color-cta-50));
|
|
3652
|
+
/* @cssprop [--vvd-appearanceUI-cta-soft=var(--vvd-color-cta-100)] */
|
|
3653
|
+
--_connotation-color-soft: var(--vvd-appearanceUI-cta-soft, var(--vvd-color-cta-100));
|
|
3654
|
+
/* @cssprop [--vvd-appearanceUI-cta-dim=var(--vvd-color-cta-200)] */
|
|
3655
|
+
--_connotation-color-dim: var(--vvd-appearanceUI-cta-dim, var(--vvd-color-cta-200));
|
|
3656
|
+
/* @cssprop [--vvd-appearanceUI-cta-pale=var(--vvd-color-cta-300)] */
|
|
3657
|
+
--_connotation-color-pale: var(--vvd-appearanceUI-cta-pale, var(--vvd-color-cta-300));
|
|
3658
|
+
/* @cssprop [--vvd-appearanceUI-cta-light=var(--vvd-color-cta-400)] */
|
|
3659
|
+
--_connotation-color-light: var(--vvd-appearanceUI-cta-light, var(--vvd-color-cta-400));
|
|
3660
|
+
/* @cssprop [--vvd-appearanceUI-cta-primary=var(--vvd-color-cta-500)] */
|
|
3661
|
+
--_connotation-color-primary: var(--vvd-appearanceUI-cta-primary, var(--vvd-color-cta-500));
|
|
3662
|
+
/* @cssprop [--vvd-appearanceUI-cta-primary-text=var(--vvd-color-canvas)] */
|
|
3663
|
+
--_connotation-color-primary-text: var(--vvd-appearanceUI-cta-primary-text, var(--vvd-color-canvas));
|
|
3664
|
+
/* @cssprop [--vvd-appearanceUI-cta-primary-increment=var(--vvd-color-cta-600)] */
|
|
3665
|
+
--_connotation-color-primary-increment: var(--vvd-appearanceUI-cta-primary-increment, var(--vvd-color-cta-600));
|
|
3666
|
+
/* @cssprop [--vvd-appearanceUI-cta-firm=var(--vvd-color-cta-600)] */
|
|
3667
|
+
--_connotation-color-firm: var(--vvd-appearanceUI-cta-firm, var(--vvd-color-cta-600));
|
|
3668
|
+
/* @cssprop [--vvd-appearanceUI-cta-fierce=var(--vvd-color-cta-700)] */
|
|
3669
|
+
--_connotation-color-fierce: var(--vvd-appearanceUI-cta-fierce, var(--vvd-color-cta-700));
|
|
3670
|
+
/* @cssprop [--vvd-appearanceUI-cta-contrast=var(--vvd-color-cta-800)] */
|
|
3671
|
+
--_connotation-color-contrast: var(--vvd-appearanceUI-cta-contrast, var(--vvd-color-cta-800));
|
|
3672
|
+
/* @cssprop [--vvd-appearanceUI-cta-backdrop=var(--vvd-color-cta-50)] */
|
|
3673
|
+
--_connotation-color-backdrop: var(--vvd-appearanceUI-cta-backdrop, var(--vvd-color-cta-50));
|
|
3674
|
+
/* @cssprop [--vvd-appearanceUI-cta-intermediate=var(--vvd-color-cta-500)] */
|
|
3675
|
+
--_connotation-color-intermediate: var(--vvd-appearanceUI-cta-intermediate, var(--vvd-color-cta-500));
|
|
3676
|
+
}
|
|
3677
|
+
.base.connotation-success {
|
|
3678
|
+
/* @cssprop [--vvd-appearanceUI-success-faint=var(--vvd-color-success-50)] */
|
|
3679
|
+
--_connotation-color-faint: var(--vvd-appearanceUI-success-faint, var(--vvd-color-success-50));
|
|
3680
|
+
/* @cssprop [--vvd-appearanceUI-success-soft=var(--vvd-color-success-100)] */
|
|
3681
|
+
--_connotation-color-soft: var(--vvd-appearanceUI-success-soft, var(--vvd-color-success-100));
|
|
3682
|
+
/* @cssprop [--vvd-appearanceUI-success-dim=var(--vvd-color-success-200)] */
|
|
3683
|
+
--_connotation-color-dim: var(--vvd-appearanceUI-success-dim, var(--vvd-color-success-200));
|
|
3684
|
+
/* @cssprop [--vvd-appearanceUI-success-pale=var(--vvd-color-success-300)] */
|
|
3685
|
+
--_connotation-color-pale: var(--vvd-appearanceUI-success-pale, var(--vvd-color-success-300));
|
|
3686
|
+
/* @cssprop [--vvd-appearanceUI-success-light=var(--vvd-color-success-400)] */
|
|
3687
|
+
--_connotation-color-light: var(--vvd-appearanceUI-success-light, var(--vvd-color-success-400));
|
|
3688
|
+
/* @cssprop [--vvd-appearanceUI-success-primary=var(--vvd-color-success-500)] */
|
|
3689
|
+
--_connotation-color-primary: var(--vvd-appearanceUI-success-primary, var(--vvd-color-success-500));
|
|
3690
|
+
/* @cssprop [--vvd-appearanceUI-success-primary-text=var(--vvd-color-canvas)] */
|
|
3691
|
+
--_connotation-color-primary-text: var(--vvd-appearanceUI-success-primary-text, var(--vvd-color-canvas));
|
|
3692
|
+
/* @cssprop [--vvd-appearanceUI-success-primary-increment=var(--vvd-color-success-600)] */
|
|
3693
|
+
--_connotation-color-primary-increment: var(--vvd-appearanceUI-success-primary-increment, var(--vvd-color-success-600));
|
|
3694
|
+
/* @cssprop [--vvd-appearanceUI-success-firm=var(--vvd-color-success-600)] */
|
|
3695
|
+
--_connotation-color-firm: var(--vvd-appearanceUI-success-firm, var(--vvd-color-success-600));
|
|
3696
|
+
/* @cssprop [--vvd-appearanceUI-success-fierce=var(--vvd-color-success-700)] */
|
|
3697
|
+
--_connotation-color-fierce: var(--vvd-appearanceUI-success-fierce, var(--vvd-color-success-700));
|
|
3698
|
+
/* @cssprop [--vvd-appearanceUI-success-contrast=var(--vvd-color-success-800)] */
|
|
3699
|
+
--_connotation-color-contrast: var(--vvd-appearanceUI-success-contrast, var(--vvd-color-success-800));
|
|
3700
|
+
/* @cssprop [--vvd-appearanceUI-success-backdrop=var(--vvd-color-success-50)] */
|
|
3701
|
+
--_connotation-color-backdrop: var(--vvd-appearanceUI-success-backdrop, var(--vvd-color-success-50));
|
|
3702
|
+
/* @cssprop [--vvd-appearanceUI-success-intermediate=var(--vvd-color-success-500)] */
|
|
3703
|
+
--_connotation-color-intermediate: var(--vvd-appearanceUI-success-intermediate, var(--vvd-color-success-500));
|
|
3704
|
+
}
|
|
3705
|
+
.base.connotation-alert {
|
|
3706
|
+
/* @cssprop [--vvd-appearanceUI-alert-faint=var(--vvd-color-alert-50)] */
|
|
3707
|
+
--_connotation-color-faint: var(--vvd-appearanceUI-alert-faint, var(--vvd-color-alert-50));
|
|
3708
|
+
/* @cssprop [--vvd-appearanceUI-alert-soft=var(--vvd-color-alert-100)] */
|
|
3709
|
+
--_connotation-color-soft: var(--vvd-appearanceUI-alert-soft, var(--vvd-color-alert-100));
|
|
3710
|
+
/* @cssprop [--vvd-appearanceUI-alert-dim=var(--vvd-color-alert-200)] */
|
|
3711
|
+
--_connotation-color-dim: var(--vvd-appearanceUI-alert-dim, var(--vvd-color-alert-200));
|
|
3712
|
+
/* @cssprop [--vvd-appearanceUI-alert-pale=var(--vvd-color-alert-300)] */
|
|
3713
|
+
--_connotation-color-pale: var(--vvd-appearanceUI-alert-pale, var(--vvd-color-alert-300));
|
|
3714
|
+
/* @cssprop [--vvd-appearanceUI-alert-light=var(--vvd-color-alert-400)] */
|
|
3715
|
+
--_connotation-color-light: var(--vvd-appearanceUI-alert-light, var(--vvd-color-alert-400));
|
|
3716
|
+
/* @cssprop [--vvd-appearanceUI-alert-primary=var(--vvd-color-alert-500)] */
|
|
3717
|
+
--_connotation-color-primary: var(--vvd-appearanceUI-alert-primary, var(--vvd-color-alert-500));
|
|
3718
|
+
/* @cssprop [--vvd-appearanceUI-alert-primary-text=var(--vvd-color-canvas)] */
|
|
3719
|
+
--_connotation-color-primary-text: var(--vvd-appearanceUI-alert-primary-text, var(--vvd-color-canvas));
|
|
3720
|
+
/* @cssprop [--vvd-appearanceUI-alert-primary-increment=var(--vvd-color-alert-600)] */
|
|
3721
|
+
--_connotation-color-primary-increment: var(--vvd-appearanceUI-alert-primary-increment, var(--vvd-color-alert-600));
|
|
3722
|
+
/* @cssprop [--vvd-appearanceUI-alert-firm=var(--vvd-color-alert-600)] */
|
|
3723
|
+
--_connotation-color-firm: var(--vvd-appearanceUI-alert-firm, var(--vvd-color-alert-600));
|
|
3724
|
+
/* @cssprop [--vvd-appearanceUI-alert-fierce=var(--vvd-color-alert-700)] */
|
|
3725
|
+
--_connotation-color-fierce: var(--vvd-appearanceUI-alert-fierce, var(--vvd-color-alert-700));
|
|
3726
|
+
/* @cssprop [--vvd-appearanceUI-alert-contrast=var(--vvd-color-alert-800)] */
|
|
3727
|
+
--_connotation-color-contrast: var(--vvd-appearanceUI-alert-contrast, var(--vvd-color-alert-800));
|
|
3728
|
+
/* @cssprop [--vvd-appearanceUI-alert-backdrop=var(--vvd-color-alert-50)] */
|
|
3729
|
+
--_connotation-color-backdrop: var(--vvd-appearanceUI-alert-backdrop, var(--vvd-color-alert-50));
|
|
3730
|
+
/* @cssprop [--vvd-appearanceUI-alert-intermediate=var(--vvd-color-alert-500)] */
|
|
3731
|
+
--_connotation-color-intermediate: var(--vvd-appearanceUI-alert-intermediate, var(--vvd-color-alert-500));
|
|
3732
|
+
}
|
|
3733
|
+
.base.connotation-warning {
|
|
3734
|
+
/* @cssprop [--vvd-appearanceUI-warning-faint=var(--vvd-color-warning-50)] */
|
|
3735
|
+
--_connotation-color-faint: var(--vvd-appearanceUI-warning-faint, var(--vvd-color-warning-50));
|
|
3736
|
+
/* @cssprop [--vvd-appearanceUI-warning-soft=var(--vvd-color-warning-100)] */
|
|
3737
|
+
--_connotation-color-soft: var(--vvd-appearanceUI-warning-soft, var(--vvd-color-warning-100));
|
|
3738
|
+
/* @cssprop [--vvd-appearanceUI-warning-dim=var(--vvd-color-warning-200)] */
|
|
3739
|
+
--_connotation-color-dim: var(--vvd-appearanceUI-warning-dim, var(--vvd-color-warning-200));
|
|
3740
|
+
/* @cssprop [--vvd-appearanceUI-warning-pale=var(--vvd-color-warning-300)] */
|
|
3741
|
+
--_connotation-color-pale: var(--vvd-appearanceUI-warning-pale, var(--vvd-color-warning-300));
|
|
3742
|
+
/* @cssprop [--vvd-appearanceUI-warning-light=var(--vvd-color-warning-400)] */
|
|
3743
|
+
--_connotation-color-light: var(--vvd-appearanceUI-warning-light, var(--vvd-color-warning-400));
|
|
3744
|
+
/* @cssprop [--vvd-appearanceUI-warning-primary=var(--vvd-color-warning-300)] */
|
|
3745
|
+
--_connotation-color-primary: var(--vvd-appearanceUI-warning-primary, var(--vvd-color-warning-300));
|
|
3746
|
+
/* @cssprop [--vvd-appearanceUI-warning-primary-text=var(--vvd-color-canvas-text)] */
|
|
3747
|
+
--_connotation-color-primary-text: var(--vvd-appearanceUI-warning-primary-text, var(--vvd-color-canvas-text));
|
|
3748
|
+
/* @cssprop [--vvd-appearanceUI-warning-primary-increment=var(--vvd-color-warning-600)] */
|
|
3749
|
+
--_connotation-color-primary-increment: var(--vvd-appearanceUI-warning-primary-increment, var(--vvd-color-warning-600));
|
|
3750
|
+
/* @cssprop [--vvd-appearanceUI-warning-firm=var(--vvd-color-warning-600)] */
|
|
3751
|
+
--_connotation-color-firm: var(--vvd-appearanceUI-warning-firm, var(--vvd-color-warning-600));
|
|
3752
|
+
/* @cssprop [--vvd-appearanceUI-warning-fierce=var(--vvd-color-warning-700)] */
|
|
3753
|
+
--_connotation-color-fierce: var(--vvd-appearanceUI-warning-fierce, var(--vvd-color-warning-700));
|
|
3754
|
+
/* @cssprop [--vvd-appearanceUI-warning-contrast=var(--vvd-color-warning-800)] */
|
|
3755
|
+
--_connotation-color-contrast: var(--vvd-appearanceUI-warning-contrast, var(--vvd-color-warning-800));
|
|
3756
|
+
/* @cssprop [--vvd-appearanceUI-warning-backdrop=var(--vvd-color-warning-50)] */
|
|
3757
|
+
--_connotation-color-backdrop: var(--vvd-appearanceUI-warning-backdrop, var(--vvd-color-warning-50));
|
|
3758
|
+
/* @cssprop [--vvd-appearanceUI-warning-intermediate=var(--vvd-color-warning-300)] */
|
|
3759
|
+
--_connotation-color-intermediate: var(--vvd-appearanceUI-warning-intermediate, var(--vvd-color-warning-300));
|
|
3760
|
+
}
|
|
3761
|
+
.base.connotation-information {
|
|
3762
|
+
/* @cssprop [--vvd-appearanceUI-information-faint=var(--vvd-color-information-50)] */
|
|
3763
|
+
--_connotation-color-faint: var(--vvd-appearanceUI-information-faint, var(--vvd-color-information-50));
|
|
3764
|
+
/* @cssprop [--vvd-appearanceUI-information-soft=var(--vvd-color-information-100)] */
|
|
3765
|
+
--_connotation-color-soft: var(--vvd-appearanceUI-information-soft, var(--vvd-color-information-100));
|
|
3766
|
+
/* @cssprop [--vvd-appearanceUI-information-dim=var(--vvd-color-information-200)] */
|
|
3767
|
+
--_connotation-color-dim: var(--vvd-appearanceUI-information-dim, var(--vvd-color-information-200));
|
|
3768
|
+
/* @cssprop [--vvd-appearanceUI-information-pale=var(--vvd-color-information-300)] */
|
|
3769
|
+
--_connotation-color-pale: var(--vvd-appearanceUI-information-pale, var(--vvd-color-information-300));
|
|
3770
|
+
/* @cssprop [--vvd-appearanceUI-information-light=var(--vvd-color-information-400)] */
|
|
3771
|
+
--_connotation-color-light: var(--vvd-appearanceUI-information-light, var(--vvd-color-information-400));
|
|
3772
|
+
/* @cssprop [--vvd-appearanceUI-information-primary=var(--vvd-color-information-500)] */
|
|
3773
|
+
--_connotation-color-primary: var(--vvd-appearanceUI-information-primary, var(--vvd-color-information-500));
|
|
3774
|
+
/* @cssprop [--vvd-appearanceUI-information-primary-text=var(--vvd-color-canvas)] */
|
|
3775
|
+
--_connotation-color-primary-text: var(--vvd-appearanceUI-information-primary-text, var(--vvd-color-canvas));
|
|
3776
|
+
/* @cssprop [--vvd-appearanceUI-information-primary-increment=var(--vvd-color-information-600)] */
|
|
3777
|
+
--_connotation-color-primary-increment: var(--vvd-appearanceUI-information-primary-increment, var(--vvd-color-information-600));
|
|
3778
|
+
/* @cssprop [--vvd-appearanceUI-information-firm=var(--vvd-color-information-600)] */
|
|
3779
|
+
--_connotation-color-firm: var(--vvd-appearanceUI-information-firm, var(--vvd-color-information-600));
|
|
3780
|
+
/* @cssprop [--vvd-appearanceUI-information-fierce=var(--vvd-color-information-700)] */
|
|
3781
|
+
--_connotation-color-fierce: var(--vvd-appearanceUI-information-fierce, var(--vvd-color-information-700));
|
|
3782
|
+
/* @cssprop [--vvd-appearanceUI-information-contrast=var(--vvd-color-information-800)] */
|
|
3783
|
+
--_connotation-color-contrast: var(--vvd-appearanceUI-information-contrast, var(--vvd-color-information-800));
|
|
3784
|
+
/* @cssprop [--vvd-appearanceUI-information-backdrop=var(--vvd-color-information-50)] */
|
|
3785
|
+
--_connotation-color-backdrop: var(--vvd-appearanceUI-information-backdrop, var(--vvd-color-information-50));
|
|
3786
|
+
/* @cssprop [--vvd-appearanceUI-information-intermediate=var(--vvd-color-information-500)] */
|
|
3787
|
+
--_connotation-color-intermediate: var(--vvd-appearanceUI-information-intermediate, var(--vvd-color-information-500));
|
|
3788
|
+
}
|
|
3789
|
+
.base.connotation-announcement {
|
|
3790
|
+
/* @cssprop [--vvd-appearanceUI-announcement-faint=var(--vvd-color-announcement-50)] */
|
|
3791
|
+
--_connotation-color-faint: var(--vvd-appearanceUI-announcement-faint, var(--vvd-color-announcement-50));
|
|
3792
|
+
/* @cssprop [--vvd-appearanceUI-announcement-soft=var(--vvd-color-announcement-100)] */
|
|
3793
|
+
--_connotation-color-soft: var(--vvd-appearanceUI-announcement-soft, var(--vvd-color-announcement-100));
|
|
3794
|
+
/* @cssprop [--vvd-appearanceUI-announcement-dim=var(--vvd-color-announcement-200)] */
|
|
3795
|
+
--_connotation-color-dim: var(--vvd-appearanceUI-announcement-dim, var(--vvd-color-announcement-200));
|
|
3796
|
+
/* @cssprop [--vvd-appearanceUI-announcement-pale=var(--vvd-color-announcement-300)] */
|
|
3797
|
+
--_connotation-color-pale: var(--vvd-appearanceUI-announcement-pale, var(--vvd-color-announcement-300));
|
|
3798
|
+
/* @cssprop [--vvd-appearanceUI-announcement-light=var(--vvd-color-announcement-400)] */
|
|
3799
|
+
--_connotation-color-light: var(--vvd-appearanceUI-announcement-light, var(--vvd-color-announcement-400));
|
|
3800
|
+
/* @cssprop [--vvd-appearanceUI-announcement-primary=var(--vvd-color-announcement-500)] */
|
|
3801
|
+
--_connotation-color-primary: var(--vvd-appearanceUI-announcement-primary, var(--vvd-color-announcement-500));
|
|
3802
|
+
/* @cssprop [--vvd-appearanceUI-announcement-primary-text=var(--vvd-color-canvas)] */
|
|
3803
|
+
--_connotation-color-primary-text: var(--vvd-appearanceUI-announcement-primary-text, var(--vvd-color-canvas));
|
|
3804
|
+
/* @cssprop [--vvd-appearanceUI-announcement-primary-increment=var(--vvd-color-announcement-600)] */
|
|
3805
|
+
--_connotation-color-primary-increment: var(--vvd-appearanceUI-announcement-primary-increment, var(--vvd-color-announcement-600));
|
|
3806
|
+
/* @cssprop [--vvd-appearanceUI-announcement-firm=var(--vvd-color-announcement-600)] */
|
|
3807
|
+
--_connotation-color-firm: var(--vvd-appearanceUI-announcement-firm, var(--vvd-color-announcement-600));
|
|
3808
|
+
/* @cssprop [--vvd-appearanceUI-announcement-fierce=var(--vvd-color-announcement-700)] */
|
|
3809
|
+
--_connotation-color-fierce: var(--vvd-appearanceUI-announcement-fierce, var(--vvd-color-announcement-700));
|
|
3810
|
+
/* @cssprop [--vvd-appearanceUI-announcement-contrast=var(--vvd-color-announcement-800)] */
|
|
3811
|
+
--_connotation-color-contrast: var(--vvd-appearanceUI-announcement-contrast, var(--vvd-color-announcement-800));
|
|
3812
|
+
/* @cssprop [--vvd-appearanceUI-announcement-backdrop=var(--vvd-color-announcement-50)] */
|
|
3813
|
+
--_connotation-color-backdrop: var(--vvd-appearanceUI-announcement-backdrop, var(--vvd-color-announcement-50));
|
|
3814
|
+
/* @cssprop [--vvd-appearanceUI-announcement-intermediate=var(--vvd-color-announcement-500)] */
|
|
3815
|
+
--_connotation-color-intermediate: var(--vvd-appearanceUI-announcement-intermediate, var(--vvd-color-announcement-500));
|
|
3816
|
+
}
|
|
3817
|
+
.base:not(.connotation-cta, .connotation-success, .connotation-alert, .connotation-warning, .connotation-information, .connotation-announcement) {
|
|
3818
|
+
/* @cssprop [--vvd-appearanceUI-accent-faint=var(--vvd-color-neutral-50)] */
|
|
3819
|
+
--_connotation-color-faint: var(--vvd-appearanceUI-accent-faint, var(--vvd-color-neutral-50));
|
|
3820
|
+
/* @cssprop [--vvd-appearanceUI-accent-soft=var(--vvd-color-neutral-100)] */
|
|
3821
|
+
--_connotation-color-soft: var(--vvd-appearanceUI-accent-soft, var(--vvd-color-neutral-100));
|
|
3822
|
+
/* @cssprop [--vvd-appearanceUI-accent-dim=var(--vvd-color-neutral-200)] */
|
|
3823
|
+
--_connotation-color-dim: var(--vvd-appearanceUI-accent-dim, var(--vvd-color-neutral-200));
|
|
3824
|
+
/* @cssprop [--vvd-appearanceUI-accent-pale=var(--vvd-color-neutral-300)] */
|
|
3825
|
+
--_connotation-color-pale: var(--vvd-appearanceUI-accent-pale, var(--vvd-color-neutral-300));
|
|
3826
|
+
/* @cssprop [--vvd-appearanceUI-accent-light=var(--vvd-color-neutral-400)] */
|
|
3827
|
+
--_connotation-color-light: var(--vvd-appearanceUI-accent-light, var(--vvd-color-neutral-400));
|
|
3828
|
+
/* @cssprop [--vvd-appearanceUI-accent-primary=var(--vvd-color-canvas-text)] */
|
|
3829
|
+
--_connotation-color-primary: var(--vvd-appearanceUI-accent-primary, var(--vvd-color-canvas-text));
|
|
3830
|
+
/* @cssprop [--vvd-appearanceUI-accent-primary-text=var(--vvd-color-canvas)] */
|
|
3831
|
+
--_connotation-color-primary-text: var(--vvd-appearanceUI-accent-primary-text, var(--vvd-color-canvas));
|
|
3832
|
+
/* @cssprop [--vvd-appearanceUI-accent-primary-increment=var(--vvd-color-neutral-800)] */
|
|
3833
|
+
--_connotation-color-primary-increment: var(--vvd-appearanceUI-accent-primary-increment, var(--vvd-color-neutral-800));
|
|
3834
|
+
/* @cssprop [--vvd-appearanceUI-accent-firm=var(--vvd-color-canvas-text)] */
|
|
3835
|
+
--_connotation-color-firm: var(--vvd-appearanceUI-accent-firm, var(--vvd-color-canvas-text));
|
|
3836
|
+
/* @cssprop [--vvd-appearanceUI-accent-fierce=var(--vvd-color-neutral-700)] */
|
|
3837
|
+
--_connotation-color-fierce: var(--vvd-appearanceUI-accent-fierce, var(--vvd-color-neutral-700));
|
|
3838
|
+
/* @cssprop [--vvd-appearanceUI-accent-contrast=var(--vvd-color-neutral-800)] */
|
|
3839
|
+
--_connotation-color-contrast: var(--vvd-appearanceUI-accent-contrast, var(--vvd-color-neutral-800));
|
|
3840
|
+
/* @cssprop [--vvd-appearanceUI-accent-backdrop=var(--vvd-color-canvas)] */
|
|
3841
|
+
--_connotation-color-backdrop: var(--vvd-appearanceUI-accent-backdrop, var(--vvd-color-canvas));
|
|
3842
|
+
/* @cssprop [--vvd-appearanceUI-accent-intermediate=var(--vvd-color-neutral-500)] */
|
|
3843
|
+
--_connotation-color-intermediate: var(--vvd-appearanceUI-accent-intermediate, var(--vvd-color-neutral-500));
|
|
3844
|
+
}
|
|
3845
|
+
.base {
|
|
3846
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
3847
|
+
--_appearance-color-fill: var(--_connotation-color-primary);
|
|
3848
|
+
--_appearance-color-outline: transparent;
|
|
3849
|
+
}
|
|
3850
|
+
.base.appearance-ghost {
|
|
3851
|
+
--_appearance-color-text: var(--_connotation-color-primary);
|
|
3852
|
+
--_appearance-color-fill: transparent;
|
|
3853
|
+
--_appearance-color-outline: transparent;
|
|
3854
|
+
}
|
|
3855
|
+
.base.appearance-outlined {
|
|
3856
|
+
--_appearance-color-text: var(--_connotation-color-firm);
|
|
3857
|
+
--_appearance-color-fill: transparent;
|
|
3858
|
+
--_appearance-color-outline: var(--_connotation-color-firm);
|
|
3859
|
+
}
|
|
3860
|
+
.base.appearance-duotone {
|
|
3861
|
+
--_appearance-color-text: var(--_connotation-color-firm);
|
|
3862
|
+
--_appearance-color-fill: transparent;
|
|
3863
|
+
--_appearance-color-outline: var(--_connotation-color-pale);
|
|
3864
|
+
}
|
|
3865
|
+
.base.appearance-subtle {
|
|
3866
|
+
--_appearance-color-text: var(--_connotation-color-contrast);
|
|
3867
|
+
--_appearance-color-fill: var(--_connotation-color-soft);
|
|
3868
|
+
--_appearance-color-outline: transparent;
|
|
3869
|
+
}
|
|
3870
|
+
.base.appearance-fieldset {
|
|
3871
|
+
--_appearance-color-text: var(--vvd-color-canvas-text);
|
|
3872
|
+
--_appearance-color-fill: var(--_connotation-color-backdrop);
|
|
3873
|
+
--_appearance-color-outline: var(--_connotation-color-intermediate);
|
|
3874
|
+
}
|
|
3875
|
+
.base.appearance-listitem {
|
|
3876
|
+
--_appearance-color-text: var(--_connotation-color-primary);
|
|
3877
|
+
--_appearance-color-fill: transparent;
|
|
3878
|
+
--_appearance-color-outline: transparent;
|
|
3879
|
+
}
|
|
3880
|
+
.base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)) {
|
|
3881
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
3882
|
+
--_appearance-color-fill: var(--_connotation-color-primary-increment);
|
|
3883
|
+
--_appearance-color-outline: transparent;
|
|
3884
|
+
}
|
|
3885
|
+
.base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-ghost {
|
|
3886
|
+
--_appearance-color-text: var(--_connotation-color-primary);
|
|
3887
|
+
--_appearance-color-fill: var(--_connotation-color-faint);
|
|
3888
|
+
--_appearance-color-outline: transparent;
|
|
3889
|
+
}
|
|
3890
|
+
.base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-outlined {
|
|
3891
|
+
--_appearance-color-text: var(--_connotation-color-firm);
|
|
3892
|
+
--_appearance-color-fill: var(--_connotation-color-faint);
|
|
3893
|
+
--_appearance-color-outline: var(--_connotation-color-firm);
|
|
3894
|
+
}
|
|
3895
|
+
.base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-duotone {
|
|
3896
|
+
--_appearance-color-text: var(--_connotation-color-firm);
|
|
3897
|
+
--_appearance-color-fill: transparent;
|
|
3898
|
+
--_appearance-color-outline: var(--_connotation-color-firm);
|
|
3899
|
+
}
|
|
3900
|
+
.base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-subtle {
|
|
3901
|
+
--_appearance-color-text: var(--_connotation-color-contrast);
|
|
3902
|
+
--_appearance-color-fill: var(--_connotation-color-faint);
|
|
3903
|
+
--_appearance-color-outline: transparent;
|
|
3904
|
+
}
|
|
3905
|
+
.base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-fieldset {
|
|
3906
|
+
--_appearance-color-text: var(--vvd-color-canvas-text);
|
|
3907
|
+
--_appearance-color-fill: var(--_connotation-color-backdrop);
|
|
3908
|
+
--_appearance-color-outline: var(--_connotation-color-firm);
|
|
3909
|
+
}
|
|
3910
|
+
.base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-listitem {
|
|
3911
|
+
--_appearance-color-text: var(--_connotation-color-primary);
|
|
3912
|
+
--_appearance-color-fill: var(--_connotation-color-faint);
|
|
3913
|
+
--_appearance-color-outline: transparent;
|
|
3914
|
+
}
|
|
3915
|
+
.base:where(:active, .active):where(:not(:disabled, .disabled)) {
|
|
3916
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
3917
|
+
--_appearance-color-fill: var(--_connotation-color-fierce);
|
|
3918
|
+
--_appearance-color-outline: transparent;
|
|
3919
|
+
}
|
|
3920
|
+
.base:where(:active, .active):where(:not(:disabled, .disabled)).appearance-ghost {
|
|
3921
|
+
--_appearance-color-text: var(--_connotation-color-primary);
|
|
3922
|
+
--_appearance-color-fill: var(--_connotation-color-soft);
|
|
3923
|
+
--_appearance-color-outline: transparent;
|
|
3924
|
+
}
|
|
3925
|
+
.base:where(:active, .active):where(:not(:disabled, .disabled)).appearance-outlined {
|
|
3926
|
+
--_appearance-color-text: var(--_connotation-color-firm);
|
|
3927
|
+
--_appearance-color-fill: var(--_connotation-color-soft);
|
|
3928
|
+
--_appearance-color-outline: var(--_connotation-color-firm);
|
|
3929
|
+
}
|
|
3930
|
+
.base:where(:active, .active):where(:not(:disabled, .disabled)).appearance-duotone {
|
|
3931
|
+
--_appearance-color-text: var(--_connotation-color-firm);
|
|
3932
|
+
--_appearance-color-fill: var(--_connotation-color-faint);
|
|
3933
|
+
--_appearance-color-outline: var(--_connotation-color-pale);
|
|
3934
|
+
}
|
|
3935
|
+
.base:where(:active, .active):where(:not(:disabled, .disabled)).appearance-subtle {
|
|
3936
|
+
--_appearance-color-text: var(--_connotation-color-contrast);
|
|
3937
|
+
--_appearance-color-fill: var(--_connotation-color-dim);
|
|
3938
|
+
--_appearance-color-outline: transparent;
|
|
3939
|
+
}
|
|
3940
|
+
.base:where(:active, .active):where(:not(:disabled, .disabled)).appearance-fieldset {
|
|
3941
|
+
--_appearance-color-text: var(--vvd-color-canvas-text);
|
|
3942
|
+
--_appearance-color-fill: var(--_connotation-color-backdrop);
|
|
3943
|
+
--_appearance-color-outline: var(--_connotation-color-firm);
|
|
3944
|
+
}
|
|
3945
|
+
.base:where(:active, .active):where(:not(:disabled, .disabled)).appearance-listitem {
|
|
3946
|
+
--_appearance-color-text: var(--_connotation-color-primary);
|
|
3947
|
+
--_appearance-color-fill: var(--_connotation-color-soft);
|
|
3948
|
+
--_appearance-color-outline: transparent;
|
|
3949
|
+
}
|
|
3950
|
+
.base:where(.selected, [aria-current]):where(:not(:disabled, .disabled)) {
|
|
3951
|
+
--_appearance-color-text: notset;
|
|
3952
|
+
--_appearance-color-fill: notset;
|
|
3953
|
+
--_appearance-color-outline: transparent;
|
|
3954
|
+
}
|
|
3955
|
+
.base:where(.selected, [aria-current]):where(:not(:disabled, .disabled)).appearance-ghost {
|
|
3956
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
3957
|
+
--_appearance-color-fill: var(--_connotation-color-primary);
|
|
3958
|
+
--_appearance-color-outline: transparent;
|
|
3959
|
+
}
|
|
3960
|
+
.base:where(.selected, [aria-current]):where(:not(:disabled, .disabled)).appearance-outlined {
|
|
3961
|
+
--_appearance-color-text: notset;
|
|
3962
|
+
--_appearance-color-fill: notset;
|
|
3963
|
+
--_appearance-color-outline: notset;
|
|
3964
|
+
}
|
|
3965
|
+
.base:where(.selected, [aria-current]):where(:not(:disabled, .disabled)).appearance-duotone {
|
|
3966
|
+
--_appearance-color-text: var(--_connotation-color-firm);
|
|
3967
|
+
--_appearance-color-fill: var(--_connotation-color-soft);
|
|
3968
|
+
--_appearance-color-outline: var(--_connotation-color-pale);
|
|
3969
|
+
}
|
|
3970
|
+
.base:where(.selected, [aria-current]):where(:not(:disabled, .disabled)).appearance-subtle {
|
|
3971
|
+
--_appearance-color-text: var(--_connotation-color-contrast);
|
|
3972
|
+
--_appearance-color-fill: var(--_connotation-color-pale);
|
|
3973
|
+
--_appearance-color-outline: transparent;
|
|
3974
|
+
}
|
|
3975
|
+
.base:where(.selected, [aria-current]):where(:not(:disabled, .disabled)).appearance-fieldset {
|
|
3976
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
3977
|
+
--_appearance-color-fill: var(--_connotation-color-primary);
|
|
3978
|
+
--_appearance-color-outline: var(--_connotation-color-primary);
|
|
3979
|
+
}
|
|
3980
|
+
.base:where(.selected, [aria-current]):where(:not(:disabled, .disabled)).appearance-listitem {
|
|
3981
|
+
--_appearance-color-text: var(--_connotation-color-primary);
|
|
3982
|
+
--_appearance-color-fill: var(--_connotation-color-dim);
|
|
3983
|
+
--_appearance-color-outline: transparent;
|
|
3984
|
+
}
|
|
3985
|
+
.base:where(:checked, .checked):where(:not(:disabled, .disabled)) {
|
|
3986
|
+
--_appearance-color-text: notset;
|
|
3987
|
+
--_appearance-color-fill: notset;
|
|
3988
|
+
--_appearance-color-outline: transparent;
|
|
3989
|
+
}
|
|
3990
|
+
.base:where(:checked, .checked):where(:not(:disabled, .disabled)).appearance-ghost {
|
|
3991
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
3992
|
+
--_appearance-color-fill: var(--_connotation-color-primary);
|
|
3993
|
+
--_appearance-color-outline: transparent;
|
|
3994
|
+
}
|
|
3995
|
+
.base:where(:checked, .checked):where(:not(:disabled, .disabled)).appearance-outlined {
|
|
3996
|
+
--_appearance-color-text: notset;
|
|
3997
|
+
--_appearance-color-fill: notset;
|
|
3998
|
+
--_appearance-color-outline: notset;
|
|
3999
|
+
}
|
|
4000
|
+
.base:where(:checked, .checked):where(:not(:disabled, .disabled)).appearance-duotone {
|
|
4001
|
+
--_appearance-color-text: var(--_connotation-color-firm);
|
|
4002
|
+
--_appearance-color-fill: var(--_connotation-color-soft);
|
|
4003
|
+
--_appearance-color-outline: var(--_connotation-color-pale);
|
|
4004
|
+
}
|
|
4005
|
+
.base:where(:checked, .checked):where(:not(:disabled, .disabled)).appearance-subtle {
|
|
4006
|
+
--_appearance-color-text: var(--_connotation-color-contrast);
|
|
4007
|
+
--_appearance-color-fill: var(--_connotation-color-pale);
|
|
4008
|
+
--_appearance-color-outline: transparent;
|
|
4009
|
+
}
|
|
4010
|
+
.base:where(:checked, .checked):where(:not(:disabled, .disabled)).appearance-fieldset {
|
|
4011
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
4012
|
+
--_appearance-color-fill: var(--_connotation-color-primary);
|
|
4013
|
+
--_appearance-color-outline: var(--_connotation-color-primary);
|
|
4014
|
+
}
|
|
4015
|
+
.base:where(:checked, .checked):where(:not(:disabled, .disabled)).appearance-listitem {
|
|
4016
|
+
--_appearance-color-text: var(--_connotation-color-primary);
|
|
4017
|
+
--_appearance-color-fill: var(--_connotation-color-dim);
|
|
4018
|
+
--_appearance-color-outline: transparent;
|
|
4019
|
+
}
|
|
4020
|
+
.base:where(:checked, .checked):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)) {
|
|
4021
|
+
--_appearance-color-text: notset;
|
|
4022
|
+
--_appearance-color-fill: notset;
|
|
4023
|
+
--_appearance-color-outline: notset;
|
|
4024
|
+
}
|
|
4025
|
+
.base:where(:checked, .checked):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-ghost {
|
|
4026
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
4027
|
+
--_appearance-color-fill: var(--_connotation-color-primary-increment);
|
|
4028
|
+
--_appearance-color-outline: transparent;
|
|
4029
|
+
}
|
|
4030
|
+
.base:where(:checked, .checked):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-outlined {
|
|
4031
|
+
--_appearance-color-text: notset;
|
|
4032
|
+
--_appearance-color-fill: notset;
|
|
4033
|
+
--_appearance-color-outline: notset;
|
|
4034
|
+
}
|
|
4035
|
+
.base:where(:checked, .checked):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-duotone {
|
|
4036
|
+
--_appearance-color-text: var(--_connotation-color-firm);
|
|
4037
|
+
--_appearance-color-fill: var(--_connotation-color-faint);
|
|
4038
|
+
--_appearance-color-outline: var(--_connotation-color-firm);
|
|
4039
|
+
}
|
|
4040
|
+
.base:where(:checked, .checked):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-subtle {
|
|
4041
|
+
--_appearance-color-text: var(--_connotation-color-contrast);
|
|
4042
|
+
--_appearance-color-fill: var(--_connotation-color-pale);
|
|
4043
|
+
--_appearance-color-outline: transparent;
|
|
4044
|
+
}
|
|
4045
|
+
.base:where(:checked, .checked):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-fieldset {
|
|
4046
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
4047
|
+
--_appearance-color-fill: var(--_connotation-color-primary-increment);
|
|
4048
|
+
--_appearance-color-outline: var(--_connotation-color-primary);
|
|
4049
|
+
}
|
|
4050
|
+
.base:where(:checked, .checked):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-listitem {
|
|
4051
|
+
--_appearance-color-text: var(--_connotation-color-primary);
|
|
4052
|
+
--_appearance-color-fill: var(--_connotation-color-pale);
|
|
4053
|
+
--_appearance-color-outline: transparent;
|
|
4054
|
+
}
|
|
4055
|
+
.base:where(.selected, [aria-current]):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)) {
|
|
4056
|
+
--_appearance-color-text: notset;
|
|
4057
|
+
--_appearance-color-fill: notset;
|
|
4058
|
+
--_appearance-color-outline: notset;
|
|
4059
|
+
}
|
|
4060
|
+
.base:where(.selected, [aria-current]):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-ghost {
|
|
4061
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
4062
|
+
--_appearance-color-fill: var(--_connotation-color-primary-increment);
|
|
4063
|
+
--_appearance-color-outline: transparent;
|
|
4064
|
+
}
|
|
4065
|
+
.base:where(.selected, [aria-current]):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-outlined {
|
|
4066
|
+
--_appearance-color-text: notset;
|
|
4067
|
+
--_appearance-color-fill: notset;
|
|
4068
|
+
--_appearance-color-outline: notset;
|
|
4069
|
+
}
|
|
4070
|
+
.base:where(.selected, [aria-current]):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-duotone {
|
|
4071
|
+
--_appearance-color-text: var(--_connotation-color-firm);
|
|
4072
|
+
--_appearance-color-fill: var(--_connotation-color-faint);
|
|
4073
|
+
--_appearance-color-outline: var(--_connotation-color-firm);
|
|
4074
|
+
}
|
|
4075
|
+
.base:where(.selected, [aria-current]):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-subtle {
|
|
4076
|
+
--_appearance-color-text: var(--_connotation-color-contrast);
|
|
4077
|
+
--_appearance-color-fill: var(--_connotation-color-pale);
|
|
4078
|
+
--_appearance-color-outline: transparent;
|
|
4079
|
+
}
|
|
4080
|
+
.base:where(.selected, [aria-current]):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-fieldset {
|
|
4081
|
+
--_appearance-color-text: var(--_connotation-color-primary-text);
|
|
4082
|
+
--_appearance-color-fill: var(--_connotation-color-primary-increment);
|
|
4083
|
+
--_appearance-color-outline: var(--_connotation-color-primary);
|
|
4084
|
+
}
|
|
4085
|
+
.base:where(.selected, [aria-current]):where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)).appearance-listitem {
|
|
4086
|
+
--_appearance-color-text: var(--_connotation-color-primary);
|
|
4087
|
+
--_appearance-color-fill: var(--_connotation-color-pale);
|
|
4088
|
+
--_appearance-color-outline: transparent;
|
|
4089
|
+
}
|
|
4090
|
+
.base:where(:disabled, .disabled) {
|
|
4091
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4092
|
+
--_appearance-color-fill: var(--vvd-color-neutral-100);
|
|
4093
|
+
--_appearance-color-outline: transparent;
|
|
4094
|
+
}
|
|
4095
|
+
.base:where(:disabled, .disabled).appearance-ghost {
|
|
4096
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4097
|
+
--_appearance-color-fill: transparent;
|
|
4098
|
+
--_appearance-color-outline: transparent;
|
|
4099
|
+
}
|
|
4100
|
+
.base:where(:disabled, .disabled).appearance-outlined {
|
|
4101
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4102
|
+
--_appearance-color-fill: transparent;
|
|
4103
|
+
--_appearance-color-outline: var(--vvd-color-neutral-300);
|
|
4104
|
+
}
|
|
4105
|
+
.base:where(:disabled, .disabled).appearance-duotone {
|
|
4106
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4107
|
+
--_appearance-color-fill: transparent;
|
|
4108
|
+
--_appearance-color-outline: var(--vvd-color-neutral-100);
|
|
4109
|
+
}
|
|
4110
|
+
.base:where(:disabled, .disabled).appearance-subtle {
|
|
4111
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4112
|
+
--_appearance-color-fill: var(--vvd-color-neutral-100);
|
|
4113
|
+
--_appearance-color-outline: transparent;
|
|
4114
|
+
}
|
|
4115
|
+
.base:where(:disabled, .disabled).appearance-fieldset {
|
|
4116
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4117
|
+
--_appearance-color-fill: var(--vvd-color-neutral-100);
|
|
4118
|
+
--_appearance-color-outline: var(--vvd-color-neutral-300);
|
|
4119
|
+
}
|
|
4120
|
+
.base:where(:disabled, .disabled).appearance-listitem {
|
|
4121
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4122
|
+
--_appearance-color-fill: transparent;
|
|
4123
|
+
--_appearance-color-outline: transparent;
|
|
4124
|
+
}
|
|
4125
|
+
.base:where(.selected, [aria-current]):where(:disabled, .disabled) {
|
|
4126
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4127
|
+
--_appearance-color-fill: var(--vvd-color-neutral-100);
|
|
4128
|
+
--_appearance-color-outline: transparent;
|
|
4129
|
+
}
|
|
4130
|
+
.base:where(.selected, [aria-current]):where(:disabled, .disabled).appearance-ghost {
|
|
4131
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4132
|
+
--_appearance-color-fill: var(--vvd-color-neutral-200);
|
|
4133
|
+
--_appearance-color-outline: transparent;
|
|
4134
|
+
}
|
|
4135
|
+
.base:where(.selected, [aria-current]):where(:disabled, .disabled).appearance-outlined {
|
|
4136
|
+
--_appearance-color-text: notset;
|
|
4137
|
+
--_appearance-color-fill: notset;
|
|
4138
|
+
--_appearance-color-outline: notset;
|
|
4139
|
+
}
|
|
4140
|
+
.base:where(.selected, [aria-current]):where(:disabled, .disabled).appearance-duotone {
|
|
4141
|
+
--_appearance-color-text: notset;
|
|
4142
|
+
--_appearance-color-fill: notset;
|
|
4143
|
+
--_appearance-color-outline: notset;
|
|
4144
|
+
}
|
|
4145
|
+
.base:where(.selected, [aria-current]):where(:disabled, .disabled).appearance-subtle {
|
|
4146
|
+
--_appearance-color-text: notset;
|
|
4147
|
+
--_appearance-color-fill: notset;
|
|
4148
|
+
--_appearance-color-outline: notset;
|
|
4149
|
+
}
|
|
4150
|
+
.base:where(.selected, [aria-current]):where(:disabled, .disabled).appearance-fieldset {
|
|
4151
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4152
|
+
--_appearance-color-fill: var(--vvd-color-neutral-100);
|
|
4153
|
+
--_appearance-color-outline: var(--vvd-color-neutral-300);
|
|
4154
|
+
}
|
|
4155
|
+
.base:where(.selected, [aria-current]):where(:disabled, .disabled).appearance-listitem {
|
|
4156
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
4157
|
+
--_appearance-color-fill: var(--vvd-color-neutral-200);
|
|
4158
|
+
--_appearance-color-outline: transparent;
|
|
4159
|
+
}
|
|
4160
|
+
.base:where(.readonly):where(:not(:disabled, .disabled)) {
|
|
4161
|
+
--_appearance-color-text: var(--vvd-color-neutral-800);
|
|
4162
|
+
--_appearance-color-fill: var(--vvd-color-neutral-500);
|
|
4163
|
+
--_appearance-color-outline: transparent;
|
|
4164
|
+
}
|
|
4165
|
+
.base:where(.readonly):where(:not(:disabled, .disabled)).appearance-ghost {
|
|
4166
|
+
--_appearance-color-text: var(--vvd-color-neutral-600);
|
|
4167
|
+
--_appearance-color-fill: transparent;
|
|
4168
|
+
--_appearance-color-outline: transparent;
|
|
4169
|
+
}
|
|
4170
|
+
.base:where(.readonly):where(:not(:disabled, .disabled)).appearance-outlined {
|
|
4171
|
+
--_appearance-color-text: var(--vvd-color-neutral-600);
|
|
4172
|
+
--_appearance-color-fill: transparent;
|
|
4173
|
+
--_appearance-color-outline: var(--vvd-color-neutral-400);
|
|
4174
|
+
}
|
|
4175
|
+
.base:where(.readonly):where(:not(:disabled, .disabled)).appearance-duotone {
|
|
4176
|
+
--_appearance-color-text: notset;
|
|
4177
|
+
--_appearance-color-fill: notset;
|
|
4178
|
+
--_appearance-color-outline: notset;
|
|
4179
|
+
}
|
|
4180
|
+
.base:where(.readonly):where(:not(:disabled, .disabled)).appearance-subtle {
|
|
4181
|
+
--_appearance-color-text: notset;
|
|
4182
|
+
--_appearance-color-fill: notset;
|
|
4183
|
+
--_appearance-color-outline: notset;
|
|
4184
|
+
}
|
|
4185
|
+
.base:where(.readonly):where(:not(:disabled, .disabled)).appearance-fieldset {
|
|
4186
|
+
--_appearance-color-text: var(--vvd-color-canvas-text);
|
|
4187
|
+
--_appearance-color-fill: var(--vvd-color-neutral-200);
|
|
4188
|
+
--_appearance-color-outline: var(--vvd-color-neutral-400);
|
|
4189
|
+
}
|
|
4190
|
+
.base:where(.readonly):where(:not(:disabled, .disabled)).appearance-listitem {
|
|
4191
|
+
--_appearance-color-text: var(--vvd-color-neutral-600);
|
|
4192
|
+
--_appearance-color-fill: transparent;
|
|
4193
|
+
--_appearance-color-outline: transparent;
|
|
4194
|
+
}/**
|
|
4195
|
+
* Do not edit directly
|
|
4196
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
3591
4197
|
*/
|
|
3592
4198
|
.base {
|
|
3593
4199
|
display: flex;
|
|
@@ -3599,7 +4205,7 @@ slot[name=icon] {
|
|
|
3599
4205
|
border-bottom: 1px solid var(--vvd-color-neutral-200);
|
|
3600
4206
|
}/**
|
|
3601
4207
|
* Do not edit directly
|
|
3602
|
-
* Generated on
|
|
4208
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
3603
4209
|
*/
|
|
3604
4210
|
:host {
|
|
3605
4211
|
display: flex;
|
|
@@ -3716,7 +4322,7 @@ button:not(:focus-visible) > .focus-indicator {
|
|
|
3716
4322
|
display: flex;
|
|
3717
4323
|
}/**
|
|
3718
4324
|
* Do not edit directly
|
|
3719
|
-
* Generated on
|
|
4325
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
3720
4326
|
*/
|
|
3721
4327
|
:host([disabled]) {
|
|
3722
4328
|
cursor: not-allowed;
|
|
@@ -3853,7 +4459,7 @@ dialog.fixed {
|
|
|
3853
4459
|
transform: translate(0, -50%);
|
|
3854
4460
|
}/**
|
|
3855
4461
|
* Do not edit directly
|
|
3856
|
-
* Generated on
|
|
4462
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
3857
4463
|
*/
|
|
3858
4464
|
.base {
|
|
3859
4465
|
box-sizing: border-box;
|
|
@@ -3887,6 +4493,15 @@ dialog.fixed {
|
|
|
3887
4493
|
background-color: var(--vvd-color-canvas-text, currentColor);
|
|
3888
4494
|
opacity: 0.5;
|
|
3889
4495
|
}
|
|
4496
|
+
.base:focus-visible {
|
|
4497
|
+
outline: none;
|
|
4498
|
+
}
|
|
4499
|
+
.base .focus-indicator {
|
|
4500
|
+
pointer-events: none;
|
|
4501
|
+
}
|
|
4502
|
+
.base:not(:focus-visible) .focus-indicator {
|
|
4503
|
+
display: none;
|
|
4504
|
+
}
|
|
3890
4505
|
|
|
3891
4506
|
.main-wrapper {
|
|
3892
4507
|
display: flex;
|
|
@@ -3994,7 +4609,7 @@ slot[name=main] {
|
|
|
3994
4609
|
border-radius: inherit;
|
|
3995
4610
|
}/**
|
|
3996
4611
|
* Do not edit directly
|
|
3997
|
-
* Generated on
|
|
4612
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
3998
4613
|
*/
|
|
3999
4614
|
.positioning-region {
|
|
4000
4615
|
display: flex;
|
|
@@ -4013,7 +4628,7 @@ label {
|
|
|
4013
4628
|
font: var(--vvd-typography-base);
|
|
4014
4629
|
}/**
|
|
4015
4630
|
* Do not edit directly
|
|
4016
|
-
* Generated on
|
|
4631
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
4017
4632
|
*/
|
|
4018
4633
|
@supports selector(:focus-visible) {
|
|
4019
4634
|
:host(:focus-visible) {
|
|
@@ -4146,7 +4761,7 @@ slot[name=icon] {
|
|
|
4146
4761
|
opacity: 0;
|
|
4147
4762
|
}/**
|
|
4148
4763
|
* Do not edit directly
|
|
4149
|
-
* Generated on
|
|
4764
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
4150
4765
|
*/
|
|
4151
4766
|
.base {
|
|
4152
4767
|
display: grid;
|
|
@@ -4264,7 +4879,7 @@ slot[name=icon] {
|
|
|
4264
4879
|
gap: 4px;
|
|
4265
4880
|
}/**
|
|
4266
4881
|
* Do not edit directly
|
|
4267
|
-
* Generated on
|
|
4882
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
4268
4883
|
*/
|
|
4269
4884
|
:host {
|
|
4270
4885
|
display: inline-flex;
|
|
@@ -4365,7 +4980,7 @@ slot[name=icon] {
|
|
|
4365
4980
|
justify-content: center;
|
|
4366
4981
|
background-color: var(--_appearance-color-fill);
|
|
4367
4982
|
block-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 20));
|
|
4368
|
-
border-radius:
|
|
4983
|
+
border-radius: 4px;
|
|
4369
4984
|
box-shadow: inset 0 0 0 2px var(--_appearance-color-outline);
|
|
4370
4985
|
color: var(--_appearance-color-text);
|
|
4371
4986
|
inline-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 20));
|
|
@@ -4414,7 +5029,7 @@ label {
|
|
|
4414
5029
|
--_low-ink-color: var(--vvd-color-neutral-600);
|
|
4415
5030
|
}/**
|
|
4416
5031
|
* Do not edit directly
|
|
4417
|
-
* Generated on
|
|
5032
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
4418
5033
|
*/
|
|
4419
5034
|
:host {
|
|
4420
5035
|
display: block;
|
|
@@ -4433,14 +5048,15 @@ label {
|
|
|
4433
5048
|
inline-size: 1px;
|
|
4434
5049
|
}/**
|
|
4435
5050
|
* Do not edit directly
|
|
4436
|
-
* Generated on
|
|
5051
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
4437
5052
|
*/
|
|
4438
5053
|
:host {
|
|
4439
5054
|
display: inline-block;
|
|
4440
5055
|
}
|
|
4441
5056
|
|
|
4442
5057
|
.base {
|
|
4443
|
-
--_text-field-gutter: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2.5);
|
|
5058
|
+
--_text-field-gutter-start: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2.5);
|
|
5059
|
+
--_text-field-gutter-end: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2.5);
|
|
4444
5060
|
--_text-field-icon-size: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2);
|
|
4445
5061
|
display: inline-grid;
|
|
4446
5062
|
width: 100%;
|
|
@@ -4487,6 +5103,26 @@ label {
|
|
|
4487
5103
|
--_appearance-color-fill: transparent;
|
|
4488
5104
|
--_appearance-color-outline: transparent;
|
|
4489
5105
|
}
|
|
5106
|
+
.base:where(.error):where(:not(:disabled, .disabled)) {
|
|
5107
|
+
--_appearance-color-text: notSet;
|
|
5108
|
+
--_appearance-color-fill: var(--vvd-color-alert-50);
|
|
5109
|
+
--_appearance-color-outline: var(--vvd-color-alert-500);
|
|
5110
|
+
}
|
|
5111
|
+
.base:where(.error):where(:not(:disabled, .disabled)).appearance-ghost {
|
|
5112
|
+
--_appearance-color-text: notSet;
|
|
5113
|
+
--_appearance-color-fill: var(--vvd-color-alert-50);
|
|
5114
|
+
--_appearance-color-outline: transparent;
|
|
5115
|
+
}
|
|
5116
|
+
.base:where(.success):where(:not(:disabled, .disabled)) {
|
|
5117
|
+
--_appearance-color-text: notSet;
|
|
5118
|
+
--_appearance-color-fill: var(--vvd-color-success-50);
|
|
5119
|
+
--_appearance-color-outline: var(--vvd-color-success-500);
|
|
5120
|
+
}
|
|
5121
|
+
.base:where(.success):where(:not(:disabled, .disabled)).appearance-ghost {
|
|
5122
|
+
--_appearance-color-text: notSet;
|
|
5123
|
+
--_appearance-color-fill: var(--vvd-color-success-50);
|
|
5124
|
+
--_appearance-color-outline: transparent;
|
|
5125
|
+
}
|
|
4490
5126
|
.base.connotation-success {
|
|
4491
5127
|
/* @cssprop [--vvd-text-field-success-primary=var(--vvd-color-success-500)] */
|
|
4492
5128
|
--_connotation-color-primary: var(--vvd-text-field-success-primary, var(--vvd-color-success-500));
|
|
@@ -4543,8 +5179,12 @@ label {
|
|
|
4543
5179
|
|
|
4544
5180
|
.label:not(slot),
|
|
4545
5181
|
.label::slotted(label) {
|
|
4546
|
-
|
|
4547
|
-
|
|
5182
|
+
/* As label is in light dom, use !important and initial to prevent values getting overridden by global CSS resets etc. */
|
|
5183
|
+
box-sizing: initial !important;
|
|
5184
|
+
padding: initial !important;
|
|
5185
|
+
margin: initial !important;
|
|
5186
|
+
color: var(--vvd-color-canvas-text) !important;
|
|
5187
|
+
contain: inline-size !important;
|
|
4548
5188
|
font: var(--vvd-typography-base);
|
|
4549
5189
|
grid-column: 1/4;
|
|
4550
5190
|
grid-row: 1;
|
|
@@ -4605,23 +5245,25 @@ label {
|
|
|
4605
5245
|
}
|
|
4606
5246
|
|
|
4607
5247
|
.control:not(slot), .control::slotted(input) {
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
5248
|
+
/* As input is in light dom, use !important and initial to prevent values getting overridden by global CSS resets etc. */
|
|
5249
|
+
width: 100% !important;
|
|
5250
|
+
box-sizing: border-box !important;
|
|
5251
|
+
border: 0 none !important;
|
|
5252
|
+
margin: initial !important;
|
|
5253
|
+
appearance: none !important; /* for box-shadow visibility on IOS */
|
|
5254
|
+
background-color: transparent !important;
|
|
5255
|
+
block-size: 100% !important;
|
|
5256
|
+
border-radius: inherit !important;
|
|
5257
|
+
color: inherit !important;
|
|
4616
5258
|
font: inherit;
|
|
4617
|
-
padding-block: 0;
|
|
4618
|
-
padding-inline-end: var(--_text-field-gutter);
|
|
4619
|
-
padding-inline-start: var(--_text-field-gutter);
|
|
5259
|
+
padding-block: 0 !important;
|
|
5260
|
+
padding-inline-end: var(--_text-field-gutter-end) !important;
|
|
5261
|
+
padding-inline-start: var(--_text-field-gutter-start) !important;
|
|
4620
5262
|
}
|
|
4621
5263
|
.control:not(slot):disabled, .control::slotted(input:disabled) {
|
|
4622
|
-
cursor: not-allowed;
|
|
4623
|
-
opacity: 1; /* 2. correct opacity on iOS */
|
|
4624
|
-
-webkit-text-fill-color: var(--_appearance-color-text); /* 1. sets text fill to current `color` for safari */
|
|
5264
|
+
cursor: not-allowed !important;
|
|
5265
|
+
opacity: 1 !important; /* 2. correct opacity on iOS */
|
|
5266
|
+
-webkit-text-fill-color: var(--_appearance-color-text) !important; /* 1. sets text fill to current `color` for safari */
|
|
4625
5267
|
}
|
|
4626
5268
|
.control:not(slot)::placeholder {
|
|
4627
5269
|
opacity: 1 !important; /* 2. correct opacity on iOS */
|
|
@@ -4631,7 +5273,7 @@ label {
|
|
|
4631
5273
|
outline: none;
|
|
4632
5274
|
}
|
|
4633
5275
|
.has-icon .control:not(slot), .has-icon .control::slotted(input) {
|
|
4634
|
-
padding-inline-start: calc(var(--_text-field-icon-size) + var(--_text-field-gutter) * 2);
|
|
5276
|
+
padding-inline-start: calc(var(--_text-field-icon-size) + var(--_text-field-gutter-start) * 2) !important;
|
|
4635
5277
|
}
|
|
4636
5278
|
|
|
4637
5279
|
.icon {
|
|
@@ -4640,7 +5282,7 @@ label {
|
|
|
4640
5282
|
color: var(--_low-ink-color);
|
|
4641
5283
|
font-size: var(--_text-field-icon-size);
|
|
4642
5284
|
inset-block-start: 50%;
|
|
4643
|
-
inset-inline-start: calc(100% + var(--_text-field-gutter));
|
|
5285
|
+
inset-inline-start: calc(100% + var(--_text-field-gutter-start));
|
|
4644
5286
|
line-height: 1;
|
|
4645
5287
|
transform: translateY(-50%);
|
|
4646
5288
|
}
|
|
@@ -4667,9 +5309,10 @@ label {
|
|
|
4667
5309
|
display: none;
|
|
4668
5310
|
}
|
|
4669
5311
|
|
|
4670
|
-
.
|
|
4671
|
-
|
|
5312
|
+
.base {
|
|
5313
|
+
--_text-field-gutter-end: 70px;
|
|
4672
5314
|
}
|
|
5315
|
+
|
|
4673
5316
|
.control::-webkit-outer-spin-button, .control::-webkit-inner-spin-button {
|
|
4674
5317
|
appearance: none;
|
|
4675
5318
|
}
|
|
@@ -4694,7 +5337,7 @@ label {
|
|
|
4694
5337
|
pointer-events: none;
|
|
4695
5338
|
}/**
|
|
4696
5339
|
* Do not edit directly
|
|
4697
|
-
* Generated on
|
|
5340
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
4698
5341
|
*/
|
|
4699
5342
|
@supports selector(:focus-visible) {
|
|
4700
5343
|
:host(:focus-visible) {
|
|
@@ -4875,7 +5518,7 @@ label {
|
|
|
4875
5518
|
--_select-control-border-radius: 6px;
|
|
4876
5519
|
}/**
|
|
4877
5520
|
* Do not edit directly
|
|
4878
|
-
* Generated on
|
|
5521
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
4879
5522
|
*/
|
|
4880
5523
|
:host(.disabled) {
|
|
4881
5524
|
cursor: not-allowed;
|
|
@@ -5006,7 +5649,7 @@ label {
|
|
|
5006
5649
|
align-items: center;
|
|
5007
5650
|
background-color: var(--_appearance-color-fill);
|
|
5008
5651
|
block-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 20));
|
|
5009
|
-
border-radius:
|
|
5652
|
+
border-radius: 40px;
|
|
5010
5653
|
box-shadow: inset 0 0 0 1px var(--_appearance-color-outline);
|
|
5011
5654
|
inline-size: var(--_switch-inline-size);
|
|
5012
5655
|
transition: all 0.2s ease-in-out 0s;
|
|
@@ -5058,15 +5701,14 @@ label {
|
|
|
5058
5701
|
display: none;
|
|
5059
5702
|
}/**
|
|
5060
5703
|
* Do not edit directly
|
|
5061
|
-
* Generated on
|
|
5704
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
5062
5705
|
*/
|
|
5063
5706
|
:host {
|
|
5064
5707
|
position: relative;
|
|
5065
5708
|
}
|
|
5066
5709
|
|
|
5067
|
-
.
|
|
5068
|
-
|
|
5069
|
-
padding-inline-end: 44px !important;
|
|
5710
|
+
.base {
|
|
5711
|
+
--_text-field-gutter-end: 44px;
|
|
5070
5712
|
}
|
|
5071
5713
|
|
|
5072
5714
|
.icon {
|
|
@@ -5122,7 +5764,7 @@ label {
|
|
|
5122
5764
|
inline-size: 100%;
|
|
5123
5765
|
}/**
|
|
5124
5766
|
* Do not edit directly
|
|
5125
|
-
* Generated on
|
|
5767
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
5126
5768
|
*/
|
|
5127
5769
|
:host {
|
|
5128
5770
|
display: block;
|
|
@@ -5237,7 +5879,7 @@ label {
|
|
|
5237
5879
|
display: none;
|
|
5238
5880
|
}/**
|
|
5239
5881
|
* Do not edit directly
|
|
5240
|
-
* Generated on
|
|
5882
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
5241
5883
|
*/
|
|
5242
5884
|
:host {
|
|
5243
5885
|
display: inline-block;
|
|
@@ -5289,6 +5931,26 @@ label {
|
|
|
5289
5931
|
--_appearance-color-fill: transparent;
|
|
5290
5932
|
--_appearance-color-outline: transparent;
|
|
5291
5933
|
}
|
|
5934
|
+
.base:where(.error):where(:not(:disabled, .disabled)) {
|
|
5935
|
+
--_appearance-color-text: notSet;
|
|
5936
|
+
--_appearance-color-fill: var(--vvd-color-alert-50);
|
|
5937
|
+
--_appearance-color-outline: var(--vvd-color-alert-500);
|
|
5938
|
+
}
|
|
5939
|
+
.base:where(.error):where(:not(:disabled, .disabled)).appearance-ghost {
|
|
5940
|
+
--_appearance-color-text: notSet;
|
|
5941
|
+
--_appearance-color-fill: var(--vvd-color-alert-50);
|
|
5942
|
+
--_appearance-color-outline: transparent;
|
|
5943
|
+
}
|
|
5944
|
+
.base:where(.success):where(:not(:disabled, .disabled)) {
|
|
5945
|
+
--_appearance-color-text: notSet;
|
|
5946
|
+
--_appearance-color-fill: var(--vvd-color-success-50);
|
|
5947
|
+
--_appearance-color-outline: var(--vvd-color-success-500);
|
|
5948
|
+
}
|
|
5949
|
+
.base:where(.success):where(:not(:disabled, .disabled)).appearance-ghost {
|
|
5950
|
+
--_appearance-color-text: notSet;
|
|
5951
|
+
--_appearance-color-fill: var(--vvd-color-success-50);
|
|
5952
|
+
--_appearance-color-outline: transparent;
|
|
5953
|
+
}
|
|
5292
5954
|
.base.connotation-success {
|
|
5293
5955
|
/* @cssprop [--vvd-text-area-success-primary=var(--vvd-color-success-500)] */
|
|
5294
5956
|
--_connotation-color-primary: var(--vvd-text-area-success-primary, var(--vvd-color-success-500));
|
|
@@ -5397,7 +6059,7 @@ label {
|
|
|
5397
6059
|
resize: vertical;
|
|
5398
6060
|
}/**
|
|
5399
6061
|
* Do not edit directly
|
|
5400
|
-
* Generated on
|
|
6062
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
5401
6063
|
*/
|
|
5402
6064
|
:host {
|
|
5403
6065
|
display: inline-block;
|
|
@@ -5593,7 +6255,7 @@ label {
|
|
|
5593
6255
|
margin-inline-end: 4px;
|
|
5594
6256
|
}/**
|
|
5595
6257
|
* Do not edit directly
|
|
5596
|
-
* Generated on
|
|
6258
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
5597
6259
|
*/
|
|
5598
6260
|
@supports selector(:focus-visible) {
|
|
5599
6261
|
:host(:focus-visible) {
|
|
@@ -5601,7 +6263,7 @@ label {
|
|
|
5601
6263
|
}
|
|
5602
6264
|
}
|
|
5603
6265
|
:host([disabled]) {
|
|
5604
|
-
|
|
6266
|
+
pointer-events: none;
|
|
5605
6267
|
}
|
|
5606
6268
|
|
|
5607
6269
|
.base {
|
|
@@ -5676,9 +6338,6 @@ label {
|
|
|
5676
6338
|
.base:not(.disabled) {
|
|
5677
6339
|
cursor: pointer;
|
|
5678
6340
|
}
|
|
5679
|
-
.base.disabled {
|
|
5680
|
-
pointer-events: none;
|
|
5681
|
-
}
|
|
5682
6341
|
|
|
5683
6342
|
.focus-indicator {
|
|
5684
6343
|
border-radius: 6px;
|
|
@@ -5774,7 +6433,7 @@ label {
|
|
|
5774
6433
|
display: none;
|
|
5775
6434
|
}/**
|
|
5776
6435
|
* Do not edit directly
|
|
5777
|
-
* Generated on
|
|
6436
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
5778
6437
|
*/
|
|
5779
6438
|
.base {
|
|
5780
6439
|
display: grid;
|
|
@@ -5843,7 +6502,7 @@ label {
|
|
|
5843
6502
|
background-color: var(--_appearance-color-fill);
|
|
5844
6503
|
}/**
|
|
5845
6504
|
* Do not edit directly
|
|
5846
|
-
* Generated on
|
|
6505
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
5847
6506
|
*/
|
|
5848
6507
|
:host {
|
|
5849
6508
|
min-inline-size: 80px;
|
|
@@ -5940,7 +6599,7 @@ slot {
|
|
|
5940
6599
|
margin-inline-start: auto;
|
|
5941
6600
|
}/**
|
|
5942
6601
|
* Do not edit directly
|
|
5943
|
-
* Generated on
|
|
6602
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
5944
6603
|
*/
|
|
5945
6604
|
ol {
|
|
5946
6605
|
padding: 0;
|
|
@@ -6200,7 +6859,7 @@ ol {
|
|
|
6200
6859
|
text-transform: uppercase;
|
|
6201
6860
|
}/**
|
|
6202
6861
|
* Do not edit directly
|
|
6203
|
-
* Generated on
|
|
6862
|
+
* Generated on Thu, 21 Dec 2023 10:43:18 GMT
|
|
6204
6863
|
*/
|
|
6205
6864
|
:host {
|
|
6206
6865
|
display: inline-block;
|
|
@@ -6393,8 +7052,8 @@ ol {
|
|
|
6393
7052
|
--_appearance-color-outline: transparent;
|
|
6394
7053
|
}
|
|
6395
7054
|
.button:where(.selected, [aria-current]):where(:disabled, .disabled) {
|
|
6396
|
-
--_appearance-color-text: var(--
|
|
6397
|
-
--_appearance-color-fill: var(--
|
|
7055
|
+
--_appearance-color-text: var(--vvd-color-neutral-300);
|
|
7056
|
+
--_appearance-color-fill: var(--vvd-color-neutral-200);
|
|
6398
7057
|
--_appearance-color-outline: transparent;
|
|
6399
7058
|
}
|
|
6400
7059
|
.button .focus-indicator {
|