@warp-ds/elements 2.4.0-next.4 → 2.4.0-next.6
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/custom-elements.json +3216 -0
- package/dist/index.d.ts +752 -0
- package/dist/packages/checkbox/checkbox-group.js +3 -11
- package/dist/packages/checkbox/checkbox-group.js.map +7 -0
- package/dist/packages/checkbox/checkbox.js +2572 -201
- package/dist/packages/checkbox/checkbox.js.map +7 -0
- package/dist/packages/deadtoggle/index.js +2547 -51
- package/dist/packages/deadtoggle/index.js.map +7 -0
- package/dist/packages/pageindicator/index.js +28 -44
- package/dist/packages/pageindicator/index.js.map +7 -0
- package/dist/packages/pagination/index.js +2484 -183
- package/dist/packages/pagination/index.js.map +7 -0
- package/dist/packages/radio/radio-group-styles.js +3 -3
- package/dist/packages/radio/radio-group-styles.js.map +7 -0
- package/dist/packages/radio/radio-group.js +2618 -312
- package/dist/packages/radio/radio-group.js.map +7 -0
- package/dist/packages/radio/radio-styles.js +1 -0
- package/dist/packages/radio/radio-styles.js.map +7 -0
- package/dist/packages/radio/radio.js +2556 -109
- package/dist/packages/radio/radio.js.map +7 -0
- package/dist/packages/radio/radio.stories.js +3688 -47
- package/dist/packages/radio/radio.stories.js.map +7 -0
- package/dist/packages/slider/slider-thumb.js +2646 -399
- package/dist/packages/slider/slider-thumb.js.map +7 -0
- package/dist/packages/slider/slider.js +2603 -272
- package/dist/packages/slider/slider.js.map +7 -0
- package/dist/packages/stepindicator/index.js +2459 -189
- package/dist/packages/stepindicator/index.js.map +7 -0
- package/dist/packages/tabs/index.js +2473 -4
- package/dist/packages/tabs/index.js.map +7 -0
- package/dist/packages/tabs/tab-panel.js +2441 -47
- package/dist/packages/tabs/tab-panel.js.map +7 -0
- package/dist/packages/tabs/tab.js +2451 -78
- package/dist/packages/tabs/tab.js.map +7 -0
- package/dist/packages/tabs/tabs.js +2443 -260
- package/dist/packages/tabs/tabs.js.map +7 -0
- package/dist/packages/textarea/textarea.js +2465 -210
- package/dist/packages/textarea/textarea.js.map +7 -0
- package/dist/web-types.json +800 -1
- package/package.json +37 -1
|
@@ -1,47 +1,2441 @@
|
|
|
1
|
-
var
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
1
|
+
var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var l=(a,e,i,t)=>{for(var r=t>1?void 0:t?g(e,i):e,n=a.length-1,d;n>=0;n--)(d=a[n])&&(r=(t?d(e,i,r):d(r))||r);return t&&r&&p(e,i,r),r};import{html as h,LitElement as m}from"lit";import{property as u}from"lit/decorators.js";import{css as c}from"lit";var s=c`
|
|
2
|
+
*,
|
|
3
|
+
:before,
|
|
4
|
+
:after {
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
border-style: solid;
|
|
7
|
+
border-width: 0;
|
|
8
|
+
border-color: var(--w-s-color-border);
|
|
9
|
+
}
|
|
10
|
+
html {
|
|
11
|
+
font-size: 62.5%;
|
|
12
|
+
}
|
|
13
|
+
body {
|
|
14
|
+
background-color: var(--w-s-color-background);
|
|
15
|
+
min-height: 100%;
|
|
16
|
+
margin: 0;
|
|
17
|
+
overflow-y: scroll;
|
|
18
|
+
}
|
|
19
|
+
body,
|
|
20
|
+
:host {
|
|
21
|
+
-webkit-text-size-adjust: 100%;
|
|
22
|
+
tab-size: 4;
|
|
23
|
+
-webkit-tap-highlight-color: transparent;
|
|
24
|
+
font-family: var(--w-font-family);
|
|
25
|
+
font-size: var(--w-font-size-m);
|
|
26
|
+
line-height: var(--w-line-height-m);
|
|
27
|
+
color: var(--w-s-color-text);
|
|
28
|
+
}
|
|
29
|
+
hr {
|
|
30
|
+
color: inherit;
|
|
31
|
+
border-top-width: 1px;
|
|
32
|
+
height: 0;
|
|
33
|
+
}
|
|
34
|
+
abbr:where([title]) {
|
|
35
|
+
-webkit-text-decoration: underline dotted;
|
|
36
|
+
text-decoration: underline dotted;
|
|
37
|
+
}
|
|
38
|
+
h1,
|
|
39
|
+
h2,
|
|
40
|
+
h3,
|
|
41
|
+
h4,
|
|
42
|
+
h5,
|
|
43
|
+
h6 {
|
|
44
|
+
font-size: inherit;
|
|
45
|
+
font-weight: 700;
|
|
46
|
+
}
|
|
47
|
+
a {
|
|
48
|
+
cursor: pointer;
|
|
49
|
+
color: var(--w-s-color-text-link);
|
|
50
|
+
text-decoration: none;
|
|
51
|
+
}
|
|
52
|
+
a:hover,
|
|
53
|
+
a:focus,
|
|
54
|
+
a:active {
|
|
55
|
+
text-decoration: underline;
|
|
56
|
+
}
|
|
57
|
+
a:focus-visible {
|
|
58
|
+
outline: 2px solid var(--w-s-color-border-focus);
|
|
59
|
+
outline-offset: 1px;
|
|
60
|
+
}
|
|
61
|
+
b,
|
|
62
|
+
strong {
|
|
63
|
+
font-weight: 700;
|
|
64
|
+
}
|
|
65
|
+
code,
|
|
66
|
+
kbd,
|
|
67
|
+
samp,
|
|
68
|
+
pre {
|
|
69
|
+
font-family:
|
|
70
|
+
ui-monospace,
|
|
71
|
+
SFMono-Regular,
|
|
72
|
+
Menlo,
|
|
73
|
+
Monaco,
|
|
74
|
+
Consolas,
|
|
75
|
+
Liberation Mono,
|
|
76
|
+
Courier New,
|
|
77
|
+
monospace;
|
|
78
|
+
font-size: 1em;
|
|
79
|
+
}
|
|
80
|
+
sub,
|
|
81
|
+
sup {
|
|
82
|
+
vertical-align: baseline;
|
|
83
|
+
font-size: 75%;
|
|
84
|
+
line-height: 0;
|
|
85
|
+
position: relative;
|
|
86
|
+
}
|
|
87
|
+
sub {
|
|
88
|
+
bottom: -0.25em;
|
|
89
|
+
}
|
|
90
|
+
sup {
|
|
91
|
+
top: -0.5em;
|
|
92
|
+
}
|
|
93
|
+
table {
|
|
94
|
+
text-indent: 0;
|
|
95
|
+
border-color: inherit;
|
|
96
|
+
border-collapse: collapse;
|
|
97
|
+
}
|
|
98
|
+
button,
|
|
99
|
+
input,
|
|
100
|
+
optgroup,
|
|
101
|
+
select,
|
|
102
|
+
textarea {
|
|
103
|
+
font-family: inherit;
|
|
104
|
+
font-size: 100%;
|
|
105
|
+
font-weight: inherit;
|
|
106
|
+
line-height: inherit;
|
|
107
|
+
color: inherit;
|
|
108
|
+
margin: 0;
|
|
109
|
+
padding: 0;
|
|
110
|
+
}
|
|
111
|
+
button,
|
|
112
|
+
select {
|
|
113
|
+
text-transform: none;
|
|
114
|
+
}
|
|
115
|
+
button,
|
|
116
|
+
[type='button'],
|
|
117
|
+
[type='reset'],
|
|
118
|
+
[type='submit'] {
|
|
119
|
+
-webkit-appearance: button;
|
|
120
|
+
}
|
|
121
|
+
:-moz-focusring {
|
|
122
|
+
outline: auto;
|
|
123
|
+
}
|
|
124
|
+
:-moz-ui-invalid {
|
|
125
|
+
box-shadow: none;
|
|
126
|
+
}
|
|
127
|
+
progress {
|
|
128
|
+
vertical-align: baseline;
|
|
129
|
+
}
|
|
130
|
+
::-webkit-inner-spin-button {
|
|
131
|
+
height: auto;
|
|
132
|
+
}
|
|
133
|
+
::-webkit-outer-spin-button {
|
|
134
|
+
height: auto;
|
|
135
|
+
}
|
|
136
|
+
[type='search'] {
|
|
137
|
+
-webkit-appearance: textfield;
|
|
138
|
+
outline-offset: -2px;
|
|
139
|
+
}
|
|
140
|
+
::-webkit-search-decoration {
|
|
141
|
+
-webkit-appearance: none;
|
|
142
|
+
}
|
|
143
|
+
::-webkit-file-upload-button {
|
|
144
|
+
-webkit-appearance: button;
|
|
145
|
+
font: inherit;
|
|
146
|
+
}
|
|
147
|
+
summary {
|
|
148
|
+
display: list-item;
|
|
149
|
+
}
|
|
150
|
+
blockquote,
|
|
151
|
+
dl,
|
|
152
|
+
dd,
|
|
153
|
+
h1,
|
|
154
|
+
h2,
|
|
155
|
+
h3,
|
|
156
|
+
h4,
|
|
157
|
+
h5,
|
|
158
|
+
h6,
|
|
159
|
+
hr,
|
|
160
|
+
figure,
|
|
161
|
+
p,
|
|
162
|
+
pre {
|
|
163
|
+
margin: 0;
|
|
164
|
+
}
|
|
165
|
+
fieldset {
|
|
166
|
+
margin: 0;
|
|
167
|
+
padding: 0;
|
|
168
|
+
}
|
|
169
|
+
legend {
|
|
170
|
+
padding: 0;
|
|
171
|
+
}
|
|
172
|
+
ol,
|
|
173
|
+
ul,
|
|
174
|
+
menu {
|
|
175
|
+
margin: 0;
|
|
176
|
+
padding: 0;
|
|
177
|
+
list-style: none;
|
|
178
|
+
}
|
|
179
|
+
textarea {
|
|
180
|
+
resize: vertical;
|
|
181
|
+
}
|
|
182
|
+
input::placeholder,
|
|
183
|
+
textarea::placeholder {
|
|
184
|
+
opacity: 1;
|
|
185
|
+
color: var(--w-s-color-text-placeholder);
|
|
186
|
+
}
|
|
187
|
+
button,
|
|
188
|
+
[role='button'] {
|
|
189
|
+
cursor: pointer;
|
|
190
|
+
}
|
|
191
|
+
:disabled {
|
|
192
|
+
cursor: default;
|
|
193
|
+
}
|
|
194
|
+
img,
|
|
195
|
+
svg,
|
|
196
|
+
video,
|
|
197
|
+
canvas,
|
|
198
|
+
audio,
|
|
199
|
+
iframe,
|
|
200
|
+
embed,
|
|
201
|
+
object {
|
|
202
|
+
vertical-align: middle;
|
|
203
|
+
display: block;
|
|
204
|
+
}
|
|
205
|
+
img,
|
|
206
|
+
video {
|
|
207
|
+
max-width: 100%;
|
|
208
|
+
height: auto;
|
|
209
|
+
}
|
|
210
|
+
h1 {
|
|
211
|
+
font-size: var(--w-font-size-xxl);
|
|
212
|
+
line-height: var(--w-line-height-xxl);
|
|
213
|
+
}
|
|
214
|
+
h2 {
|
|
215
|
+
font-size: var(--w-font-size-xl);
|
|
216
|
+
line-height: var(--w-line-height-xl);
|
|
217
|
+
}
|
|
218
|
+
h3 {
|
|
219
|
+
font-size: var(--w-font-size-l);
|
|
220
|
+
line-height: var(--w-line-height-l);
|
|
221
|
+
}
|
|
222
|
+
h4 {
|
|
223
|
+
font-size: var(--w-font-size-m);
|
|
224
|
+
line-height: var(--w-line-height-m);
|
|
225
|
+
}
|
|
226
|
+
h5 {
|
|
227
|
+
font-size: var(--w-font-size-s);
|
|
228
|
+
line-height: var(--w-line-height-s);
|
|
229
|
+
}
|
|
230
|
+
dt,
|
|
231
|
+
dd {
|
|
232
|
+
margin: 0 16px;
|
|
233
|
+
}
|
|
234
|
+
h1,
|
|
235
|
+
h2,
|
|
236
|
+
h3,
|
|
237
|
+
h4,
|
|
238
|
+
h5,
|
|
239
|
+
ul,
|
|
240
|
+
ol,
|
|
241
|
+
dl,
|
|
242
|
+
p,
|
|
243
|
+
blockquote {
|
|
244
|
+
margin: 0 0 8px;
|
|
245
|
+
}
|
|
246
|
+
[hidden] {
|
|
247
|
+
display: none !important;
|
|
248
|
+
}
|
|
249
|
+
[tabindex='-1']:focus:not(:focus-visible) {
|
|
250
|
+
outline: none;
|
|
251
|
+
}
|
|
252
|
+
legend {
|
|
253
|
+
float: left;
|
|
254
|
+
width: 100%;
|
|
255
|
+
margin: 0;
|
|
256
|
+
padding: 0;
|
|
257
|
+
display: table;
|
|
258
|
+
}
|
|
259
|
+
legend + * {
|
|
260
|
+
clear: both;
|
|
261
|
+
}
|
|
262
|
+
fieldset {
|
|
263
|
+
border: 0;
|
|
264
|
+
min-width: 0;
|
|
265
|
+
margin: 0;
|
|
266
|
+
padding: 0.01em 0 0;
|
|
267
|
+
}
|
|
268
|
+
body:not(:-moz-handler-blocked) fieldset {
|
|
269
|
+
display: table-cell;
|
|
270
|
+
}
|
|
271
|
+
svg {
|
|
272
|
+
pointer-events: none;
|
|
273
|
+
}
|
|
274
|
+
`,x=c`*, :before, :after {
|
|
275
|
+
--w-rotate: 0;
|
|
276
|
+
--w-rotate-x: 0;
|
|
277
|
+
--w-rotate-y: 0;
|
|
278
|
+
--w-rotate-z: 0;
|
|
279
|
+
--w-scale-x: 1;
|
|
280
|
+
--w-scale-y: 1;
|
|
281
|
+
--w-scale-z: 1;
|
|
282
|
+
--w-skew-x: 0;
|
|
283
|
+
--w-skew-y: 0;
|
|
284
|
+
--w-translate-x: 0;
|
|
285
|
+
--w-translate-y: 0;
|
|
286
|
+
--w-translate-z: 0
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.h4, .t4 {
|
|
290
|
+
font-weight: 700;
|
|
291
|
+
font-size: var(--w-font-size-m);
|
|
292
|
+
line-height: var(--w-line-height-m)
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.t3 {
|
|
296
|
+
font-weight: 700;
|
|
297
|
+
font-size: var(--w-font-size-l);
|
|
298
|
+
line-height: var(--w-line-height-l)
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
@media (min-width: 480px) {
|
|
302
|
+
.sm\\:h3 {
|
|
303
|
+
font-weight: 700;
|
|
304
|
+
font-size: var(--w-font-size-l);
|
|
305
|
+
line-height: var(--w-line-height-l)
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.text-center {
|
|
310
|
+
text-align: center
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.before\\:text-center:before {
|
|
314
|
+
text-align: center
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.text-left {
|
|
318
|
+
text-align: left
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.text-right {
|
|
322
|
+
text-align: right
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.align-middle {
|
|
326
|
+
vertical-align: middle
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.animate-inprogress {
|
|
330
|
+
background-image: linear-gradient(135deg, rgba(0, 0, 0, .05) 25%, transparent 0, transparent 50%, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, .05) 75%, transparent 0, transparent) !important;
|
|
331
|
+
background-size: 30px 30px;
|
|
332
|
+
animation: animate-inprogress 3s linear infinite
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
@keyframes animate-inprogress {
|
|
336
|
+
0% {
|
|
337
|
+
background-position: 0 0
|
|
338
|
+
}
|
|
339
|
+
to {
|
|
340
|
+
background-position: 60px 0
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.\\[--w-modal-max-height\\:80\\%\\] {
|
|
345
|
+
--w-modal-max-height: 80%
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.\\[--w-modal-width\\:640px\\] {
|
|
349
|
+
--w-modal-width: 640px
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.focus\\:\\[--w-outline-offset\\:-2px\\]:focus {
|
|
353
|
+
--w-outline-offset: -2px
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.backdrop-blur {
|
|
357
|
+
-webkit-backdrop-filter: blur(4px);
|
|
358
|
+
backdrop-filter: blur(4px)
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.peer:checked ~ .peer-checked\\:before\\:bg-center:before {
|
|
362
|
+
background-position: center
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.hover\\:bg-clip-padding:hover {
|
|
366
|
+
-webkit-background-clip: padding-box;
|
|
367
|
+
background-clip: padding-box
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.bg-transparent, .group\\/steph:first-child .group-first\\/steph\\:bg-transparent, .group\\/steph:last-child .group-last\\/steph\\:bg-transparent {
|
|
371
|
+
background-color: transparent
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.bg-\\[--w-black\\/25\\] {
|
|
375
|
+
background-color: rgba(var(--w-rgb-black), .25)
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.bg-\\[--w-black\\/70\\], .bg-\\[var\\(--w-black\\)\\/70\\] {
|
|
379
|
+
background-color: rgba(var(--w-rgb-black), .7)
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.bg-\\[--w-color-badge-info-background\\] {
|
|
383
|
+
background-color: var(--w-color-badge-info-background)
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.bg-\\[--w-color-badge-negative-background\\] {
|
|
387
|
+
background-color: var(--w-color-badge-negative-background)
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.bg-\\[--w-color-badge-neutral-background\\] {
|
|
391
|
+
background-color: var(--w-color-badge-neutral-background)
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.bg-\\[--w-color-badge-positive-background\\] {
|
|
395
|
+
background-color: var(--w-color-badge-positive-background)
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.bg-\\[--w-color-badge-sponsored-background\\] {
|
|
399
|
+
background-color: var(--w-color-badge-sponsored-background)
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.bg-\\[--w-color-badge-warning-background\\] {
|
|
403
|
+
background-color: var(--w-color-badge-warning-background)
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.bg-\\[--w-color-button-primary-background\\] {
|
|
407
|
+
background-color: var(--w-color-button-primary-background)
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.bg-\\[--w-color-buttongroup-utility-background-selected\\] {
|
|
411
|
+
background-color: var(--w-color-buttongroup-utility-background-selected)
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.bg-\\[--w-color-callout-background\\] {
|
|
415
|
+
background-color: var(--w-color-callout-background)
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.bg-\\[--w-color-pill-suggestion-background\\] {
|
|
419
|
+
background-color: var(--w-color-pill-suggestion-background)
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.bg-\\[--w-color-switch-track-background\\] {
|
|
423
|
+
background-color: var(--w-color-switch-track-background)
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.bg-\\[--w-s-color-surface-elevated-100\\] {
|
|
427
|
+
background-color: var(--w-s-color-surface-elevated-100)
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.bg-\\[--w-s-color-surface-elevated-300\\] {
|
|
431
|
+
background-color: var(--w-s-color-surface-elevated-300)
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.bg-\\[--w-s-icon-selected\\] {
|
|
435
|
+
background-color: var(--w-s-icon-selected)
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.group:hover .group-hover\\:bg-\\[--w-color-switch-track-background-hover\\] {
|
|
439
|
+
background-color: var(--w-color-switch-track-background-hover)
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.hover\\:bg-\\[--w-color-button-pill-background-hover\\]:hover {
|
|
443
|
+
background-color: var(--w-color-button-pill-background-hover)
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.hover\\:bg-\\[--w-color-button-primary-background-hover\\]:hover {
|
|
447
|
+
background-color: var(--w-color-button-primary-background-hover)
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.hover\\:bg-\\[--w-color-buttongroup-utility-background-hover\\]:hover {
|
|
451
|
+
background-color: var(--w-color-buttongroup-utility-background-hover)
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.hover\\:bg-\\[--w-color-pill-suggestion-background-hover\\]:hover {
|
|
455
|
+
background-color: var(--w-color-pill-suggestion-background-hover)
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.hover\\:bg-\\[--w-s-icon-subtle\\]:hover {
|
|
459
|
+
background-color: var(--w-s-icon-subtle)
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.hover\\:bg-\\[var\\(--w-black\\)\\/85\\]:hover {
|
|
463
|
+
background-color: rgba(var(--w-rgb-black), .85)
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.active\\:bg-\\[--w-color-button-pill-background-active\\]:active {
|
|
467
|
+
background-color: var(--w-color-button-pill-background-active)
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.active\\:bg-\\[--w-color-button-primary-background-active\\]:active {
|
|
471
|
+
background-color: var(--w-color-button-primary-background-active)
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.active\\:bg-\\[--w-color-buttongroup-utility-background-selected\\]:active {
|
|
475
|
+
background-color: var(--w-color-buttongroup-utility-background-selected)
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.active\\:bg-\\[--w-color-pill-suggestion-background-active\\]:active {
|
|
479
|
+
background-color: var(--w-color-pill-suggestion-background-active)
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.active\\:bg-\\[var\\(--w-black\\)\\]:active {
|
|
483
|
+
background-color: var(--w-black)
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.peer:checked ~ .peer-checked\\:before\\:bg-\\[url\\(var\\(--w-icon-toggle-checked\\)\\)\\]:before {
|
|
487
|
+
background-image: var(--w-icon-toggle-checked)
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.appearance-none {
|
|
491
|
+
-moz-appearance: none;
|
|
492
|
+
appearance: none;
|
|
493
|
+
-webkit-appearance: none
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.will-change-height {
|
|
497
|
+
will-change: height
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.border, .border-1 {
|
|
501
|
+
border-width: 1px
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.border-b {
|
|
505
|
+
border-bottom-width: 1px
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.before\\:border:before {
|
|
509
|
+
border-width: 1px
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.border-0 {
|
|
513
|
+
border-width: 0
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.border-2 {
|
|
517
|
+
border-width: 2px
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.border-b-0 {
|
|
521
|
+
border-bottom-width: 0
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.border-b-4 {
|
|
525
|
+
border-bottom-width: 4px
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.border-l-4 {
|
|
529
|
+
border-left-width: 4px
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.border-r-0, .group:not(:last-of-type) .group-not-last-of-type\\:border-r-0 {
|
|
533
|
+
border-right-width: 0
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.peer:checked ~ .peer-checked\\:before\\:border-\\[6\\]:before {
|
|
537
|
+
border-width: .6rem
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.border-transparent {
|
|
541
|
+
border-color: transparent
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.border-\\[--w-color-buttongroup-utility-border\\] {
|
|
545
|
+
border-color: var(--w-color-buttongroup-utility-border)
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.border-\\[--w-color-callout-border\\] {
|
|
549
|
+
border-color: var(--w-color-callout-border)
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.border-\\[--w-s-color-background-inverted\\] {
|
|
553
|
+
border-color: var(--w-s-color-background-inverted)
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.border-\\[--w-s-color-surface-elevated-300\\] {
|
|
557
|
+
border-color: var(--w-s-color-surface-elevated-300)
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.active\\:border-\\[--w-color-buttongroup-utility-border-selected\\]:active {
|
|
561
|
+
border-color: var(--w-color-buttongroup-utility-border-selected)
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.divide-x > * + * {
|
|
565
|
+
--w-divide-x-reverse: 0;
|
|
566
|
+
border-left-width: calc(1px * calc(1 - var(--w-divide-x-reverse)));
|
|
567
|
+
border-right-width: calc(1px * var(--w-divide-x-reverse))
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.divide-y > * + * {
|
|
571
|
+
--w-divide-y-reverse: 0;
|
|
572
|
+
border-top-width: calc(1px * calc(1 - var(--w-divide-y-reverse)));
|
|
573
|
+
border-bottom-width: calc(1px * var(--w-divide-y-reverse))
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.rounded-4 {
|
|
577
|
+
border-radius: 4px
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.rounded-8 {
|
|
581
|
+
border-radius: 8px
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.rounded-full {
|
|
585
|
+
border-radius: 9999px
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.before\\:rounded-2:before {
|
|
589
|
+
border-radius: 2px
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.before\\:rounded-full:before {
|
|
593
|
+
border-radius: 9999px
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.rounded-b-0 {
|
|
597
|
+
border-bottom-left-radius: 0;
|
|
598
|
+
border-bottom-right-radius: 0
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.rounded-bl-0 {
|
|
602
|
+
border-bottom-left-radius: 0
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.rounded-br-0 {
|
|
606
|
+
border-bottom-right-radius: 0
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.rounded-l-0 {
|
|
610
|
+
border-top-left-radius: 0;
|
|
611
|
+
border-bottom-left-radius: 0
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.rounded-l-full {
|
|
615
|
+
border-top-left-radius: 9999px;
|
|
616
|
+
border-bottom-left-radius: 9999px
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.rounded-r-0 {
|
|
620
|
+
border-top-right-radius: 0;
|
|
621
|
+
border-bottom-right-radius: 0
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.rounded-r-full {
|
|
625
|
+
border-top-right-radius: 9999px;
|
|
626
|
+
border-bottom-right-radius: 9999px
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.rounded-tl-0 {
|
|
630
|
+
border-top-left-radius: 0
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.rounded-tl-4 {
|
|
634
|
+
border-top-left-radius: 4px
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.rounded-tr-0 {
|
|
638
|
+
border-top-right-radius: 0
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.group:first-of-type .group-first-of-type\\:rounded-bl-8 {
|
|
642
|
+
border-bottom-left-radius: 8px
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.group:first-of-type .group-first-of-type\\:rounded-tl-8 {
|
|
646
|
+
border-top-left-radius: 8px
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.first\\:rounded-lb-4:first-child {
|
|
650
|
+
border-bottom-left-radius: 4px
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.first\\:rounded-lt-4:first-child {
|
|
654
|
+
border-top-left-radius: 4px
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.first\\:rounded-rt-4:first-child {
|
|
658
|
+
border-top-right-radius: 4px
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.group:last-of-type .group-last-of-type\\:rounded-br-8 {
|
|
662
|
+
border-bottom-right-radius: 8px
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.group:last-of-type .group-last-of-type\\:rounded-tr-8 {
|
|
666
|
+
border-top-right-radius: 8px
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.last\\:rounded-lb-4:last-child {
|
|
670
|
+
border-bottom-left-radius: 4px
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.last\\:rounded-rb-4:last-child {
|
|
674
|
+
border-bottom-right-radius: 4px
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.last\\:rounded-rt-4:last-child {
|
|
678
|
+
border-top-right-radius: 4px
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.caret-current {
|
|
682
|
+
caret-color: currentColor
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.opacity-25 {
|
|
686
|
+
opacity: 25%
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.block {
|
|
690
|
+
display: block
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.before\\:block:before {
|
|
694
|
+
display: block
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.inline-block {
|
|
698
|
+
display: inline-block
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.inline {
|
|
702
|
+
display: inline
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.flex, .open\\:flex[open] {
|
|
706
|
+
display: flex
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.inline-flex {
|
|
710
|
+
display: inline-flex
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.grid {
|
|
714
|
+
display: grid
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.inline-grid {
|
|
718
|
+
display: inline-grid
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.hidden, .group\\/stepv:last-child .group-last\\/stepv\\:hidden {
|
|
722
|
+
display: none
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.before\\:hidden:before {
|
|
726
|
+
display: none
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.hover\\:underline:hover {
|
|
730
|
+
text-decoration-line: underline
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.focus\\:underline:focus {
|
|
734
|
+
text-decoration-line: underline
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.focus-visible\\:underline:focus-visible {
|
|
738
|
+
text-decoration-line: underline
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.active\\:underline:active {
|
|
742
|
+
text-decoration-line: underline
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.hover\\:no-underline:hover {
|
|
746
|
+
text-decoration: none
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.focus\\:no-underline:focus {
|
|
750
|
+
text-decoration: none
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.active\\:no-underline:active {
|
|
754
|
+
text-decoration: none
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.flex-1 {
|
|
758
|
+
flex: 1 1 0%
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.shrink {
|
|
762
|
+
flex-shrink: 1
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.shrink-0 {
|
|
766
|
+
flex-shrink: 0
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.shrink-0\\! {
|
|
770
|
+
flex-shrink: 0 !important
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.grow, .grow-1 {
|
|
774
|
+
flex-grow: 1
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.basis-auto {
|
|
778
|
+
flex-basis: auto
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.flex-col {
|
|
782
|
+
flex-direction: column
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.focus-within\\:focusable:focus-within {
|
|
786
|
+
outline: 2px solid var(--w-s-color-border-focus);
|
|
787
|
+
outline-offset: var(--w-outline-offset, 1px)
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.focusable:focus, .focusable:focus-visible {
|
|
791
|
+
outline: 2px solid var(--w-s-color-border-focus);
|
|
792
|
+
outline-offset: var(--w-outline-offset, 1px)
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.focusable:not(:focus-visible) {
|
|
796
|
+
outline: none
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.peer:focus ~ .peer-focus\\:focusable, .peer:focus-visible ~ .peer-focus\\:focusable {
|
|
800
|
+
outline: 2px solid var(--w-s-color-border-focus);
|
|
801
|
+
outline-offset: var(--w-outline-offset, 1px)
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.peer:not(:focus-visible) ~ .peer-focus\\:focusable {
|
|
805
|
+
outline: none
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.focusable-inset {
|
|
809
|
+
--w-outline-offset: -3px
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.gap-12 {
|
|
813
|
+
gap: 1.2rem
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.gap-8 {
|
|
817
|
+
gap: .8rem
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.gap-x-16 {
|
|
821
|
+
column-gap: 1.6rem
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.gap-y-16 {
|
|
825
|
+
row-gap: 1.6rem
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.row-span-2 {
|
|
829
|
+
grid-row: span 2/span 2
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.col-span-2 {
|
|
833
|
+
grid-column: span 2/span 2
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.col-span-3 {
|
|
837
|
+
grid-column: span 3/span 3
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.row-start-1 {
|
|
841
|
+
grid-row-start: 1
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.row-start-2 {
|
|
845
|
+
grid-row-start: 2
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.col-start-2 {
|
|
849
|
+
grid-column-start: 2
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.auto-rows-auto {
|
|
853
|
+
grid-auto-rows: auto
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.grid-flow-col {
|
|
857
|
+
grid-auto-flow: column
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.grid-rows-\\[20px_auto\\] {
|
|
861
|
+
grid-template-rows:20px auto
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.grid-rows-\\[auto_20px\\] {
|
|
865
|
+
grid-template-rows:auto 20px
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.grid-cols-\\[1fr_20px_1fr\\] {
|
|
869
|
+
grid-template-columns:1fr 20px 1fr
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.grid-cols-\\[1fr_20px\\] {
|
|
873
|
+
grid-template-columns:1fr 20px
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.grid-cols-\\[20px_1fr\\] {
|
|
877
|
+
grid-template-columns:20px 1fr
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.grid-cols-\\[auto_1fr_auto\\] {
|
|
881
|
+
grid-template-columns:auto 1fr auto
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.grid-cols-1 {
|
|
885
|
+
grid-template-columns:repeat(1, minmax(0, 1fr))
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.grid-cols-2 {
|
|
889
|
+
grid-template-columns:repeat(2, minmax(0, 1fr))
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.grid-cols-3 {
|
|
893
|
+
grid-template-columns:repeat(3, minmax(0, 1fr))
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.grid-cols-4 {
|
|
897
|
+
grid-template-columns:repeat(4, minmax(0, 1fr))
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.grid-cols-5 {
|
|
901
|
+
grid-template-columns:repeat(5, minmax(0, 1fr))
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.grid-cols-6 {
|
|
905
|
+
grid-template-columns:repeat(6, minmax(0, 1fr))
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.grid-cols-7 {
|
|
909
|
+
grid-template-columns:repeat(7, minmax(0, 1fr))
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.grid-cols-8 {
|
|
913
|
+
grid-template-columns:repeat(8, minmax(0, 1fr))
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.grid-cols-9 {
|
|
917
|
+
grid-template-columns:repeat(9, minmax(0, 1fr))
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.overflow-hidden {
|
|
921
|
+
overflow: hidden
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.overflow-x-hidden {
|
|
925
|
+
overflow-x: hidden
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.overflow-y-auto {
|
|
929
|
+
overflow-y: auto
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.list-none {
|
|
933
|
+
list-style-type: none
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.outline-\\[--w-s-color-border-negative\\]\\! {
|
|
937
|
+
outline-color: var(--w-s-color-border-negative) !important
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
.outline-none {
|
|
941
|
+
outline: 2px solid transparent;
|
|
942
|
+
outline-offset: 2px
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.focus\\:outline-none:focus {
|
|
946
|
+
outline: 2px solid transparent;
|
|
947
|
+
outline-offset: 2px
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.items-start {
|
|
951
|
+
align-items: flex-start
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.items-end {
|
|
955
|
+
align-items: flex-end
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
.items-center {
|
|
959
|
+
align-items: center
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
.self-center {
|
|
963
|
+
align-self: center
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
.inset-0 {
|
|
967
|
+
top: 0rem;
|
|
968
|
+
right: 0rem;
|
|
969
|
+
bottom: 0rem;
|
|
970
|
+
left: 0rem
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
.-bottom-0 {
|
|
974
|
+
bottom: -0rem
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.bottom-0 {
|
|
978
|
+
bottom: 0rem
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
.bottom-10 {
|
|
982
|
+
bottom: 1rem
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.bottom-16 {
|
|
986
|
+
bottom: 1.6rem
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.left-0 {
|
|
990
|
+
left: 0rem
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.left-4 {
|
|
994
|
+
left: .4rem
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
.right-0 {
|
|
998
|
+
right: 0rem
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
.right-8 {
|
|
1002
|
+
right: .8rem
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.top-\\[1\\.92rem\\] {
|
|
1006
|
+
top: 1.92rem
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
.top-0 {
|
|
1010
|
+
top: 0rem
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.top-20 {
|
|
1014
|
+
top: 2rem
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.top-4 {
|
|
1018
|
+
top: .4rem
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.top-8 {
|
|
1022
|
+
top: .8rem
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.before\\:bottom-0:before {
|
|
1026
|
+
bottom: 0rem
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
.before\\:left-0:before {
|
|
1030
|
+
left: 0rem
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.before\\:right-0:before {
|
|
1034
|
+
right: 0rem
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.before\\:top-2:before {
|
|
1038
|
+
top: .2rem
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.-bottom-\\[8px\\] {
|
|
1042
|
+
bottom: -8px
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
.-left-\\[8px\\] {
|
|
1046
|
+
left: -8px
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.-right-\\[8px\\] {
|
|
1050
|
+
right: -8px
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.-top-\\[8px\\] {
|
|
1054
|
+
top: -8px
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.top-\\[19px\\] {
|
|
1058
|
+
top: 19px
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.top-\\[30\\%\\] {
|
|
1062
|
+
top: 30%
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.justify-end {
|
|
1066
|
+
justify-content: flex-end
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.justify-center {
|
|
1070
|
+
justify-content: center
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.justify-between {
|
|
1074
|
+
justify-content: space-between
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
.justify-items-center {
|
|
1078
|
+
justify-items: center
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.justify-self-start {
|
|
1082
|
+
justify-self: start
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.justify-self-end {
|
|
1086
|
+
justify-self: end
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.justify-self-center {
|
|
1090
|
+
justify-self: center
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.absolute {
|
|
1094
|
+
position: absolute
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.fixed {
|
|
1098
|
+
position: fixed
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
.relative {
|
|
1102
|
+
position: relative
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.open\\:fixed[open] {
|
|
1106
|
+
position: fixed
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
.before\\:absolute:before {
|
|
1110
|
+
position: absolute
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
.z-10, .peer:checked ~ .peer-checked\\:z-10 {
|
|
1114
|
+
z-index: 10
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
.z-30 {
|
|
1118
|
+
z-index: 30
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.z-50 {
|
|
1122
|
+
z-index: 50
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.hover\\:z-30:hover {
|
|
1126
|
+
z-index: 30
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
.\\!s-bg-selected {
|
|
1130
|
+
background-color: var(--w-s-color-background-selected) !important
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
.s-bg {
|
|
1134
|
+
background-color: var(--w-s-color-background)
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.s-bg-disabled {
|
|
1138
|
+
background-color: var(--w-s-color-background-disabled)
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.s-bg-disabled-subtle {
|
|
1142
|
+
background-color: var(--w-s-color-background-disabled-subtle)
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.s-bg-info-subtle {
|
|
1146
|
+
background-color: var(--w-s-color-background-info-subtle)
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.s-bg-inverted {
|
|
1150
|
+
background-color: var(--w-s-color-background-inverted)
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.s-bg-negative {
|
|
1154
|
+
background-color: var(--w-s-color-background-negative)
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.s-bg-negative-subtle {
|
|
1158
|
+
background-color: var(--w-s-color-background-negative-subtle)
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.s-bg-positive-subtle {
|
|
1162
|
+
background-color: var(--w-s-color-background-positive-subtle)
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
.s-bg-primary, .peer:checked ~ .peer-checked\\:s-bg-primary {
|
|
1166
|
+
background-color: var(--w-s-color-background-primary)
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
.s-bg-selected {
|
|
1170
|
+
background-color: var(--w-s-color-background-selected)
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
.s-bg-subtle {
|
|
1174
|
+
background-color: var(--w-s-color-background-subtle)
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
.s-bg-warning-subtle {
|
|
1178
|
+
background-color: var(--w-s-color-background-warning-subtle)
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
.peer:checked:hover ~ .peer-checked\\:peer-hover\\:before\\:s-bg-negative-hover:before {
|
|
1182
|
+
background-color: var(--w-s-color-background-negative-hover)
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
.peer:checked:hover ~ .peer-checked\\:peer-hover\\:before\\:s-bg-primary-hover:before {
|
|
1186
|
+
background-color: var(--w-s-color-background-primary-hover)
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
.peer:checked ~ .peer-checked\\:before\\:s-bg-disabled:before {
|
|
1190
|
+
background-color: var(--w-s-color-background-disabled)
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.peer:checked ~ .peer-checked\\:before\\:s-bg-negative:before {
|
|
1194
|
+
background-color: var(--w-s-color-background-negative)
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
.peer:checked ~ .peer-checked\\:before\\:s-bg-primary:before {
|
|
1198
|
+
background-color: var(--w-s-color-background-primary)
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
.peer:indeterminate ~ .peer-indeterminate\\:before\\:s-bg-disabled:before {
|
|
1202
|
+
background-color: var(--w-s-color-background-disabled)
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
.peer:indeterminate ~ .peer-indeterminate\\:before\\:s-bg-negative:before {
|
|
1206
|
+
background-color: var(--w-s-color-background-negative)
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
.peer:indeterminate ~ .peer-indeterminate\\:before\\:s-bg-primary:before {
|
|
1210
|
+
background-color: var(--w-s-color-background-primary)
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
.peer:indeterminate ~ .peer-indeterminate\\:hover\\:before\\:s-bg-negative-hover:hover:before {
|
|
1214
|
+
background-color: var(--w-s-color-background-negative-hover)
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
.peer:indeterminate ~ .peer-indeterminate\\:hover\\:before\\:s-bg-primary-hover:hover:before {
|
|
1218
|
+
background-color: var(--w-s-color-background-primary-hover)
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
.\\!hover\\:s-bg-selected-hover:hover {
|
|
1222
|
+
background-color: var(--w-s-color-background-selected-hover) !important
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
.group:hover .group-hover\\:s-bg-primary-hover {
|
|
1226
|
+
background-color: var(--w-s-color-background-primary-hover)
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
.hover\\:before\\:s-bg-hover:hover:before {
|
|
1230
|
+
background-color: var(--w-s-color-background-hover)
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
.hover\\:before\\:s-bg-negative-subtle-hover:hover:before {
|
|
1234
|
+
background-color: var(--w-s-color-background-negative-subtle-hover)
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
.hover\\:s-bg-hover:hover {
|
|
1238
|
+
background-color: var(--w-s-color-background-hover)
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.hover\\:s-bg-negative-hover:hover {
|
|
1242
|
+
background-color: var(--w-s-color-background-negative-hover)
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
.hover\\:s-bg-negative-subtle-hover:hover {
|
|
1246
|
+
background-color: var(--w-s-color-background-negative-subtle-hover)
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.hover\\:s-bg-primary-hover:hover {
|
|
1250
|
+
background-color: var(--w-s-color-background-primary-hover)
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
.hover\\:s-bg-selected-hover:hover {
|
|
1254
|
+
background-color: var(--w-s-color-background-selected-hover)
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.peer:hover:not(:checked) ~ .peer-hover\\:peer-not-checked\\:s-bg-hover {
|
|
1258
|
+
background-color: var(--w-s-color-background-hover)
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
.peer:hover ~ .peer-hover\\:before\\:s-bg-hover:before {
|
|
1262
|
+
background-color: var(--w-s-color-background-hover)
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
.peer:hover ~ .peer-hover\\:before\\:s-bg-negative-subtle:before {
|
|
1266
|
+
background-color: var(--w-s-color-background-negative-subtle)
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
.focus\\:s-bg-primary-hover:focus {
|
|
1270
|
+
background-color: var(--w-s-color-background-primary-hover)
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
.\\!active\\:s-bg-selected-active:active {
|
|
1274
|
+
background-color: var(--w-s-color-background-selected-active) !important
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
.active\\:s-bg-active:active {
|
|
1278
|
+
background-color: var(--w-s-color-background-active)
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
.active\\:s-bg-negative-active:active {
|
|
1282
|
+
background-color: var(--w-s-color-background-negative-active)
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
.active\\:s-bg-negative-subtle-active:active {
|
|
1286
|
+
background-color: var(--w-s-color-background-negative-subtle-active)
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
.active\\:s-bg-primary-active:active {
|
|
1290
|
+
background-color: var(--w-s-color-background-primary-active)
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
.active\\:s-bg-selected-active:active {
|
|
1294
|
+
background-color: var(--w-s-color-background-selected-active)
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
.before\\:s-bg-disabled-subtle:before {
|
|
1298
|
+
background-color: var(--w-s-color-background-disabled-subtle)
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.before\\:s-bg:before {
|
|
1302
|
+
background-color: var(--w-s-color-background)
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.s-text {
|
|
1306
|
+
color: var(--w-s-color-text)
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.s-text-disabled {
|
|
1310
|
+
color: var(--w-s-color-text-disabled)
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
.s-text-inverted, .peer:checked ~ .peer-checked\\:s-text-inverted {
|
|
1314
|
+
color: var(--w-s-color-text-inverted)
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.s-text-inverted-static {
|
|
1318
|
+
color: var(--w-s-color-text-inverted-static)
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.s-text-link {
|
|
1322
|
+
color: var(--w-s-color-text-link)
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.s-text-negative {
|
|
1326
|
+
color: var(--w-s-color-text-negative)
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
.s-text-subtle {
|
|
1330
|
+
color: var(--w-s-color-text-subtle)
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
.hover\\:s-text-link:hover {
|
|
1334
|
+
color: var(--w-s-color-text-link)
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.active\\:s-text:active {
|
|
1338
|
+
color: var(--w-s-color-text)
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.placeholder\\:s-text-placeholder::placeholder {
|
|
1342
|
+
color: var(--w-s-color-text-placeholder)
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
.s-icon {
|
|
1346
|
+
color: var(--w-s-color-icon)
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
.s-icon-info {
|
|
1350
|
+
color: var(--w-s-color-icon-info)
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.s-icon-inverted {
|
|
1354
|
+
color: var(--w-s-color-icon-inverted)
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.s-icon-negative {
|
|
1358
|
+
color: var(--w-s-color-icon-negative)
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.s-icon-positive {
|
|
1362
|
+
color: var(--w-s-color-icon-positive)
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.s-icon-warning {
|
|
1366
|
+
color: var(--w-s-color-icon-warning)
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.hover\\:s-icon-hover:hover {
|
|
1370
|
+
color: var(--w-s-color-icon-hover)
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.active\\:s-icon-active:active {
|
|
1374
|
+
color: var(--w-s-color-icon-active)
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.before\\:s-icon-inverted:before {
|
|
1378
|
+
color: var(--w-s-color-icon-inverted)
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.s-border {
|
|
1382
|
+
border-color: var(--w-s-color-border)
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
.s-border-disabled {
|
|
1386
|
+
border-color: var(--w-s-color-border-disabled)
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
.s-border-info-subtle {
|
|
1390
|
+
border-color: var(--w-s-color-border-info-subtle)
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.s-border-l-info {
|
|
1394
|
+
border-left-color: var(--w-s-color-border-info)
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.s-border-l-negative {
|
|
1398
|
+
border-left-color: var(--w-s-color-border-negative)
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.s-border-l-positive {
|
|
1402
|
+
border-left-color: var(--w-s-color-border-positive)
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
.s-border-l-warning {
|
|
1406
|
+
border-left-color: var(--w-s-color-border-warning)
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
.s-border-negative {
|
|
1410
|
+
border-color: var(--w-s-color-border-negative)
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
.s-border-negative-subtle {
|
|
1414
|
+
border-color: var(--w-s-color-border-negative-subtle)
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
.s-border-positive-subtle {
|
|
1418
|
+
border-color: var(--w-s-color-border-positive-subtle)
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.s-border-primary, .peer:checked ~ .peer-checked\\:s-border-primary {
|
|
1422
|
+
border-color: var(--w-s-color-border-primary)
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
.s-border-selected {
|
|
1426
|
+
border-color: var(--w-s-color-border-selected)
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.s-border-warning-subtle {
|
|
1430
|
+
border-color: var(--w-s-color-border-warning-subtle)
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.peer:checked:hover ~ .peer-checked\\:peer-hover\\:before\\:s-border-negative-hover:before {
|
|
1434
|
+
border-color: var(--w-s-color-border-negative-hover)
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.peer:checked:hover ~ .peer-checked\\:peer-hover\\:before\\:s-border-primary-hover:before {
|
|
1438
|
+
border-color: var(--w-s-color-border-primary-hover)
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.peer:checked:hover ~ .peer-checked\\:peer-hover\\:before\\:s-border-selected-hover:before {
|
|
1442
|
+
border-color: var(--w-s-color-border-selected-hover)
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
.peer:checked ~ .peer-checked\\:before\\:s-border-disabled:before {
|
|
1446
|
+
border-color: var(--w-s-color-border-disabled)
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
.peer:checked ~ .peer-checked\\:before\\:s-border-negative:before {
|
|
1450
|
+
border-color: var(--w-s-color-border-negative)
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
.peer:checked ~ .peer-checked\\:before\\:s-border-primary:before {
|
|
1454
|
+
border-color: var(--w-s-color-border-primary)
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
.peer:checked ~ .peer-checked\\:before\\:s-border-selected:before {
|
|
1458
|
+
border-color: var(--w-s-color-border-selected)
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.peer:indeterminate ~ .peer-indeterminate\\:before\\:s-border-disabled:before {
|
|
1462
|
+
border-color: var(--w-s-color-border-disabled)
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
.peer:indeterminate ~ .peer-indeterminate\\:before\\:s-border-negative:before {
|
|
1466
|
+
border-color: var(--w-s-color-border-negative)
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
.peer:indeterminate ~ .peer-indeterminate\\:before\\:s-border-primary:before {
|
|
1470
|
+
border-color: var(--w-s-color-border-primary)
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.peer:indeterminate ~ .peer-indeterminate\\:hover\\:before\\:s-border-negative-hover:hover:before {
|
|
1474
|
+
border-color: var(--w-s-color-border-negative-hover)
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.peer:indeterminate ~ .peer-indeterminate\\:hover\\:before\\:s-border-primary-hover:hover:before {
|
|
1478
|
+
border-color: var(--w-s-color-border-primary-hover)
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.group:hover .group-hover\\:s-border-selected-hover {
|
|
1482
|
+
border-color: var(--w-s-color-border-selected-hover)
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.hover\\:before\\:s-border-negative-hover:hover:before {
|
|
1486
|
+
border-color: var(--w-s-color-border-negative-hover)
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.hover\\:before\\:s-border-primary:hover:before {
|
|
1490
|
+
border-color: var(--w-s-color-border-primary)
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
.hover\\:s-border-disabled:hover {
|
|
1494
|
+
border-color: var(--w-s-color-border-disabled)
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.hover\\:s-border-hover:hover {
|
|
1498
|
+
border-color: var(--w-s-color-border-hover)
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.hover\\:s-border-negative-hover:hover {
|
|
1502
|
+
border-color: var(--w-s-color-border-negative-hover)
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.hover\\:s-border-primary-hover:hover {
|
|
1506
|
+
border-color: var(--w-s-color-border-primary-hover)
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
.hover\\:s-border-primary:hover {
|
|
1510
|
+
border-color: var(--w-s-color-border-primary)
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.hover\\:s-border-selected-hover:hover {
|
|
1514
|
+
border-color: var(--w-s-color-border-selected-hover)
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.peer:hover ~ .peer-hover\\:before\\:s-border-negative-hover:before {
|
|
1518
|
+
border-color: var(--w-s-color-border-negative-hover)
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.peer:hover ~ .peer-hover\\:before\\:s-border-primary:before {
|
|
1522
|
+
border-color: var(--w-s-color-border-primary)
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.focus\\:s-border-primary-hover:focus {
|
|
1526
|
+
border-color: var(--w-s-color-border-primary-hover)
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.active\\:s-border-active:active {
|
|
1530
|
+
border-color: var(--w-s-color-border-active)
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.active\\:s-border-disabled:active {
|
|
1534
|
+
border-color: var(--w-s-color-border-disabled)
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
.active\\:s-border-primary-active:active {
|
|
1538
|
+
border-color: var(--w-s-color-border-primary-active)
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.active\\:s-border-selected-active:active {
|
|
1542
|
+
border-color: var(--w-s-color-border-selected-active)
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.active\\:s-border-selected:active {
|
|
1546
|
+
border-color: var(--w-s-color-border-selected)
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
.group:active .group-active\\:s-border-active {
|
|
1550
|
+
border-color: var(--w-s-color-border-active)
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
.group:active .group-active\\:s-border-selected-active {
|
|
1554
|
+
border-color: var(--w-s-color-border-selected-active)
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
.before\\:s-border-disabled:before {
|
|
1558
|
+
border-color: var(--w-s-color-border-disabled)
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.before\\:s-border-negative:before {
|
|
1562
|
+
border-color: var(--w-s-color-border-negative)
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.s-surface-sunken {
|
|
1566
|
+
background-color: var(--w-s-color-surface-sunken)
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.s-surface-elevated-200 {
|
|
1570
|
+
background-color: var(--w-s-color-surface-elevated-200);
|
|
1571
|
+
box-shadow: var(--w-s-shadow-surface-elevated-200)
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.hover\\:s-surface-elevated-200-hover:hover {
|
|
1575
|
+
background-color: var(--w-s-color-surface-elevated-200-hover);
|
|
1576
|
+
box-shadow: var(--w-s-shadow-surface-elevated-200-hover)
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
.active\\:s-surface-elevated-200-active:active {
|
|
1580
|
+
background-color: var(--w-s-color-surface-elevated-200-active);
|
|
1581
|
+
box-shadow: var(--w-s-shadow-surface-elevated-200-active)
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
.drop-shadow-m {
|
|
1585
|
+
filter: drop-shadow(rgba(64, 64, 64, .24) 0 3px 8px) drop-shadow(rgba(64, 64, 64, .16) 0 3px 6px)
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
.shadow-m {
|
|
1589
|
+
box-shadow: var(--w-shadow-m)
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
.shadow-s {
|
|
1593
|
+
box-shadow: var(--w-shadow-s)
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.shadow-\\[--w-shadow-slider\\] {
|
|
1597
|
+
box-shadow: var(--w-shadow-slider)
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
.hover\\:shadow-\\[--w-shadow-slider-handle-hover\\]:hover {
|
|
1601
|
+
box-shadow: var(--w-shadow-slider-handle-hover)
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
.focus\\:shadow-\\[--w-shadow-slider-handle-hover\\]:focus {
|
|
1605
|
+
box-shadow: var(--w-shadow-slider-handle-hover)
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
.active\\:shadow-\\[--w-shadow-slider-handle-active\\]:active {
|
|
1609
|
+
box-shadow: var(--w-shadow-slider-handle-active)
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
.h-0 {
|
|
1613
|
+
height: 0rem
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.h-16 {
|
|
1617
|
+
height: 1.6rem
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
.h-2 {
|
|
1621
|
+
height: .2rem
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
.h-20 {
|
|
1625
|
+
height: 2rem
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
.h-24 {
|
|
1629
|
+
height: 2.4rem
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
.h-4 {
|
|
1633
|
+
height: .4rem
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
.h-44 {
|
|
1637
|
+
height: 4.4rem
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
.h-6 {
|
|
1641
|
+
height: .6rem
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
.h-8 {
|
|
1645
|
+
height: .8rem
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
.h-full {
|
|
1649
|
+
height: 100%
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
.h-unset {
|
|
1653
|
+
height: unset
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
.max-h-unset {
|
|
1657
|
+
max-height: unset
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
.max-w-full {
|
|
1661
|
+
max-width: 100%
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
|
+
.max-w-max {
|
|
1665
|
+
max-width: max-content
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
.max-w-unset {
|
|
1669
|
+
max-width: unset
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
.min-h-32 {
|
|
1673
|
+
min-height: 3.2rem
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.min-h-40 {
|
|
1677
|
+
min-height: 4rem
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
.min-w-16 {
|
|
1681
|
+
min-width: 1.6rem
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
.min-w-32 {
|
|
1685
|
+
min-width: 3.2rem
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
.w-16 {
|
|
1689
|
+
width: 1.6rem
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
.w-2 {
|
|
1693
|
+
width: .2rem
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
.w-20 {
|
|
1697
|
+
width: 2rem
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
.w-24 {
|
|
1701
|
+
width: 2.4rem
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
.w-32 {
|
|
1705
|
+
width: 3.2rem
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
.w-40 {
|
|
1709
|
+
width: 4rem
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
.w-44 {
|
|
1713
|
+
width: 4.4rem
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
.w-8 {
|
|
1717
|
+
width: .8rem
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
.w-full {
|
|
1721
|
+
width: 100%
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
.w-max {
|
|
1725
|
+
width: max-content
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
.w-unset {
|
|
1729
|
+
width: unset
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
.before\\:h-20:before {
|
|
1733
|
+
height: 2rem
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
.before\\:h-full:before {
|
|
1737
|
+
height: 100%
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
.before\\:w-20:before {
|
|
1741
|
+
width: 2rem
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
.before\\:w-32:before {
|
|
1745
|
+
width: 3.2rem
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
.h-\\[--w-modal-height\\] {
|
|
1749
|
+
height: var(--w-modal-height)
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
.h-\\[14px\\] {
|
|
1753
|
+
height: 14px
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
.h-\\[16px\\] {
|
|
1757
|
+
height: 16px
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
.max-h-\\[--w-modal-max-height\\] {
|
|
1761
|
+
max-height: var(--w-modal-max-height)
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
.min-h-\\[--w-modal-min-height\\] {
|
|
1765
|
+
min-height: var(--w-modal-min-height)
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
.min-h-\\[32px\\] {
|
|
1769
|
+
min-height: 32px
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
.min-h-\\[40px\\] {
|
|
1773
|
+
min-height: 40px
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
.min-h-\\[42\\] {
|
|
1777
|
+
min-height: 4.2rem
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
.min-h-\\[44px\\] {
|
|
1781
|
+
min-height: 44px
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
.min-w-\\[32px\\] {
|
|
1785
|
+
min-width: 32px
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
.min-w-\\[40px\\] {
|
|
1789
|
+
min-width: 40px
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
.min-w-\\[44px\\] {
|
|
1793
|
+
min-width: 44px
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
.w-\\[--w-modal-width\\] {
|
|
1797
|
+
width: var(--w-modal-width)
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
.w-\\[14px\\] {
|
|
1801
|
+
width: 14px
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.w-\\[16px\\] {
|
|
1805
|
+
width: 16px
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
|
|
1809
|
+
--w-space-x-reverse: 0;
|
|
1810
|
+
margin-left: calc(.8rem * calc(1 - var(--w-space-x-reverse)));
|
|
1811
|
+
margin-right: calc(.8rem * var(--w-space-x-reverse))
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
.space-y-16 > :not([hidden]) ~ :not([hidden]) {
|
|
1815
|
+
--w-space-y-reverse: 0;
|
|
1816
|
+
margin-top: calc(1.6rem * calc(1 - var(--w-space-y-reverse)));
|
|
1817
|
+
margin-bottom: calc(1.6rem * var(--w-space-y-reverse))
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
.m-0 {
|
|
1821
|
+
margin: 0rem
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
.m-auto {
|
|
1825
|
+
margin: auto
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.-mx-16 {
|
|
1829
|
+
margin-left: -1.6rem;
|
|
1830
|
+
margin-right: -1.6rem
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
.mx-0 {
|
|
1834
|
+
margin-left: 0rem;
|
|
1835
|
+
margin-right: 0rem
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
.mx-8 {
|
|
1839
|
+
margin-left: .8rem;
|
|
1840
|
+
margin-right: .8rem
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.mx-auto {
|
|
1844
|
+
margin-left: auto;
|
|
1845
|
+
margin-right: auto
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
.-mb-1 {
|
|
1849
|
+
margin-bottom: -.1rem
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
.-ml-8 {
|
|
1853
|
+
margin-left: -.8rem
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
.-mr-1 {
|
|
1857
|
+
margin-right: -.1rem
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.-mr-8 {
|
|
1861
|
+
margin-right: -.8rem
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.-mt-2 {
|
|
1865
|
+
margin-top: -.2rem
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.-mt-4 {
|
|
1869
|
+
margin-top: -.4rem
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
.last-child\\:mb-0 > :last-child, .mb-0 {
|
|
1873
|
+
margin-bottom: 0rem
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
.mb-32 {
|
|
1877
|
+
margin-bottom: 3.2rem
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
.ml-8 {
|
|
1881
|
+
margin-left: .8rem
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
.ml-auto {
|
|
1885
|
+
margin-left: auto
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.mr-8 {
|
|
1889
|
+
margin-right: .8rem
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
.mt-16 {
|
|
1893
|
+
margin-top: 1.6rem
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
.mt-4 {
|
|
1897
|
+
margin-top: .4rem
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
.group:not(:first-child) .group-not-first\\:-ml-2 {
|
|
1901
|
+
margin-left: -.2rem
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
.last\\:mb-0:last-child {
|
|
1905
|
+
margin-bottom: 0rem
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
.last\\:mr-0:last-child {
|
|
1909
|
+
margin-right: 0rem
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
.m-\\[8px\\] {
|
|
1913
|
+
margin: 8px
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.p-0 {
|
|
1917
|
+
padding: 0rem
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
.p-16 {
|
|
1921
|
+
padding: 1.6rem
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
.p-4 {
|
|
1925
|
+
padding: .4rem
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.p-8 {
|
|
1929
|
+
padding: .8rem
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
.px-0 {
|
|
1933
|
+
padding-left: 0rem;
|
|
1934
|
+
padding-right: 0rem
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.px-1 {
|
|
1938
|
+
padding-left: .1rem;
|
|
1939
|
+
padding-right: .1rem
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
.px-12 {
|
|
1943
|
+
padding-left: 1.2rem;
|
|
1944
|
+
padding-right: 1.2rem
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
.px-14 {
|
|
1948
|
+
padding-left: 1.4rem;
|
|
1949
|
+
padding-right: 1.4rem
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
.px-16 {
|
|
1953
|
+
padding-left: 1.6rem;
|
|
1954
|
+
padding-right: 1.6rem
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.px-8 {
|
|
1958
|
+
padding-left: .8rem;
|
|
1959
|
+
padding-right: .8rem
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
.py-0 {
|
|
1963
|
+
padding-top: 0rem;
|
|
1964
|
+
padding-bottom: 0rem
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
.py-1 {
|
|
1968
|
+
padding-top: .1rem;
|
|
1969
|
+
padding-bottom: .1rem
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
.py-10 {
|
|
1973
|
+
padding-top: 1rem;
|
|
1974
|
+
padding-bottom: 1rem
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
.py-12 {
|
|
1978
|
+
padding-top: 1.2rem;
|
|
1979
|
+
padding-bottom: 1.2rem
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
.py-2 {
|
|
1983
|
+
padding-top: .2rem;
|
|
1984
|
+
padding-bottom: .2rem
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
.py-4 {
|
|
1988
|
+
padding-top: .4rem;
|
|
1989
|
+
padding-bottom: .4rem
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
.py-6 {
|
|
1993
|
+
padding-top: .6rem;
|
|
1994
|
+
padding-bottom: .6rem
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
.py-8 {
|
|
1998
|
+
padding-top: .8rem;
|
|
1999
|
+
padding-bottom: .8rem
|
|
2000
|
+
}
|
|
2001
|
+
|
|
2002
|
+
.pb-0 {
|
|
2003
|
+
padding-bottom: 0rem
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
.pb-32 {
|
|
2007
|
+
padding-bottom: 3.2rem
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
.pb-4 {
|
|
2011
|
+
padding-bottom: .4rem
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
.pb-8 {
|
|
2015
|
+
padding-bottom: .8rem
|
|
2016
|
+
}
|
|
2017
|
+
|
|
2018
|
+
.pl-0 {
|
|
2019
|
+
padding-left: 0rem
|
|
2020
|
+
}
|
|
2021
|
+
|
|
2022
|
+
.pl-1 {
|
|
2023
|
+
padding-left: .1rem
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
.pl-12 {
|
|
2027
|
+
padding-left: 1.2rem
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
.pl-28 {
|
|
2031
|
+
padding-left: 2.8rem
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
.pl-4 {
|
|
2035
|
+
padding-left: .4rem
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
.pl-8 {
|
|
2039
|
+
padding-left: .8rem
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
.pr-12 {
|
|
2043
|
+
padding-right: 1.2rem
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
.pr-14 {
|
|
2047
|
+
padding-right: 1.4rem
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
.pr-2 {
|
|
2051
|
+
padding-right: .2rem
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
.pr-32 {
|
|
2055
|
+
padding-right: 3.2rem
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
.pr-40 {
|
|
2059
|
+
padding-right: 4rem
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
.pt-0 {
|
|
2063
|
+
padding-top: 0rem
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
.pt-1 {
|
|
2067
|
+
padding-top: .1rem
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
.pt-16 {
|
|
2071
|
+
padding-top: 1.6rem
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
.pt-24 {
|
|
2075
|
+
padding-top: 2.4rem
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
.pt-8 {
|
|
2079
|
+
padding-top: .8rem
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
.group\\/step:last-child .group-last\\/step\\:last\\:pb-0:last-child {
|
|
2083
|
+
padding-bottom: 0rem
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
.last\\:pb-1:last-child {
|
|
2087
|
+
padding-bottom: .1rem
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
.last\\:pr-1:last-child {
|
|
2091
|
+
padding-right: .1rem
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
.p-\\[8px\\] {
|
|
2095
|
+
padding: 8px
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
.px-\\[15px\\] {
|
|
2099
|
+
padding-left: 15px;
|
|
2100
|
+
padding-right: 15px
|
|
2101
|
+
}
|
|
2102
|
+
|
|
2103
|
+
.px-\\[8px\\] {
|
|
2104
|
+
padding-left: 8px;
|
|
2105
|
+
padding-right: 8px
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
.py-\\[11px\\] {
|
|
2109
|
+
padding-top: 11px;
|
|
2110
|
+
padding-bottom: 11px
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
.py-\\[5px\\] {
|
|
2114
|
+
padding-top: 5px;
|
|
2115
|
+
padding-bottom: 5px
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
.py-\\[7px\\] {
|
|
2119
|
+
padding-top: 7px;
|
|
2120
|
+
padding-bottom: 7px
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
.pl-\\[var\\(--w-prefix-width\\,_40px\\)\\] {
|
|
2124
|
+
padding-left: var(--w-prefix-width, 40px)
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
.invisible {
|
|
2128
|
+
visibility: hidden
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
.backface-hidden {
|
|
2132
|
+
backface-visibility: hidden
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
.break-words {
|
|
2136
|
+
overflow-wrap: break-word
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
.before\\:content-\\[\\"–\\"\\]:before {
|
|
2140
|
+
content: "–"
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
.before\\:content-\\[\\"\\"\\]:before {
|
|
2144
|
+
content: ""
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
.cursor-default {
|
|
2148
|
+
cursor: default
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.cursor-pointer {
|
|
2152
|
+
cursor: pointer
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
.antialiased {
|
|
2156
|
+
-webkit-font-smoothing: antialiased;
|
|
2157
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2158
|
+
font-smoothing: grayscale
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
.font-bold {
|
|
2162
|
+
font-weight: 700
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2165
|
+
.before\\:font-bold:before {
|
|
2166
|
+
font-weight: 700
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2169
|
+
.font-normal {
|
|
2170
|
+
font-weight: 400
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
.pointer-events-auto {
|
|
2174
|
+
pointer-events: auto
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
.pointer-events-none {
|
|
2178
|
+
pointer-events: none
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
.before\\:pointer-events-none:before {
|
|
2182
|
+
pointer-events: none
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
.pb-safe-\\[32\\] {
|
|
2186
|
+
padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px))
|
|
2187
|
+
}
|
|
2188
|
+
|
|
2189
|
+
.sr-only {
|
|
2190
|
+
position: absolute;
|
|
2191
|
+
width: 1px;
|
|
2192
|
+
height: 1px;
|
|
2193
|
+
padding: 0;
|
|
2194
|
+
margin: -1px;
|
|
2195
|
+
overflow: hidden;
|
|
2196
|
+
clip: rect(0, 0, 0, 0);
|
|
2197
|
+
white-space: nowrap;
|
|
2198
|
+
border-width: 0
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
.touch-pan-y {
|
|
2202
|
+
touch-action: pan-y
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
.select-none {
|
|
2206
|
+
-webkit-user-select: none;
|
|
2207
|
+
user-select: none
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2210
|
+
.translate-x-20 {
|
|
2211
|
+
--w-translate-x: 2rem;
|
|
2212
|
+
transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
.translate-z-0 {
|
|
2216
|
+
--w-translate-z: 0rem;
|
|
2217
|
+
transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
.-rotate-180, .part-\\[w-icon-chevron-down-16-part\\]\\:-rotate-180::part(w-icon-chevron-down-16-part) {
|
|
2221
|
+
--w-rotate-x: 0;
|
|
2222
|
+
--w-rotate-y: 0;
|
|
2223
|
+
--w-rotate-z: 0;
|
|
2224
|
+
--w-rotate: -180deg;
|
|
2225
|
+
transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
.part-\\[w-icon-chevron-up-16-part\\]\\:rotate-180::part(w-icon-chevron-up-16-part), .rotate-180 {
|
|
2229
|
+
--w-rotate-x: 0;
|
|
2230
|
+
--w-rotate-y: 0;
|
|
2231
|
+
--w-rotate-z: 0;
|
|
2232
|
+
--w-rotate: 180deg;
|
|
2233
|
+
transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
.rotate-90 {
|
|
2237
|
+
--w-rotate-x: 0;
|
|
2238
|
+
--w-rotate-y: 0;
|
|
2239
|
+
--w-rotate-z: 0;
|
|
2240
|
+
--w-rotate: 90deg;
|
|
2241
|
+
transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
.part-\\[w-icon-chevron-down-16-part\\]\\:transform::part(w-icon-chevron-down-16-part), .part-\\[w-icon-chevron-up-16-part\\]\\:transform::part(w-icon-chevron-up-16-part), .transform {
|
|
2245
|
+
transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
.part-\\[w-icon-chevron-down-16-part\\]\\:transform-gpu::part(w-icon-chevron-down-16-part), .part-\\[w-icon-chevron-up-16-part\\]\\:transform-gpu::part(w-icon-chevron-up-16-part), .transform-gpu {
|
|
2249
|
+
transform: translate3d(var(--w-translate-x), var(--w-translate-y), var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
.part-\\[w-icon-chevron-down-16-part\\]\\:transition-transform::part(w-icon-chevron-down-16-part), .part-\\[w-icon-chevron-up-16-part\\]\\:transition-transform::part(w-icon-chevron-up-16-part), .transition-transform {
|
|
2253
|
+
transition-property: transform;
|
|
2254
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
2255
|
+
transition-duration: .15s
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
.transition-300 {
|
|
2259
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
2260
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
2261
|
+
transition-duration: .3s
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
.transition-all {
|
|
2265
|
+
transition-property: all;
|
|
2266
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
2267
|
+
transition-duration: .15s
|
|
2268
|
+
}
|
|
2269
|
+
|
|
2270
|
+
.transition-colors {
|
|
2271
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
2272
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
2273
|
+
transition-duration: .15s
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2276
|
+
.transition-shadow {
|
|
2277
|
+
transition-property: box-shadow;
|
|
2278
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
2279
|
+
transition-duration: .15s
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
.before\\:transition-all:before {
|
|
2283
|
+
transition-property: all;
|
|
2284
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
2285
|
+
transition-duration: .15s
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
.duration-300 {
|
|
2289
|
+
transition-duration: .3s
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
.ease-in-out, .part-\\[w-icon-chevron-down-16-part\\]\\:ease-in-out::part(w-icon-chevron-down-16-part), .part-\\[w-icon-chevron-up-16-part\\]\\:ease-in-out::part(w-icon-chevron-up-16-part) {
|
|
2293
|
+
transition-timing-function: cubic-bezier(.4, 0, .2, 1)
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
.text-m {
|
|
2297
|
+
font-size: var(--w-font-size-m);
|
|
2298
|
+
line-height: var(--w-line-height-m)
|
|
2299
|
+
}
|
|
2300
|
+
|
|
2301
|
+
.text-s {
|
|
2302
|
+
font-size: var(--w-font-size-s);
|
|
2303
|
+
line-height: var(--w-line-height-s)
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
.text-xs {
|
|
2307
|
+
font-size: var(--w-font-size-xs);
|
|
2308
|
+
line-height: var(--w-line-height-xs)
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
.leading-m {
|
|
2312
|
+
line-height: var(--w-line-height-m)
|
|
2313
|
+
}
|
|
2314
|
+
|
|
2315
|
+
.before\\:leading-xs:before {
|
|
2316
|
+
line-height: var(--w-line-height-xs)
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
.leading-\\[24\\] {
|
|
2320
|
+
line-height: 2.4rem
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
@media (max-width: 479.9px) {
|
|
2324
|
+
.lt-sm\\:rounded-b-0 {
|
|
2325
|
+
border-bottom-left-radius: 0;
|
|
2326
|
+
border-bottom-right-radius: 0
|
|
2327
|
+
}
|
|
2328
|
+
}
|
|
2329
|
+
@media (min-width: 480px) {
|
|
2330
|
+
.sm\\:border-b-0 {
|
|
2331
|
+
border-bottom-width: 0
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
.sm\\:rounded-8 {
|
|
2335
|
+
border-radius: 8px
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
.sm\\:rounded-b-8 {
|
|
2339
|
+
border-bottom-left-radius: 8px;
|
|
2340
|
+
border-bottom-right-radius: 8px
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
.sm\\:gap-16 {
|
|
2344
|
+
gap: 1.6rem
|
|
2345
|
+
}
|
|
2346
|
+
|
|
2347
|
+
.sm\\:place-content-center {
|
|
2348
|
+
place-content: center
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2351
|
+
.sm\\:place-items-center {
|
|
2352
|
+
place-items: center
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2355
|
+
.sm\\:h-24 {
|
|
2356
|
+
height: 2.4rem
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
.sm\\:min-h-48 {
|
|
2360
|
+
min-height: 4.8rem
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
.sm\\:w-24 {
|
|
2364
|
+
width: 2.4rem
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
.sm\\:min-h-\\[32px\\] {
|
|
2368
|
+
min-height: 32px
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.sm\\:min-h-\\[44px\\] {
|
|
2372
|
+
min-height: 44px
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
.sm\\:min-h-\\[45\\] {
|
|
2376
|
+
min-height: 4.5rem
|
|
2377
|
+
}
|
|
2378
|
+
|
|
2379
|
+
.sm\\:min-w-\\[32px\\] {
|
|
2380
|
+
min-width: 32px
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
.sm\\:min-w-\\[44px\\] {
|
|
2384
|
+
min-width: 44px
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
.sm\\:mx-0 {
|
|
2388
|
+
margin-left: 0rem;
|
|
2389
|
+
margin-right: 0rem
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
.sm\\:mx-16 {
|
|
2393
|
+
margin-left: 1.6rem;
|
|
2394
|
+
margin-right: 1.6rem
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2397
|
+
.sm\\:-ml-12 {
|
|
2398
|
+
margin-left: -1.2rem
|
|
2399
|
+
}
|
|
2400
|
+
|
|
2401
|
+
.sm\\:-mr-12 {
|
|
2402
|
+
margin-right: -1.2rem
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2405
|
+
.sm\\:-mt-8 {
|
|
2406
|
+
margin-top: -.8rem
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
.sm\\:px-32 {
|
|
2410
|
+
padding-left: 3.2rem;
|
|
2411
|
+
padding-right: 3.2rem
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
.sm\\:py-0 {
|
|
2415
|
+
padding-top: 0rem;
|
|
2416
|
+
padding-bottom: 0rem
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
.sm\\:pb-32 {
|
|
2420
|
+
padding-bottom: 3.2rem
|
|
2421
|
+
}
|
|
2422
|
+
|
|
2423
|
+
.sm\\:pt-24 {
|
|
2424
|
+
padding-top: 2.4rem
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
.sm\\:pt-32 {
|
|
2428
|
+
padding-top: 3.2rem
|
|
2429
|
+
}
|
|
2430
|
+
}
|
|
2431
|
+
@media (min-width: 768px) {
|
|
2432
|
+
.md\\:block {
|
|
2433
|
+
display: block
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
.md\\:hidden {
|
|
2437
|
+
display: none
|
|
2438
|
+
}
|
|
2439
|
+
}
|
|
2440
|
+
`;import{css as v}from"lit";var b=v`*,:before,:after{--w-rotate:0;--w-rotate-x:0;--w-rotate-y:0;--w-rotate-z:0;--w-scale-x:1;--w-scale-y:1;--w-scale-z:1;--w-skew-x:0;--w-skew-y:0;--w-translate-x:0;--w-translate-y:0;--w-translate-z:0}.border-b{border-bottom-width:1px}.border-b-4{border-bottom-width:4px}.inline-block{display:inline-block}.inline-grid{display:inline-grid}.hidden{display:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.-bottom-0{bottom:0}.absolute{position:absolute}.relative{position:relative}.static{position:static}.s-border{border-color:var(--w-s-color-border)}.s-border-selected{border-color:var(--w-s-color-border-selected)}.-mb-1{margin-bottom:-.1rem}.mb-32{margin-bottom:3.2rem}.resize{resize:both}.transition-all{transition-property:all;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.bg-transparent{background-color:#0000}.appearance-none{-webkit-appearance:none;appearance:none}.border-0{border-width:0}.border-b-4{border-bottom-width:4px}.border-transparent{border-color:#0000}.inline-block{display:inline-block}.flex{display:flex}.grid{display:grid}.focusable:focus{outline:2px solid var(--w-s-color-border-focus);outline-offset:var(--w-outline-offset,1px)}.focusable:focus-visible{outline:2px solid var(--w-s-color-border-focus);outline-offset:var(--w-outline-offset,1px)}.focusable:not(:focus-visible){outline:none}.gap-8{gap:.8rem}.focus\\:outline-none:focus{outline-offset:2px;outline:2px solid #0000}.items-center{align-items:center}.justify-center{justify-content:center}.static{position:static}.s-text-link{color:var(--w-s-color-text-link)}.s-text-subtle{color:var(--w-s-color-text-subtle)}.hover\\:s-text-link:hover{color:var(--w-s-color-text-link)}.s-border-selected{border-color:var(--w-s-color-border-selected)}.hover\\:s-border-primary:hover{border-color:var(--w-s-color-border-primary)}.m-0{margin:0}.mx-auto{margin-left:auto;margin-right:auto}.p-0{padding:0}.p-16{padding:1.6rem}.pb-8{padding-bottom:.8rem}.cursor-pointer{cursor:pointer}.font-bold{font-weight:700}.w-full{width: 100%;}`;var o=class extends m{constructor(){super(...arguments);this.hidden=!0}connectedCallback(){super.connectedCallback(),this.setAttribute("tabindex","-1"),this.setAttribute("role","tabpanel"),this._syncA11yAttributes()}updated(){this._syncA11yAttributes()}_syncA11yAttributes(){this.id&&this.setAttribute("aria-labelledby",`warp-tab-${this.id}`)}render(){return h`<slot></slot>`}};o.styles=[s,b],l([u({type:Boolean,reflect:!0})],o.prototype,"hidden",2);customElements.get("w-tab-panel")||customElements.define("w-tab-panel",o);export{o as WarpTabPanel};
|
|
2441
|
+
//# sourceMappingURL=tab-panel.js.map
|