@rebnd/ui 0.0.1
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/LICENSE +21 -0
- package/README.md +74 -0
- package/dist/index.d.ts +542 -0
- package/dist/src/App.vue.d.ts +2 -0
- package/dist/src/assets/constants/icons.d.ts +3 -0
- package/dist/src/components/RAccordion/RAccordion.d.ts +27 -0
- package/dist/src/components/RAccordion/utils/accordion.props.d.ts +14 -0
- package/dist/src/components/RAccordion/utils/accordion.style.d.ts +2 -0
- package/dist/src/components/RAvatar/RAvatar.d.ts +48 -0
- package/dist/src/components/RAvatar/utils/avatar.props.d.ts +24 -0
- package/dist/src/components/RAvatar/utils/avatar.style.d.ts +45 -0
- package/dist/src/components/RAvatarGroup/RAvatarGroup.d.ts +27 -0
- package/dist/src/components/RAvatarGroup/utils/avatar-group.props.d.ts +14 -0
- package/dist/src/components/RAvatarGroup/utils/avatar-group.style.d.ts +5 -0
- package/dist/src/components/RBadge/RBadge.d.ts +69 -0
- package/dist/src/components/RBadge/utils/badge.props.d.ts +33 -0
- package/dist/src/components/RBadge/utils/badge.style.d.ts +117 -0
- package/dist/src/components/RBreadcrumb/RBreadcrumb.d.ts +26 -0
- package/dist/src/components/RBreadcrumb/utils/breadcrumb.props.d.ts +13 -0
- package/dist/src/components/RBreadcrumb/utils/breadcrumb.style.d.ts +2 -0
- package/dist/src/components/RButton/RButton.d.ts +51 -0
- package/dist/src/components/RButton/utils/button.props.d.ts +25 -0
- package/dist/src/components/RButton/utils/button.style.d.ts +102 -0
- package/dist/src/components/RCard/RCard.d.ts +16 -0
- package/dist/src/components/RCard/utils/card.props.d.ts +8 -0
- package/dist/src/components/RCard/utils/card.style.d.ts +2 -0
- package/dist/src/components/RCombobox/RCombobox.d.ts +37 -0
- package/dist/src/components/RCombobox/utils/combobox.props.d.ts +15 -0
- package/dist/src/components/RCombobox/utils/combobox.style.d.ts +1 -0
- package/dist/src/components/RDropdown/RDropdown.d.ts +43 -0
- package/dist/src/components/RDropdown/utils/dropdown.props.d.ts +21 -0
- package/dist/src/components/RDropdown/utils/dropdown.style.d.ts +2 -0
- package/dist/src/components/RForm/RForm.d.ts +24 -0
- package/dist/src/components/RForm/utils/form.props.d.ts +13 -0
- package/dist/src/components/RForm/utils/form.style.d.ts +2 -0
- package/dist/src/components/RFormGroup/RFormGroup.d.ts +16 -0
- package/dist/src/components/RFormGroup/utils/form-group.props.d.ts +7 -0
- package/dist/src/components/RFormGroup/utils/form-group.style.d.ts +2 -0
- package/dist/src/components/RIcon/RIcon.d.ts +42 -0
- package/dist/src/components/RIcon/utils/icon.props.d.ts +21 -0
- package/dist/src/components/RIcon/utils/icon.style.d.ts +2 -0
- package/dist/src/components/RInput/RInput.d.ts +27 -0
- package/dist/src/components/RInput/utils/input.props.d.ts +11 -0
- package/dist/src/components/RInput/utils/input.style.d.ts +2 -0
- package/dist/src/components/RLink/RLink.d.ts +16 -0
- package/dist/src/components/RLink/utils/link.props.d.ts +9 -0
- package/dist/src/components/RLink/utils/link.style.d.ts +2 -0
- package/dist/src/components/RTab/RTab.d.ts +24 -0
- package/dist/src/components/RTab/utils/tab.props.d.ts +11 -0
- package/dist/src/components/RTab/utils/tab.style.d.ts +2 -0
- package/dist/src/components/RTabs/RTabs.d.ts +40 -0
- package/dist/src/components/RTabs/utils/tabs.props.d.ts +19 -0
- package/dist/src/components/RTabs/utils/tabs.style.d.ts +37 -0
- package/dist/src/components/RTextArea/RTextArea.d.ts +25 -0
- package/dist/src/components/RTextArea/utils/text-area.props.d.ts +11 -0
- package/dist/src/components/RTextArea/utils/text-area.style.d.ts +2 -0
- package/dist/src/main.d.ts +0 -0
- package/dist/src/theme/animations.d.ts +6 -0
- package/dist/src/theme/colors.d.ts +248 -0
- package/dist/src/theme/global-css.d.ts +2 -0
- package/dist/src/theme/index.d.ts +5 -0
- package/dist/src/theme/keyframes.d.ts +2 -0
- package/dist/src/theme/semantic-tokens.d.ts +133 -0
- package/dist/src/theme/shadows.d.ts +59 -0
- package/dist/src/theme/tokens.d.ts +313 -0
- package/dist/src/types/component.d.ts +26 -0
- package/dist/src/types/form.d.ts +8 -0
- package/dist/src/types/index.d.ts +3 -0
- package/dist/src/utils/components.d.ts +4 -0
- package/dist/src/utils/errorHandler.d.ts +4 -0
- package/dist/src/utils/object.d.ts +2 -0
- package/dist/src/utils/regex.d.ts +5 -0
- package/dist/src/utils/string.d.ts +4 -0
- package/dist/src/utils/test.d.ts +2 -0
- package/dist/styles.css +1886 -0
- package/dist/ui.js +2577 -0
- package/dist/ui.umd.cjs +3 -0
- package/package.json +69 -0
package/dist/styles.css
ADDED
|
@@ -0,0 +1,1886 @@
|
|
|
1
|
+
@layer reset, base, tokens, recipes, utilities;
|
|
2
|
+
|
|
3
|
+
@layer reset{
|
|
4
|
+
html,:host {
|
|
5
|
+
--font-fallback: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
6
|
+
-webkit-text-size-adjust: 100%;
|
|
7
|
+
-webkit-font-smoothing: antialiased;
|
|
8
|
+
-moz-osx-font-smoothing: grayscale;
|
|
9
|
+
-moz-tab-size: 4;
|
|
10
|
+
tab-size: 4;
|
|
11
|
+
-webkit-tap-highlight-color: transparent;
|
|
12
|
+
line-height: 1.5;
|
|
13
|
+
font-family: var(--global-font-body, var(--font-fallback));
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
*,::before,::after,::backdrop,::file-selector-button {
|
|
17
|
+
margin: 0px;
|
|
18
|
+
padding: 0px;
|
|
19
|
+
box-sizing: border-box;
|
|
20
|
+
border-width: 0px;
|
|
21
|
+
border-style: solid;
|
|
22
|
+
border-color: var(--global-color-border, currentColor);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
hr {
|
|
26
|
+
height: 0px;
|
|
27
|
+
color: inherit;
|
|
28
|
+
border-top-width: 1px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
body {
|
|
32
|
+
height: 100%;
|
|
33
|
+
line-height: inherit;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
img {
|
|
37
|
+
border-style: none;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
img,svg,video,canvas,audio,iframe,embed,object {
|
|
41
|
+
display: block;
|
|
42
|
+
vertical-align: middle;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
img,video {
|
|
46
|
+
max-width: 100%;
|
|
47
|
+
height: auto;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
h1,h2,h3,h4,h5,h6 {
|
|
51
|
+
text-wrap: balance;
|
|
52
|
+
font-size: inherit;
|
|
53
|
+
font-weight: inherit;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
p,h1,h2,h3,h4,h5,h6 {
|
|
57
|
+
overflow-wrap: break-word;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
ol,ul,menu {
|
|
61
|
+
list-style: none;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
button,input:where([type='button'], [type='reset'], [type='submit']),::file-selector-button {
|
|
65
|
+
appearance: button;
|
|
66
|
+
-webkit-appearance: button;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
button,input,optgroup,select,textarea,::file-selector-button {
|
|
70
|
+
font: inherit;
|
|
71
|
+
font-feature-settings: inherit;
|
|
72
|
+
font-variation-settings: inherit;
|
|
73
|
+
letter-spacing: inherit;
|
|
74
|
+
color: inherit;
|
|
75
|
+
background: var(--colors-transparent);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
::placeholder {
|
|
79
|
+
opacity: 1;
|
|
80
|
+
--placeholder-fallback: color-mix(in srgb, currentColor 50%, transparent);
|
|
81
|
+
color: var(--global-color-placeholder, var(--placeholder-fallback));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
textarea {
|
|
85
|
+
resize: vertical;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
table {
|
|
89
|
+
text-indent: 0px;
|
|
90
|
+
border-collapse: collapse;
|
|
91
|
+
border-color: inherit;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
summary {
|
|
95
|
+
display: list-item;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
small {
|
|
99
|
+
font-size: 80%;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
sub,sup {
|
|
103
|
+
position: relative;
|
|
104
|
+
vertical-align: baseline;
|
|
105
|
+
font-size: 75%;
|
|
106
|
+
line-height: 0;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
sub {
|
|
110
|
+
bottom: -0.25em;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
sup {
|
|
114
|
+
top: -0.5em;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
dialog {
|
|
118
|
+
padding: 0px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
a {
|
|
122
|
+
color: inherit;
|
|
123
|
+
text-decoration: inherit;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
abbr:where([title]) {
|
|
127
|
+
text-decoration: underline dotted;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
b,strong {
|
|
131
|
+
font-weight: bolder;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
code,kbd,samp,pre {
|
|
135
|
+
--font-mono-fallback: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New';
|
|
136
|
+
font-feature-settings: normal;
|
|
137
|
+
font-variation-settings: normal;
|
|
138
|
+
font-family: var(--global-font-mono, var(--font-mono-fallback));
|
|
139
|
+
font-size: 1em;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
progress {
|
|
143
|
+
vertical-align: baseline;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
::-webkit-search-decoration,::-webkit-search-cancel-button {
|
|
147
|
+
-webkit-appearance: none;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
::-webkit-inner-spin-button,::-webkit-outer-spin-button {
|
|
151
|
+
height: auto;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
:-moz-ui-invalid {
|
|
155
|
+
box-shadow: none;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
:-moz-focusring {
|
|
159
|
+
outline: auto;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
[hidden]:where(:not([hidden='until-found'])) {
|
|
163
|
+
display: none !important;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
@layer base{
|
|
168
|
+
:root {
|
|
169
|
+
--made-with-panda: '🐼';
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
body {
|
|
173
|
+
background: var(--colors-neutrals-50);
|
|
174
|
+
color: var(--colors-neutrals-950);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
[data-theme=dark] body {
|
|
178
|
+
background: var(--colors-neutrals-950);
|
|
179
|
+
color: var(--colors-neutrals-50);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
button {
|
|
183
|
+
cursor: pointer;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
input,textarea {
|
|
187
|
+
width: 100%;
|
|
188
|
+
padding: .5rem;
|
|
189
|
+
border-radius: 2px;
|
|
190
|
+
outline: 1px solid;
|
|
191
|
+
font-size: 0.875rem;
|
|
192
|
+
outline-color: var(--colors-neutrals-100);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
input.error,textarea.error {
|
|
196
|
+
animation: var(--animations-shake);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
input.error,textarea.error,[data-theme=dark] input.error,[data-theme=dark] textarea.error {
|
|
200
|
+
outline-color: var(--colors-error);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
input.error:is(:focus, [data-focus]),textarea.error:is(:focus, [data-focus]) {
|
|
204
|
+
outline-color: cyan;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
input:is(:read-only, [data-read-only]),textarea:is(:read-only, [data-read-only]) {
|
|
208
|
+
cursor: pointer !important;
|
|
209
|
+
-webkit-user-select: none !important;
|
|
210
|
+
user-select: none !important;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
[data-theme=dark] input,[data-theme=dark] textarea {
|
|
214
|
+
outline-color: var(--colors-neutrals-800);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
input:focus,textarea:focus {
|
|
218
|
+
outline-color: var(--colors-dash-600);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
*,::before,::after,::backdrop {
|
|
222
|
+
--blur: /*-*/ /*-*/;
|
|
223
|
+
--brightness: /*-*/ /*-*/;
|
|
224
|
+
--contrast: /*-*/ /*-*/;
|
|
225
|
+
--grayscale: /*-*/ /*-*/;
|
|
226
|
+
--hue-rotate: /*-*/ /*-*/;
|
|
227
|
+
--invert: /*-*/ /*-*/;
|
|
228
|
+
--saturate: /*-*/ /*-*/;
|
|
229
|
+
--sepia: /*-*/ /*-*/;
|
|
230
|
+
--drop-shadow: /*-*/ /*-*/;
|
|
231
|
+
--backdrop-blur: /*-*/ /*-*/;
|
|
232
|
+
--backdrop-brightness: /*-*/ /*-*/;
|
|
233
|
+
--backdrop-contrast: /*-*/ /*-*/;
|
|
234
|
+
--backdrop-grayscale: /*-*/ /*-*/;
|
|
235
|
+
--backdrop-hue-rotate: /*-*/ /*-*/;
|
|
236
|
+
--backdrop-invert: /*-*/ /*-*/;
|
|
237
|
+
--backdrop-opacity: /*-*/ /*-*/;
|
|
238
|
+
--backdrop-saturate: /*-*/ /*-*/;
|
|
239
|
+
--backdrop-sepia: /*-*/ /*-*/;
|
|
240
|
+
--gradient-from-position: /*-*/ /*-*/;
|
|
241
|
+
--gradient-to-position: /*-*/ /*-*/;
|
|
242
|
+
--gradient-via-position: /*-*/ /*-*/;
|
|
243
|
+
--scroll-snap-strictness: proximity;
|
|
244
|
+
--border-spacing-x: 0;
|
|
245
|
+
--border-spacing-y: 0;
|
|
246
|
+
--translate-x: 0;
|
|
247
|
+
--translate-y: 0;
|
|
248
|
+
--rotate: 0;
|
|
249
|
+
--rotate-x: 0;
|
|
250
|
+
--rotate-y: 0;
|
|
251
|
+
--skew-x: 0;
|
|
252
|
+
--skew-y: 0;
|
|
253
|
+
--scale-x: 1;
|
|
254
|
+
--scale-y: 1;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
@layer tokens{
|
|
259
|
+
:where(:root, :host) {
|
|
260
|
+
--aspect-ratios-square: 1 / 1;
|
|
261
|
+
--aspect-ratios-landscape: 4 / 3;
|
|
262
|
+
--aspect-ratios-portrait: 3 / 4;
|
|
263
|
+
--aspect-ratios-wide: 16 / 9;
|
|
264
|
+
--aspect-ratios-ultrawide: 18 / 5;
|
|
265
|
+
--aspect-ratios-golden: 1.618 / 1;
|
|
266
|
+
--borders-none: none;
|
|
267
|
+
--easings-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
268
|
+
--easings-linear: linear;
|
|
269
|
+
--easings-in: cubic-bezier(0.4, 0, 1, 1);
|
|
270
|
+
--easings-out: cubic-bezier(0, 0, 0.2, 1);
|
|
271
|
+
--easings-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
272
|
+
--durations-fastest: 50ms;
|
|
273
|
+
--durations-faster: 100ms;
|
|
274
|
+
--durations-fast: 150ms;
|
|
275
|
+
--durations-normal: 200ms;
|
|
276
|
+
--durations-slow: 300ms;
|
|
277
|
+
--durations-slower: 400ms;
|
|
278
|
+
--durations-slowest: 500ms;
|
|
279
|
+
--radii-xs: 0.125rem;
|
|
280
|
+
--radii-sm: 0.25rem;
|
|
281
|
+
--radii-md: 0.375rem;
|
|
282
|
+
--radii-lg: 0.5rem;
|
|
283
|
+
--radii-xl: 0.75rem;
|
|
284
|
+
--radii-2xl: 1rem;
|
|
285
|
+
--radii-3xl: 1.5rem;
|
|
286
|
+
--radii-4xl: 2rem;
|
|
287
|
+
--radii-full: 9999px;
|
|
288
|
+
--font-weights-thin: 100;
|
|
289
|
+
--font-weights-extralight: 200;
|
|
290
|
+
--font-weights-light: 300;
|
|
291
|
+
--font-weights-normal: 400;
|
|
292
|
+
--font-weights-medium: 500;
|
|
293
|
+
--font-weights-semibold: 600;
|
|
294
|
+
--font-weights-bold: 700;
|
|
295
|
+
--font-weights-extrabold: 800;
|
|
296
|
+
--font-weights-black: 900;
|
|
297
|
+
--line-heights-none: 1;
|
|
298
|
+
--line-heights-tight: 1.25;
|
|
299
|
+
--line-heights-snug: 1.375;
|
|
300
|
+
--line-heights-normal: 1.5;
|
|
301
|
+
--line-heights-relaxed: 1.625;
|
|
302
|
+
--line-heights-loose: 2;
|
|
303
|
+
--fonts-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
304
|
+
--fonts-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
305
|
+
--fonts-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
306
|
+
--letter-spacings-tighter: -0.05em;
|
|
307
|
+
--letter-spacings-tight: -0.025em;
|
|
308
|
+
--letter-spacings-normal: 0em;
|
|
309
|
+
--letter-spacings-wide: 0.025em;
|
|
310
|
+
--letter-spacings-wider: 0.05em;
|
|
311
|
+
--letter-spacings-widest: 0.1em;
|
|
312
|
+
--font-sizes-2xs: 0.5rem;
|
|
313
|
+
--font-sizes-xs: 0.75rem;
|
|
314
|
+
--font-sizes-sm: 0.875rem;
|
|
315
|
+
--font-sizes-md: 1rem;
|
|
316
|
+
--font-sizes-lg: 1.125rem;
|
|
317
|
+
--font-sizes-xl: 1.25rem;
|
|
318
|
+
--font-sizes-2xl: 1.5rem;
|
|
319
|
+
--font-sizes-3xl: 1.875rem;
|
|
320
|
+
--font-sizes-4xl: 2.25rem;
|
|
321
|
+
--font-sizes-5xl: 3rem;
|
|
322
|
+
--font-sizes-6xl: 3.75rem;
|
|
323
|
+
--font-sizes-7xl: 4.5rem;
|
|
324
|
+
--font-sizes-8xl: 6rem;
|
|
325
|
+
--font-sizes-9xl: 8rem;
|
|
326
|
+
--blurs-sm: 4px;
|
|
327
|
+
--blurs-base: 8px;
|
|
328
|
+
--blurs-md: 12px;
|
|
329
|
+
--blurs-lg: 16px;
|
|
330
|
+
--blurs-xl: 24px;
|
|
331
|
+
--blurs-2xl: 40px;
|
|
332
|
+
--blurs-3xl: 64px;
|
|
333
|
+
--spacing-0: 0rem;
|
|
334
|
+
--spacing-1: 0.25rem;
|
|
335
|
+
--spacing-2: 0.5rem;
|
|
336
|
+
--spacing-3: 0.75rem;
|
|
337
|
+
--spacing-4: 1rem;
|
|
338
|
+
--spacing-5: 1.25rem;
|
|
339
|
+
--spacing-6: 1.5rem;
|
|
340
|
+
--spacing-7: 1.75rem;
|
|
341
|
+
--spacing-8: 2rem;
|
|
342
|
+
--spacing-9: 2.25rem;
|
|
343
|
+
--spacing-10: 2.5rem;
|
|
344
|
+
--spacing-11: 2.75rem;
|
|
345
|
+
--spacing-12: 3rem;
|
|
346
|
+
--spacing-14: 3.5rem;
|
|
347
|
+
--spacing-16: 4rem;
|
|
348
|
+
--spacing-20: 5rem;
|
|
349
|
+
--spacing-24: 6rem;
|
|
350
|
+
--spacing-28: 7rem;
|
|
351
|
+
--spacing-32: 8rem;
|
|
352
|
+
--spacing-36: 9rem;
|
|
353
|
+
--spacing-40: 10rem;
|
|
354
|
+
--spacing-44: 11rem;
|
|
355
|
+
--spacing-48: 12rem;
|
|
356
|
+
--spacing-52: 13rem;
|
|
357
|
+
--spacing-56: 14rem;
|
|
358
|
+
--spacing-60: 15rem;
|
|
359
|
+
--spacing-64: 16rem;
|
|
360
|
+
--spacing-72: 18rem;
|
|
361
|
+
--spacing-80: 20rem;
|
|
362
|
+
--spacing-96: 24rem;
|
|
363
|
+
--spacing-0\.5: 0.125rem;
|
|
364
|
+
--spacing-1\.5: 0.375rem;
|
|
365
|
+
--spacing-2\.5: 0.625rem;
|
|
366
|
+
--spacing-3\.5: 0.875rem;
|
|
367
|
+
--sizes-0: 0rem;
|
|
368
|
+
--sizes-1: 0.25rem;
|
|
369
|
+
--sizes-2: 0.5rem;
|
|
370
|
+
--sizes-3: 0.75rem;
|
|
371
|
+
--sizes-4: 1rem;
|
|
372
|
+
--sizes-5: 1.25rem;
|
|
373
|
+
--sizes-6: 1.5rem;
|
|
374
|
+
--sizes-7: 1.75rem;
|
|
375
|
+
--sizes-8: 2rem;
|
|
376
|
+
--sizes-9: 2.25rem;
|
|
377
|
+
--sizes-10: 2.5rem;
|
|
378
|
+
--sizes-11: 2.75rem;
|
|
379
|
+
--sizes-12: 3rem;
|
|
380
|
+
--sizes-14: 3.5rem;
|
|
381
|
+
--sizes-16: 4rem;
|
|
382
|
+
--sizes-20: 5rem;
|
|
383
|
+
--sizes-24: 6rem;
|
|
384
|
+
--sizes-28: 7rem;
|
|
385
|
+
--sizes-32: 8rem;
|
|
386
|
+
--sizes-36: 9rem;
|
|
387
|
+
--sizes-40: 10rem;
|
|
388
|
+
--sizes-44: 11rem;
|
|
389
|
+
--sizes-48: 12rem;
|
|
390
|
+
--sizes-52: 13rem;
|
|
391
|
+
--sizes-56: 14rem;
|
|
392
|
+
--sizes-60: 15rem;
|
|
393
|
+
--sizes-64: 16rem;
|
|
394
|
+
--sizes-72: 18rem;
|
|
395
|
+
--sizes-80: 20rem;
|
|
396
|
+
--sizes-96: 24rem;
|
|
397
|
+
--sizes-0\.5: 0.125rem;
|
|
398
|
+
--sizes-1\.5: 0.375rem;
|
|
399
|
+
--sizes-2\.5: 0.625rem;
|
|
400
|
+
--sizes-3\.5: 0.875rem;
|
|
401
|
+
--sizes-xs: 20rem;
|
|
402
|
+
--sizes-sm: 24rem;
|
|
403
|
+
--sizes-md: 28rem;
|
|
404
|
+
--sizes-lg: 32rem;
|
|
405
|
+
--sizes-xl: 36rem;
|
|
406
|
+
--sizes-2xl: 42rem;
|
|
407
|
+
--sizes-3xl: 48rem;
|
|
408
|
+
--sizes-4xl: 56rem;
|
|
409
|
+
--sizes-5xl: 64rem;
|
|
410
|
+
--sizes-6xl: 72rem;
|
|
411
|
+
--sizes-7xl: 80rem;
|
|
412
|
+
--sizes-8xl: 90rem;
|
|
413
|
+
--sizes-prose: 65ch;
|
|
414
|
+
--sizes-full: 100%;
|
|
415
|
+
--sizes-min: min-content;
|
|
416
|
+
--sizes-max: max-content;
|
|
417
|
+
--sizes-fit: fit-content;
|
|
418
|
+
--sizes-breakpoint-sm: 640px;
|
|
419
|
+
--sizes-breakpoint-md: 768px;
|
|
420
|
+
--sizes-breakpoint-lg: 1024px;
|
|
421
|
+
--sizes-breakpoint-xl: 1280px;
|
|
422
|
+
--sizes-breakpoint-2xl: 1536px;
|
|
423
|
+
--animations-spin: spin 1s linear infinite;
|
|
424
|
+
--animations-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
425
|
+
--animations-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
426
|
+
--animations-bounce: bounce 1s infinite;
|
|
427
|
+
--animations-shake: shake 1s linear;
|
|
428
|
+
--colors-current: currentColor;
|
|
429
|
+
--colors-black: #000;
|
|
430
|
+
--colors-white: #fff;
|
|
431
|
+
--colors-transparent: rgb(0 0 0 / 0);
|
|
432
|
+
--colors-rose-50: #fff1f2;
|
|
433
|
+
--colors-rose-100: #ffe4e6;
|
|
434
|
+
--colors-rose-200: #fecdd3;
|
|
435
|
+
--colors-rose-300: #fda4af;
|
|
436
|
+
--colors-rose-400: #fb7185;
|
|
437
|
+
--colors-rose-500: #f43f5e;
|
|
438
|
+
--colors-rose-600: #e11d48;
|
|
439
|
+
--colors-rose-700: #be123c;
|
|
440
|
+
--colors-rose-800: #9f1239;
|
|
441
|
+
--colors-rose-900: #881337;
|
|
442
|
+
--colors-rose-950: #4c0519;
|
|
443
|
+
--colors-pink-50: #fdf2f8;
|
|
444
|
+
--colors-pink-100: #fce7f3;
|
|
445
|
+
--colors-pink-200: #fbcfe8;
|
|
446
|
+
--colors-pink-300: #f9a8d4;
|
|
447
|
+
--colors-pink-400: #f472b6;
|
|
448
|
+
--colors-pink-500: #ec4899;
|
|
449
|
+
--colors-pink-600: #db2777;
|
|
450
|
+
--colors-pink-700: #be185d;
|
|
451
|
+
--colors-pink-800: #9d174d;
|
|
452
|
+
--colors-pink-900: #831843;
|
|
453
|
+
--colors-pink-950: #500724;
|
|
454
|
+
--colors-fuchsia-50: #fdf4ff;
|
|
455
|
+
--colors-fuchsia-100: #fae8ff;
|
|
456
|
+
--colors-fuchsia-200: #f5d0fe;
|
|
457
|
+
--colors-fuchsia-300: #f0abfc;
|
|
458
|
+
--colors-fuchsia-400: #e879f9;
|
|
459
|
+
--colors-fuchsia-500: #d946ef;
|
|
460
|
+
--colors-fuchsia-600: #c026d3;
|
|
461
|
+
--colors-fuchsia-700: #a21caf;
|
|
462
|
+
--colors-fuchsia-800: #86198f;
|
|
463
|
+
--colors-fuchsia-900: #701a75;
|
|
464
|
+
--colors-fuchsia-950: #4a044e;
|
|
465
|
+
--colors-purple-50: #faf5ff;
|
|
466
|
+
--colors-purple-100: #f3e8ff;
|
|
467
|
+
--colors-purple-200: #e9d5ff;
|
|
468
|
+
--colors-purple-300: #d8b4fe;
|
|
469
|
+
--colors-purple-400: #c084fc;
|
|
470
|
+
--colors-purple-500: #a855f7;
|
|
471
|
+
--colors-purple-600: #9333ea;
|
|
472
|
+
--colors-purple-700: #7e22ce;
|
|
473
|
+
--colors-purple-800: #6b21a8;
|
|
474
|
+
--colors-purple-900: #581c87;
|
|
475
|
+
--colors-purple-950: #3b0764;
|
|
476
|
+
--colors-violet-50: #f5f3ff;
|
|
477
|
+
--colors-violet-100: #ede9fe;
|
|
478
|
+
--colors-violet-200: #ddd6fe;
|
|
479
|
+
--colors-violet-300: #c4b5fd;
|
|
480
|
+
--colors-violet-400: #a78bfa;
|
|
481
|
+
--colors-violet-500: #8b5cf6;
|
|
482
|
+
--colors-violet-600: #7c3aed;
|
|
483
|
+
--colors-violet-700: #6d28d9;
|
|
484
|
+
--colors-violet-800: #5b21b6;
|
|
485
|
+
--colors-violet-900: #4c1d95;
|
|
486
|
+
--colors-violet-950: #2e1065;
|
|
487
|
+
--colors-indigo-50: #eef2ff;
|
|
488
|
+
--colors-indigo-100: #e0e7ff;
|
|
489
|
+
--colors-indigo-200: #c7d2fe;
|
|
490
|
+
--colors-indigo-300: #a5b4fc;
|
|
491
|
+
--colors-indigo-400: #818cf8;
|
|
492
|
+
--colors-indigo-500: #6366f1;
|
|
493
|
+
--colors-indigo-600: #4f46e5;
|
|
494
|
+
--colors-indigo-700: #4338ca;
|
|
495
|
+
--colors-indigo-800: #3730a3;
|
|
496
|
+
--colors-indigo-900: #312e81;
|
|
497
|
+
--colors-indigo-950: #1e1b4b;
|
|
498
|
+
--colors-sky-50: #f0f9ff;
|
|
499
|
+
--colors-sky-100: #e0f2fe;
|
|
500
|
+
--colors-sky-200: #bae6fd;
|
|
501
|
+
--colors-sky-300: #7dd3fc;
|
|
502
|
+
--colors-sky-400: #38bdf8;
|
|
503
|
+
--colors-sky-500: #0ea5e9;
|
|
504
|
+
--colors-sky-600: #0284c7;
|
|
505
|
+
--colors-sky-700: #0369a1;
|
|
506
|
+
--colors-sky-800: #075985;
|
|
507
|
+
--colors-sky-900: #0c4a6e;
|
|
508
|
+
--colors-sky-950: #082f49;
|
|
509
|
+
--colors-cyan-50: #ecfeff;
|
|
510
|
+
--colors-cyan-100: #cffafe;
|
|
511
|
+
--colors-cyan-200: #a5f3fc;
|
|
512
|
+
--colors-cyan-300: #67e8f9;
|
|
513
|
+
--colors-cyan-400: #22d3ee;
|
|
514
|
+
--colors-cyan-500: #06b6d4;
|
|
515
|
+
--colors-cyan-600: #0891b2;
|
|
516
|
+
--colors-cyan-700: #0e7490;
|
|
517
|
+
--colors-cyan-800: #155e75;
|
|
518
|
+
--colors-cyan-900: #164e63;
|
|
519
|
+
--colors-cyan-950: #083344;
|
|
520
|
+
--colors-teal-50: #f0fdfa;
|
|
521
|
+
--colors-teal-100: #ccfbf1;
|
|
522
|
+
--colors-teal-200: #99f6e4;
|
|
523
|
+
--colors-teal-300: #5eead4;
|
|
524
|
+
--colors-teal-400: #2dd4bf;
|
|
525
|
+
--colors-teal-500: #14b8a6;
|
|
526
|
+
--colors-teal-600: #0d9488;
|
|
527
|
+
--colors-teal-700: #0f766e;
|
|
528
|
+
--colors-teal-800: #115e59;
|
|
529
|
+
--colors-teal-900: #134e4a;
|
|
530
|
+
--colors-teal-950: #042f2e;
|
|
531
|
+
--colors-emerald-50: #ecfdf5;
|
|
532
|
+
--colors-emerald-100: #d1fae5;
|
|
533
|
+
--colors-emerald-200: #a7f3d0;
|
|
534
|
+
--colors-emerald-300: #6ee7b7;
|
|
535
|
+
--colors-emerald-400: #34d399;
|
|
536
|
+
--colors-emerald-500: #10b981;
|
|
537
|
+
--colors-emerald-600: #059669;
|
|
538
|
+
--colors-emerald-700: #047857;
|
|
539
|
+
--colors-emerald-800: #065f46;
|
|
540
|
+
--colors-emerald-900: #064e3b;
|
|
541
|
+
--colors-emerald-950: #022c22;
|
|
542
|
+
--colors-lime-50: #f7fee7;
|
|
543
|
+
--colors-lime-100: #ecfccb;
|
|
544
|
+
--colors-lime-200: #d9f99d;
|
|
545
|
+
--colors-lime-300: #bef264;
|
|
546
|
+
--colors-lime-400: #a3e635;
|
|
547
|
+
--colors-lime-500: #84cc16;
|
|
548
|
+
--colors-lime-600: #65a30d;
|
|
549
|
+
--colors-lime-700: #4d7c0f;
|
|
550
|
+
--colors-lime-800: #3f6212;
|
|
551
|
+
--colors-lime-900: #365314;
|
|
552
|
+
--colors-lime-950: #1a2e05;
|
|
553
|
+
--colors-amber-50: #fffbeb;
|
|
554
|
+
--colors-amber-100: #fef3c7;
|
|
555
|
+
--colors-amber-200: #fde68a;
|
|
556
|
+
--colors-amber-300: #fcd34d;
|
|
557
|
+
--colors-amber-400: #fbbf24;
|
|
558
|
+
--colors-amber-500: #f59e0b;
|
|
559
|
+
--colors-amber-600: #d97706;
|
|
560
|
+
--colors-amber-700: #b45309;
|
|
561
|
+
--colors-amber-800: #92400e;
|
|
562
|
+
--colors-amber-900: #78350f;
|
|
563
|
+
--colors-amber-950: #451a03;
|
|
564
|
+
--colors-orange-50: #fff7ed;
|
|
565
|
+
--colors-orange-100: #ffedd5;
|
|
566
|
+
--colors-orange-200: #fed7aa;
|
|
567
|
+
--colors-orange-300: #fdba74;
|
|
568
|
+
--colors-orange-400: #fb923c;
|
|
569
|
+
--colors-orange-500: #f97316;
|
|
570
|
+
--colors-orange-600: #ea580c;
|
|
571
|
+
--colors-orange-700: #c2410c;
|
|
572
|
+
--colors-orange-800: #9a3412;
|
|
573
|
+
--colors-orange-900: #7c2d12;
|
|
574
|
+
--colors-orange-950: #431407;
|
|
575
|
+
--colors-neutral-50: #fafafa;
|
|
576
|
+
--colors-neutral-100: #f5f5f5;
|
|
577
|
+
--colors-neutral-200: #e5e5e5;
|
|
578
|
+
--colors-neutral-300: #d4d4d4;
|
|
579
|
+
--colors-neutral-400: #a3a3a3;
|
|
580
|
+
--colors-neutral-500: #737373;
|
|
581
|
+
--colors-neutral-600: #525252;
|
|
582
|
+
--colors-neutral-700: #404040;
|
|
583
|
+
--colors-neutral-800: #262626;
|
|
584
|
+
--colors-neutral-900: #171717;
|
|
585
|
+
--colors-neutral-950: #0a0a0a;
|
|
586
|
+
--colors-stone-50: #fafaf9;
|
|
587
|
+
--colors-stone-100: #f5f5f4;
|
|
588
|
+
--colors-stone-200: #e7e5e4;
|
|
589
|
+
--colors-stone-300: #d6d3d1;
|
|
590
|
+
--colors-stone-400: #a8a29e;
|
|
591
|
+
--colors-stone-500: #78716c;
|
|
592
|
+
--colors-stone-600: #57534e;
|
|
593
|
+
--colors-stone-700: #44403c;
|
|
594
|
+
--colors-stone-800: #292524;
|
|
595
|
+
--colors-stone-900: #1c1917;
|
|
596
|
+
--colors-stone-950: #0c0a09;
|
|
597
|
+
--colors-zinc-50: #fafafa;
|
|
598
|
+
--colors-zinc-100: #f4f4f5;
|
|
599
|
+
--colors-zinc-200: #e4e4e7;
|
|
600
|
+
--colors-zinc-300: #d4d4d8;
|
|
601
|
+
--colors-zinc-400: #a1a1aa;
|
|
602
|
+
--colors-zinc-500: #71717a;
|
|
603
|
+
--colors-zinc-600: #52525b;
|
|
604
|
+
--colors-zinc-700: #3f3f46;
|
|
605
|
+
--colors-zinc-800: #27272a;
|
|
606
|
+
--colors-zinc-900: #18181b;
|
|
607
|
+
--colors-zinc-950: #09090b;
|
|
608
|
+
--colors-slate-50: #f8fafc;
|
|
609
|
+
--colors-slate-100: #f1f5f9;
|
|
610
|
+
--colors-slate-200: #e2e8f0;
|
|
611
|
+
--colors-slate-300: #cbd5e1;
|
|
612
|
+
--colors-slate-400: #94a3b8;
|
|
613
|
+
--colors-slate-500: #64748b;
|
|
614
|
+
--colors-slate-600: #475569;
|
|
615
|
+
--colors-slate-700: #334155;
|
|
616
|
+
--colors-slate-800: #1e293b;
|
|
617
|
+
--colors-slate-900: #0f172a;
|
|
618
|
+
--colors-slate-950: #020617;
|
|
619
|
+
--colors-blue-50: #eff8ff;
|
|
620
|
+
--colors-blue-100: #daefff;
|
|
621
|
+
--colors-blue-200: #bee4ff;
|
|
622
|
+
--colors-blue-300: #91d4ff;
|
|
623
|
+
--colors-blue-400: #5ebbfc;
|
|
624
|
+
--colors-blue-500: #389cf9;
|
|
625
|
+
--colors-blue-600: #227eee;
|
|
626
|
+
--colors-blue-700: #1c6ce4;
|
|
627
|
+
--colors-blue-800: #1c54b1;
|
|
628
|
+
--colors-blue-900: #1c488c;
|
|
629
|
+
--colors-blue-950: #162d55;
|
|
630
|
+
--colors-dash-50: #eefff7;
|
|
631
|
+
--colors-dash-100: #d7ffef;
|
|
632
|
+
--colors-dash-200: #b2ffde;
|
|
633
|
+
--colors-dash-300: #77fec5;
|
|
634
|
+
--colors-dash-400: #18f297;
|
|
635
|
+
--colors-dash-500: #0add86;
|
|
636
|
+
--colors-dash-600: #01b86d;
|
|
637
|
+
--colors-dash-700: #059057;
|
|
638
|
+
--colors-dash-800: #0a7147;
|
|
639
|
+
--colors-dash-900: #0b5c3d;
|
|
640
|
+
--colors-dash-950: #003420;
|
|
641
|
+
--colors-gray-50: #f6f6f9;
|
|
642
|
+
--colors-gray-100: #ededf1;
|
|
643
|
+
--colors-gray-200: #d6d7e1;
|
|
644
|
+
--colors-gray-300: #b3b6c6;
|
|
645
|
+
--colors-gray-400: #898ea7;
|
|
646
|
+
--colors-gray-500: #6b718c;
|
|
647
|
+
--colors-gray-600: #555974;
|
|
648
|
+
--colors-gray-700: #464a5e;
|
|
649
|
+
--colors-gray-800: #3c3f50;
|
|
650
|
+
--colors-gray-900: #363844;
|
|
651
|
+
--colors-gray-950: #2b2c37;
|
|
652
|
+
--colors-green-50: #effef4;
|
|
653
|
+
--colors-green-100: #dafee6;
|
|
654
|
+
--colors-green-200: #b7fbcf;
|
|
655
|
+
--colors-green-300: #7ff6aa;
|
|
656
|
+
--colors-green-400: #2ee571;
|
|
657
|
+
--colors-green-500: #18cf5b;
|
|
658
|
+
--colors-green-600: #0dac48;
|
|
659
|
+
--colors-green-700: #0e873b;
|
|
660
|
+
--colors-green-800: #116a33;
|
|
661
|
+
--colors-green-900: #10572c;
|
|
662
|
+
--colors-green-950: #023116;
|
|
663
|
+
--colors-neutrals-50: #F6F7F9;
|
|
664
|
+
--colors-neutrals-100: #EBEDF3;
|
|
665
|
+
--colors-neutrals-200: #D3D7E4;
|
|
666
|
+
--colors-neutrals-300: #ADB6CC;
|
|
667
|
+
--colors-neutrals-400: #808EB0;
|
|
668
|
+
--colors-neutrals-500: #607097;
|
|
669
|
+
--colors-neutrals-600: #4C587D;
|
|
670
|
+
--colors-neutrals-700: #3E4866;
|
|
671
|
+
--colors-neutrals-800: #363E56;
|
|
672
|
+
--colors-neutrals-900: #313649;
|
|
673
|
+
--colors-neutrals-950: #0A0B0F;
|
|
674
|
+
--colors-red-50: #fff1f1;
|
|
675
|
+
--colors-red-100: #ffe4e5;
|
|
676
|
+
--colors-red-200: #ffcccf;
|
|
677
|
+
--colors-red-300: #fea3a9;
|
|
678
|
+
--colors-red-400: #fd6f7c;
|
|
679
|
+
--colors-red-500: #f73c52;
|
|
680
|
+
--colors-red-600: #e51c3d;
|
|
681
|
+
--colors-red-700: #c10f31;
|
|
682
|
+
--colors-red-800: #a11030;
|
|
683
|
+
--colors-red-900: #8a112f;
|
|
684
|
+
--colors-red-950: #4d0415;
|
|
685
|
+
--colors-yellow-50: #fcfbea;
|
|
686
|
+
--colors-yellow-100: #f9f9c8;
|
|
687
|
+
--colors-yellow-200: #f4f094;
|
|
688
|
+
--colors-yellow-300: #ede158;
|
|
689
|
+
--colors-yellow-400: #e6cf29;
|
|
690
|
+
--colors-yellow-500: #d6b81c;
|
|
691
|
+
--colors-yellow-600: #b89116;
|
|
692
|
+
--colors-yellow-700: #936a15;
|
|
693
|
+
--colors-yellow-800: #7a5419;
|
|
694
|
+
--colors-yellow-900: #69451a;
|
|
695
|
+
--colors-yellow-950: #3d250b;
|
|
696
|
+
--shadows-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
697
|
+
--shadows-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
698
|
+
--shadows-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
699
|
+
--shadows-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
700
|
+
--shadows-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
701
|
+
--shadows-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
702
|
+
--shadows-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
|
|
703
|
+
--shadows-inset-base: inset 0 0.5px 4px rgba(96, 97, 112, 0.32);
|
|
704
|
+
--shadows-inset-dark: inset 0 0.5px 4px rgba(0, 0, 0, 0.32);
|
|
705
|
+
--shadows-elevation1-base: 0 0 1px rgba(40, 41, 61, 0.08), 0 0.5px 2px rgba(96, 97, 112, 0.16);
|
|
706
|
+
--shadows-elevation1-dark: 0 0 1px rgba(40, 41, 61, 0.08), 0 1px 2px rgba(0, 0, 0, 0.32);
|
|
707
|
+
--shadows-elevation2-base: 0 0 1px rgba(40, 41, 61, 0.04), 0 2px 4px rgba(96, 97, 112, 0.16);
|
|
708
|
+
--shadows-elevation2-dark: 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.32);
|
|
709
|
+
--shadows-elevation3-base: 0 0 2px rgba(40, 41, 61, 0.04), 0 4px 8px rgba(96, 97, 112, 0.16);
|
|
710
|
+
--shadows-elevation3-dark: 0 0 2px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.32);
|
|
711
|
+
--shadows-elevation4-base: 0 2px 4px rgba(40, 41, 61, 0.04), 0 8px 16px rgba(96, 97, 112, 0.16);
|
|
712
|
+
--shadows-elevation4-dark: 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 16px rgba(0, 0, 0, 0.32);
|
|
713
|
+
--shadows-elevation5-base: 0 2px 8px rgba(40, 41, 61, 0.04), 0 16px 24px rgba(96, 97, 112, 0.16);
|
|
714
|
+
--shadows-elevation5-dark: 0 2px 8px rgba(0, 0, 0, 0.04), 0 16px 24px rgba(0, 0, 0, 0.32);
|
|
715
|
+
--shadows-elevation6-base: 0 2px 8px rgba(40, 41, 61, 0.08), 0 20px 32px rgba(96, 97, 112, 0.24);
|
|
716
|
+
--shadows-elevation6-dark: 0 2px 8px rgba(0, 0, 0, 0.08), 0 20px 32px rgba(0, 0, 0, 0.32);
|
|
717
|
+
--breakpoints-sm: 640px;
|
|
718
|
+
--breakpoints-md: 768px;
|
|
719
|
+
--breakpoints-lg: 1024px;
|
|
720
|
+
--breakpoints-xl: 1280px;
|
|
721
|
+
--breakpoints-2xl: 1536px;
|
|
722
|
+
--colors-info: var(--colors-blue-600);
|
|
723
|
+
--colors-info-lighter: var(--colors-blue-100);
|
|
724
|
+
--colors-info-darker: var(--colors-blue-700);
|
|
725
|
+
--colors-error: var(--colors-red-600);
|
|
726
|
+
--colors-error-lighter: var(--colors-red-100);
|
|
727
|
+
--colors-error-darker: var(--colors-red-700);
|
|
728
|
+
--colors-primary: var(--colors-dash-600);
|
|
729
|
+
--colors-primary-lighter: var(--colors-dash-100);
|
|
730
|
+
--colors-primary-darker: var(--colors-dash-700);
|
|
731
|
+
--colors-secondary: var(--colors-gray-600);
|
|
732
|
+
--colors-secondary-lighter: var(--colors-gray-100);
|
|
733
|
+
--colors-secondary-darker: var(--colors-gray-900);
|
|
734
|
+
--colors-success: var(--colors-green-600);
|
|
735
|
+
--colors-success-lighter: var(--colors-green-100);
|
|
736
|
+
--colors-success-darker: var(--colors-green-700);
|
|
737
|
+
--colors-warning: var(--colors-yellow-600);
|
|
738
|
+
--colors-warning-lighter: var(--colors-yellow-100);
|
|
739
|
+
--colors-warning-darker: var(--colors-yellow-700);
|
|
740
|
+
--shadows-inset: var(--shadows-inset-base);
|
|
741
|
+
--shadows-level1: var(--shadows-elevation1-base);
|
|
742
|
+
--shadows-level2: var(--shadows-elevation2-base);
|
|
743
|
+
--shadows-level3: var(--shadows-elevation3-base);
|
|
744
|
+
--shadows-level4: var(--shadows-elevation4-base);
|
|
745
|
+
--shadows-level5: var(--shadows-elevation5-base);
|
|
746
|
+
--shadows-level6: var(--shadows-elevation6-base);
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
[data-theme=dark] {
|
|
750
|
+
--colors-info: var(--colors-blue-500);
|
|
751
|
+
--colors-error: var(--colors-red-500);
|
|
752
|
+
--colors-primary: var(--colors-dash-400);
|
|
753
|
+
--colors-secondary: var(--colors-gray-700);
|
|
754
|
+
--colors-success: var(--colors-green-500);
|
|
755
|
+
--colors-warning: var(--colors-yellow-500);
|
|
756
|
+
--shadows-inset: var(--shadows-inset-dark);
|
|
757
|
+
--shadows-level1: var(--shadows-elevation1-dark);
|
|
758
|
+
--shadows-level2: var(--shadows-elevation2-dark);
|
|
759
|
+
--shadows-level3: var(--shadows-elevation3-dark);
|
|
760
|
+
--shadows-level4: var(--shadows-elevation4-dark);
|
|
761
|
+
--shadows-level5: var(--shadows-elevation5-dark);
|
|
762
|
+
--shadows-level6: var(--shadows-elevation6-dark)
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
@keyframes spin {
|
|
766
|
+
to {
|
|
767
|
+
transform: rotate(360deg);
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
@keyframes ping {
|
|
772
|
+
75%,100% {
|
|
773
|
+
transform: scale(2);
|
|
774
|
+
opacity: 0;
|
|
775
|
+
}
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
@keyframes pulse {
|
|
779
|
+
50% {
|
|
780
|
+
opacity: 0.5;
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
@keyframes bounce {
|
|
785
|
+
0%,100% {
|
|
786
|
+
transform: translateY(-25%);
|
|
787
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
50% {
|
|
791
|
+
transform: none;
|
|
792
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
@keyframes shake {
|
|
797
|
+
0%,50% {
|
|
798
|
+
transform: translateX(0);
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
6.5% {
|
|
802
|
+
transform: translateX(-6px) rotateY(-9deg);
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
18.5% {
|
|
806
|
+
transform: translateX(5px) rotateY(7deg);
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
31.5% {
|
|
810
|
+
transform: translateX(-3px) rotateY(-5deg);
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
43.5% {
|
|
814
|
+
transform: translateX(2px) rotateY(3deg);
|
|
815
|
+
}
|
|
816
|
+
}
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
@layer utilities{
|
|
820
|
+
|
|
821
|
+
.cursor_pointer {
|
|
822
|
+
cursor: pointer;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.min-w_320px {
|
|
826
|
+
min-width: 320px;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.bd_1px_solid {
|
|
830
|
+
border: 1px solid;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.d_flex {
|
|
834
|
+
display: flex;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.c_\#fff {
|
|
838
|
+
color: #fff;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.bdr_80px {
|
|
842
|
+
border-radius: 80px;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.w_24px {
|
|
846
|
+
width: 24px;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.h_24px {
|
|
850
|
+
height: 24px;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.w_32px {
|
|
854
|
+
width: 32px;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.h_32px {
|
|
858
|
+
height: 32px;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.w_40px {
|
|
862
|
+
width: 40px;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.h_40px {
|
|
866
|
+
height: 40px;
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
.w_48px {
|
|
870
|
+
width: 48px;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
.h_48px {
|
|
874
|
+
height: 48px;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
.w_56px {
|
|
878
|
+
width: 56px;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.h_56px {
|
|
882
|
+
height: 56px;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.bx-s_content-box {
|
|
886
|
+
box-sizing: content-box;
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
.bdr_50\% {
|
|
890
|
+
border-radius: 50%;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.bd_4px_solid {
|
|
894
|
+
border: 4px solid;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.bg_neutrals\.900 {
|
|
898
|
+
background: var(--colors-neutrals-900);
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
.us_none {
|
|
902
|
+
-webkit-user-select: none;
|
|
903
|
+
user-select: none;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.w_fit-content {
|
|
907
|
+
width: fit-content;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.gap_4px {
|
|
911
|
+
gap: 4px;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.p_\.5rem_1rem_\.5rem_\.5rem {
|
|
915
|
+
padding: .5rem 1rem .5rem .5rem;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.c_info {
|
|
919
|
+
color: var(--colors-info);
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.c_error {
|
|
923
|
+
color: var(--colors-error);
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.c_primary {
|
|
927
|
+
color: var(--colors-primary);
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.c_secondary {
|
|
931
|
+
color: var(--colors-secondary);
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.c_success {
|
|
935
|
+
color: var(--colors-success);
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.c_warning {
|
|
939
|
+
color: var(--colors-warning);
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
.bdr_none {
|
|
943
|
+
border-radius: none;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
.bdr_xs {
|
|
947
|
+
border-radius: var(--radii-xs);
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.bdr_sm {
|
|
951
|
+
border-radius: var(--radii-sm);
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.bdr_md {
|
|
955
|
+
border-radius: var(--radii-md);
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
.bdr_lg {
|
|
959
|
+
border-radius: var(--radii-lg);
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
.bdr_xl {
|
|
963
|
+
border-radius: var(--radii-xl);
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
.bdr_full {
|
|
967
|
+
border-radius: var(--radii-full);
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.ring_none {
|
|
971
|
+
outline: var(--borders-none);
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.ring_1px_solid_transparent {
|
|
975
|
+
outline: 1px solid transparent;
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
.gap_\.25rem {
|
|
979
|
+
gap: .25rem;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.c_neutral\.800 {
|
|
983
|
+
color: var(--colors-neutral-800);
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
.py_0\.5rem {
|
|
987
|
+
padding-block: 0.5rem;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.bdr_0\.25rem {
|
|
991
|
+
border-radius: 0.25rem;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.c_neutrals\.50 {
|
|
995
|
+
color: var(--colors-neutrals-50);
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.ring_1px_solid {
|
|
999
|
+
outline: 1px solid;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.px_0\.75rem {
|
|
1003
|
+
padding-inline: 0.75rem;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.py_0\.375rem {
|
|
1007
|
+
padding-block: 0.375rem;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
.px_1rem {
|
|
1011
|
+
padding-inline: 1rem;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
.px_1\.25rem {
|
|
1015
|
+
padding-inline: 1.25rem;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.px_1\.75rem {
|
|
1019
|
+
padding-inline: 1.75rem;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
.px_2rem {
|
|
1023
|
+
padding-inline: 2rem;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
.bdr_0\.5rem {
|
|
1027
|
+
border-radius: 0.5rem;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
.gap_2rem {
|
|
1031
|
+
gap: 2rem;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.p_1\.5rem_0\.5rem {
|
|
1035
|
+
padding: 1.5rem 0.5rem;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
.bx-sh_elevation3\.base {
|
|
1039
|
+
box-shadow: var(--shadows-elevation3-base);
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.pos_relative {
|
|
1043
|
+
position: relative;
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
.gap_1rem {
|
|
1047
|
+
gap: 1rem;
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
.w_100\% {
|
|
1051
|
+
width: 100%;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
.gap_\.5rem {
|
|
1055
|
+
gap: .5rem;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.d_inline-block {
|
|
1059
|
+
display: inline-block;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.gap_0\.25rem {
|
|
1063
|
+
gap: 0.25rem;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
.c_\#D3D7E4 {
|
|
1067
|
+
color: #D3D7E4;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
.scale_1 {
|
|
1071
|
+
scale: 1;
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
.trs_all {
|
|
1075
|
+
transition-property: var(--transition-prop, all);
|
|
1076
|
+
transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
1077
|
+
transition-duration: var(--transition-duration, 150ms);
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
.p_0\.5rem_1rem {
|
|
1081
|
+
padding: 0.5rem 1rem;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
.c_neutrals\.900 {
|
|
1085
|
+
color: var(--colors-neutrals-900);
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.bdr_4px {
|
|
1089
|
+
border-radius: 4px;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.bd_none {
|
|
1093
|
+
border: var(--borders-none);
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.bd_1px_solid_transparent {
|
|
1097
|
+
border: 1px solid transparent;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.resize_none {
|
|
1101
|
+
resize: none;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.bd-c_neutrals\.800 {
|
|
1105
|
+
border-color: var(--colors-neutrals-800);
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.flex-d_row {
|
|
1109
|
+
flex-direction: row;
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.jc_center {
|
|
1113
|
+
justify-content: center;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.ai_center {
|
|
1117
|
+
align-items: center;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
.bg-c_primary {
|
|
1121
|
+
background-color: var(--colors-primary);
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.bg-c_error {
|
|
1125
|
+
background-color: var(--colors-error);
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.bg-c_info {
|
|
1129
|
+
background-color: var(--colors-info);
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.bg-c_secondary {
|
|
1133
|
+
background-color: var(--colors-secondary);
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.bg-c_success {
|
|
1137
|
+
background-color: var(--colors-success);
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
.bg-c_warning {
|
|
1141
|
+
background-color: var(--colors-warning);
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.bd-c_neutrals\.50 {
|
|
1145
|
+
border-color: var(--colors-neutrals-50);
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
.ml_-8px {
|
|
1149
|
+
margin-left: -8px;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.fs_1rem {
|
|
1153
|
+
font-size: 1rem;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
.as_center {
|
|
1157
|
+
align-self: center;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.fs_\.625rem {
|
|
1161
|
+
font-size: .625rem;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.bg-c_info\.lighter {
|
|
1165
|
+
background-color: var(--colors-info-lighter);
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.bg-c_error\.lighter {
|
|
1169
|
+
background-color: var(--colors-error-lighter);
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.bg-c_primary\.lighter {
|
|
1173
|
+
background-color: var(--colors-primary-lighter);
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.bg-c_secondary\.lighter {
|
|
1177
|
+
background-color: var(--colors-secondary-lighter);
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.bg-c_success\.lighter {
|
|
1181
|
+
background-color: var(--colors-success-lighter);
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.bg-c_warning\.lighter {
|
|
1185
|
+
background-color: var(--colors-warning-lighter);
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.fs_0\.5rem {
|
|
1189
|
+
font-size: 0.5rem;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.fs_0\.75rem {
|
|
1193
|
+
font-size: 0.75rem;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.fs_0\.875rem {
|
|
1197
|
+
font-size: 0.875rem;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.fs_1\.25rem {
|
|
1201
|
+
font-size: 1.25rem;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.bg-c_transparent {
|
|
1205
|
+
background-color: var(--colors-transparent);
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
.ring-c_error {
|
|
1209
|
+
outline-color: var(--colors-error);
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.ring-c_info {
|
|
1213
|
+
outline-color: var(--colors-info);
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
.ring-c_primary {
|
|
1217
|
+
outline-color: var(--colors-primary);
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
.ring-c_secondary {
|
|
1221
|
+
outline-color: var(--colors-secondary);
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
.ring-c_success {
|
|
1225
|
+
outline-color: var(--colors-success);
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.ring-c_warning {
|
|
1229
|
+
outline-color: var(--colors-warning);
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
.fw_600 {
|
|
1233
|
+
font-weight: 600;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.fs_0\.625rem {
|
|
1237
|
+
font-size: 0.625rem;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.fs_1\.125rem {
|
|
1241
|
+
font-size: 1.125rem;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.bd-c_neutrals\.100 {
|
|
1245
|
+
border-color: var(--colors-neutrals-100);
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
.flex-d_column {
|
|
1249
|
+
flex-direction: column;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.trs-dur_400ms {
|
|
1253
|
+
--transition-duration: 400ms;
|
|
1254
|
+
transition-duration: 400ms;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.jc_space-around {
|
|
1258
|
+
justify-content: space-around;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
.fw_bold {
|
|
1262
|
+
font-weight: var(--font-weights-bold);
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
.bg-c_neutrals\.100 {
|
|
1266
|
+
background-color: var(--colors-neutrals-100);
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
[data-theme=dark] .dark\:c_info\.lighter {
|
|
1270
|
+
color: var(--colors-info-lighter);
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
[data-theme=dark] .dark\:c_error\.lighter {
|
|
1274
|
+
color: var(--colors-error-lighter);
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
[data-theme=dark] .dark\:c_primary\.lighter {
|
|
1278
|
+
color: var(--colors-primary-lighter);
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
[data-theme=dark] .dark\:c_secondary\.lighter {
|
|
1282
|
+
color: var(--colors-secondary-lighter);
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
[data-theme=dark] .dark\:c_success\.lighter {
|
|
1286
|
+
color: var(--colors-success-lighter);
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
[data-theme=dark] .dark\:c_warning\.lighter {
|
|
1290
|
+
color: var(--colors-warning-lighter);
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
[data-theme=dark] .dark\:c_neutral\.100 {
|
|
1294
|
+
color: var(--colors-neutral-100);
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
.\[\&_a\:not\(\:last-child\)\]\:c_color-mix\(in_oklch\,_var\(--colors-neutral-800\)\,_white_50\%\) a:not(:last-child) {
|
|
1298
|
+
color: color-mix(in oklch, var(--colors-neutral-800), white 50%);
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
[data-theme=dark] .dark\:c_neutrals\.950 {
|
|
1302
|
+
color: var(--colors-neutrals-950);
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
[data-theme=dark] .dark\:c_error\.darker {
|
|
1306
|
+
color: var(--colors-error-darker);
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
[data-theme=dark] .dark\:c_info\.darker {
|
|
1310
|
+
color: var(--colors-info-darker);
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
[data-theme=dark] .dark\:c_primary\.darker {
|
|
1314
|
+
color: var(--colors-primary-darker);
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
[data-theme=dark] .dark\:c_secondary\.darker {
|
|
1318
|
+
color: var(--colors-secondary-darker);
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
[data-theme=dark] .dark\:c_success\.darker {
|
|
1322
|
+
color: var(--colors-success-darker);
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
[data-theme=dark] .dark\:c_warning\.darker {
|
|
1326
|
+
color: var(--colors-warning-darker);
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
[data-theme=dark] .dark\:bx-sh_elevation3\.dark {
|
|
1330
|
+
box-shadow: var(--shadows-elevation3-dark);
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
.\[\&_\.combobox__input-search\]\:pos_relative .combobox__input-search {
|
|
1334
|
+
position: relative;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.\[\&_\.combobox__input-search\]\:bd-b_1px_solid .combobox__input-search {
|
|
1338
|
+
border-bottom: 1px solid;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.\[\&_\.combobox__empty-field\]\:d_flex .combobox__empty-field {
|
|
1342
|
+
display: flex;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
.\[\&_\.combobox__empty-field\]\:gap_0\.5rem .combobox__empty-field {
|
|
1346
|
+
gap: 0.5rem;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
.\[\&_\.combobox__empty-field\]\:p_1rem_2rem .combobox__empty-field {
|
|
1350
|
+
padding: 1rem 2rem;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.\[\&_button_span\]\:sr_true button span {
|
|
1354
|
+
position: absolute;
|
|
1355
|
+
width: 1px;
|
|
1356
|
+
height: 1px;
|
|
1357
|
+
padding: 0;
|
|
1358
|
+
margin: -1px;
|
|
1359
|
+
overflow: hidden;
|
|
1360
|
+
clip: rect(0, 0, 0, 0);
|
|
1361
|
+
white-space: nowrap;
|
|
1362
|
+
border-width: 0;
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.\[\&_ul\]\:min-w_max-content ul {
|
|
1366
|
+
min-width: max-content;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.\[\&_ul\]\:w_100\% ul {
|
|
1370
|
+
width: 100%;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.\[\&_ul\]\:bd_1px_solid ul {
|
|
1374
|
+
border: 1px solid;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.\[\&_ul\]\:bdr_4px ul {
|
|
1378
|
+
border-radius: 4px;
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.\[\&_li\]\:cursor_pointer li {
|
|
1382
|
+
cursor: pointer;
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
.\[\&_\.form__error-text\]\:c_red\.400 .form__error-text {
|
|
1386
|
+
color: var(--colors-red-400);
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
.\[\&_\.input__leading\,_\&_\.input__trailing\]\:pos_absolute .input__leading,.\[\&_\.input__leading\,_\&_\.input__trailing\]\:pos_absolute .input__trailing {
|
|
1390
|
+
position: absolute;
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.\[\&_\>_svg\]\:va_middle > svg {
|
|
1394
|
+
vertical-align: middle;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
[data-theme=dark] .dark\:c_neutral\.50 {
|
|
1398
|
+
color: var(--colors-neutral-50);
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.\[\&_button\]\:flex_1 button {
|
|
1402
|
+
flex: 1 1 0%;
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
.\[\&_button\]\:z_1 button {
|
|
1406
|
+
z-index: 1;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
.\[\&_button\]\:py_0\.25rem button {
|
|
1410
|
+
padding-block: 0.25rem;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
.\[\&_button\]\:px_0\.75rem button {
|
|
1414
|
+
padding-inline: 0.75rem;
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
.\[\&_div\]\:pos_absolute div {
|
|
1418
|
+
position: absolute;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.\[\&_div\]\:trs_all_500ms_cubic-bezier\(0\,1\.34\,\.86\,\.9\) div {
|
|
1422
|
+
transition: all 500ms cubic-bezier(0,1.34,.86,.9);
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
[data-theme=dark] .dark\:bd-c_neutrals\.100 {
|
|
1426
|
+
border-color: var(--colors-neutrals-100);
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.\[\&_details\]\:fw_bold details {
|
|
1430
|
+
font-weight: var(--font-weights-bold);
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.\[\&_details\]\:bg-c_neutrals\.100 details {
|
|
1434
|
+
background-color: var(--colors-neutrals-100);
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
[data-theme=dark] .dark\:bd-c_neutrals\.950 {
|
|
1438
|
+
border-color: var(--colors-neutrals-950);
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.first\:ml_0px:first-child {
|
|
1442
|
+
margin-left: 0px;
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
[data-theme=dark] .dark\:bg-c_info\.darker {
|
|
1446
|
+
background-color: var(--colors-info-darker);
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
[data-theme=dark] .dark\:bg-c_error\.darker {
|
|
1450
|
+
background-color: var(--colors-error-darker);
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
[data-theme=dark] .dark\:bg-c_primary\.darker {
|
|
1454
|
+
background-color: var(--colors-primary-darker);
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
[data-theme=dark] .dark\:bg-c_secondary\.darker {
|
|
1458
|
+
background-color: var(--colors-secondary-darker);
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
[data-theme=dark] .dark\:bg-c_success\.darker {
|
|
1462
|
+
background-color: var(--colors-success-darker);
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
[data-theme=dark] .dark\:bg-c_warning\.darker {
|
|
1466
|
+
background-color: var(--colors-warning-darker);
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
[data-theme=dark] .dark\:ring-c_error\.darker {
|
|
1470
|
+
outline-color: var(--colors-error-darker);
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
[data-theme=dark] .dark\:ring-c_info\.darker {
|
|
1474
|
+
outline-color: var(--colors-info-darker);
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
[data-theme=dark] .dark\:ring-c_primary\.darker {
|
|
1478
|
+
outline-color: var(--colors-primary-darker);
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
[data-theme=dark] .dark\:ring-c_secondary\.darker {
|
|
1482
|
+
outline-color: var(--colors-secondary-darker);
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
[data-theme=dark] .dark\:ring-c_success\.darker {
|
|
1486
|
+
outline-color: var(--colors-success-darker);
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
[data-theme=dark] .dark\:ring-c_warning\.darker {
|
|
1490
|
+
outline-color: var(--colors-warning-darker);
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
.\[\&_\.breadcrumb_extra-links\]\:pr_5rem .breadcrumb_extra-links {
|
|
1494
|
+
padding-right: 5rem;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
[data-theme=dark] .dark\:bd-c_neutrals\.800 {
|
|
1498
|
+
border-color: var(--colors-neutrals-800);
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.\[\&_\.card__header\]\:fs_1\.25rem .card__header {
|
|
1502
|
+
font-size: 1.25rem;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.\[\&_\.card__header\]\:fw_600 .card__header {
|
|
1506
|
+
font-weight: 600;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
.\[\&_\.card__footer\]\:fs_0\.875rem .card__footer {
|
|
1510
|
+
font-size: 0.875rem;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.\[\&_\.combobox__input-search\]\:bd-c_neutral\.100 .combobox__input-search {
|
|
1514
|
+
border-color: var(--colors-neutral-100);
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.\[\&_\.combobox__empty-field\]\:flex-d_row .combobox__empty-field {
|
|
1518
|
+
flex-direction: row;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.\[\&_\.combobox__empty-field\]\:ai_center .combobox__empty-field {
|
|
1522
|
+
align-items: center;
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.\[\&_\.combobox__empty-field\]\:fs_0\.75rem .combobox__empty-field {
|
|
1526
|
+
font-size: 0.75rem;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.\[\&_ul\]\:bd-c_neutral\.100 ul {
|
|
1530
|
+
border-color: var(--colors-neutral-100);
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.\[\&_ul\]\:bg-c_\#fff ul {
|
|
1534
|
+
background-color: #fff;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
.\[\&_label\]\:fs_0\.75rem label {
|
|
1538
|
+
font-size: 0.75rem;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.\[\&_label\]\:fw_medium label {
|
|
1542
|
+
font-weight: var(--font-weights-medium);
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.\[\&_\.form__error-text\]\:fs_0\.75rem .form__error-text {
|
|
1546
|
+
font-size: 0.75rem;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
.\[\&_\.input__leading\,_\&_\.input__trailing\]\:fs_12px .input__leading,.\[\&_\.input__leading\,_\&_\.input__trailing\]\:fs_12px .input__trailing {
|
|
1550
|
+
font-size: 12px;
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
.\[\&_\.input__leading\,_\&_\.input__trailing\]\:lh_1 .input__leading,.\[\&_\.input__leading\,_\&_\.input__trailing\]\:lh_1 .input__trailing {
|
|
1554
|
+
line-height: 1;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
.\[\&_\.input__leading\,_\&_\.input__trailing\]\:top_calc\(50\%_-_8px\) .input__leading,.\[\&_\.input__leading\,_\&_\.input__trailing\]\:top_calc\(50\%_-_8px\) .input__trailing {
|
|
1558
|
+
top: calc(50% - 8px);
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.\[\&_\.input__leading\]\:left_8px .input__leading {
|
|
1562
|
+
left: 8px;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.\[\&_\.input__trailing\]\:right_8px .input__trailing {
|
|
1566
|
+
right: 8px;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.\[\&_\.input__helper-text\]\:font-style_italic .input__helper-text {
|
|
1570
|
+
font-style: italic;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.\[\&_\.input__helper-text\]\:fs_0\.75rem .input__helper-text {
|
|
1574
|
+
font-size: 0.75rem;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
.\[\&_\>_svg\]\:ml_0\.5rem > svg {
|
|
1578
|
+
margin-left: 0.5rem;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
.\[\&_div\]\:bg-c_neutrals\.50 div {
|
|
1582
|
+
background-color: var(--colors-neutrals-50);
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
[data-theme=dark] .dark\:bg-c_neutrals\.900 {
|
|
1586
|
+
background-color: var(--colors-neutrals-900);
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
.focus\:ring_2px_solid:is(:focus, [data-focus]) {
|
|
1590
|
+
outline: 2px solid;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
.focus\:ring-c_error\.darker:is(:focus, [data-focus]) {
|
|
1594
|
+
outline-color: var(--colors-error-darker);
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.focus\:ring-c_info\.darker:is(:focus, [data-focus]) {
|
|
1598
|
+
outline-color: var(--colors-info-darker);
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
.focus\:ring-c_primary\.darker:is(:focus, [data-focus]) {
|
|
1602
|
+
outline-color: var(--colors-primary-darker);
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.focus\:ring-c_secondary\.darker:is(:focus, [data-focus]) {
|
|
1606
|
+
outline-color: var(--colors-secondary-darker);
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.focus\:ring-c_success\.darker:is(:focus, [data-focus]) {
|
|
1610
|
+
outline-color: var(--colors-success-darker);
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.focus\:ring-c_warning\.darker:is(:focus, [data-focus]) {
|
|
1614
|
+
outline-color: var(--colors-warning-darker);
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.hover\:c_primary\.darker:is(:hover, [data-hover]) {
|
|
1618
|
+
color: var(--colors-primary-darker);
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.hover\:scale_0\.95:is(:hover, [data-hover]) {
|
|
1622
|
+
scale: 0.95;
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.hover\:bg-c_error\.darker:is(:hover, [data-hover]) {
|
|
1626
|
+
background-color: var(--colors-error-darker);
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.hover\:bg-c_info\.darker:is(:hover, [data-hover]) {
|
|
1630
|
+
background-color: var(--colors-info-darker);
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.hover\:bg-c_primary\.darker:is(:hover, [data-hover]) {
|
|
1634
|
+
background-color: var(--colors-primary-darker);
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.hover\:bg-c_secondary\.darker:is(:hover, [data-hover]) {
|
|
1638
|
+
background-color: var(--colors-secondary-darker);
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.hover\:bg-c_success\.darker:is(:hover, [data-hover]) {
|
|
1642
|
+
background-color: var(--colors-success-darker);
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
.hover\:bg-c_warning\.darker:is(:hover, [data-hover]) {
|
|
1646
|
+
background-color: var(--colors-warning-darker);
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.hover\:bg-c_error\/10:is(:hover, [data-hover]) {
|
|
1650
|
+
--mix-backgroundColor: color-mix(in srgb, var(--colors-error) 10%, transparent);
|
|
1651
|
+
background-color: var(--mix-backgroundColor, var(--colors-error));
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
.hover\:bg-c_info\/10:is(:hover, [data-hover]) {
|
|
1655
|
+
--mix-backgroundColor: color-mix(in srgb, var(--colors-info) 10%, transparent);
|
|
1656
|
+
background-color: var(--mix-backgroundColor, var(--colors-info));
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
.hover\:bg-c_primary\/10:is(:hover, [data-hover]) {
|
|
1660
|
+
--mix-backgroundColor: color-mix(in srgb, var(--colors-primary) 10%, transparent);
|
|
1661
|
+
background-color: var(--mix-backgroundColor, var(--colors-primary));
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
|
+
.hover\:bg-c_secondary\/10:is(:hover, [data-hover]) {
|
|
1665
|
+
--mix-backgroundColor: color-mix(in srgb, var(--colors-secondary) 10%, transparent);
|
|
1666
|
+
background-color: var(--mix-backgroundColor, var(--colors-secondary));
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
.hover\:bg-c_success\/10:is(:hover, [data-hover]) {
|
|
1670
|
+
--mix-backgroundColor: color-mix(in srgb, var(--colors-success) 10%, transparent);
|
|
1671
|
+
background-color: var(--mix-backgroundColor, var(--colors-success));
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
.hover\:bg-c_warning\/10:is(:hover, [data-hover]) {
|
|
1675
|
+
--mix-backgroundColor: color-mix(in srgb, var(--colors-warning) 10%, transparent);
|
|
1676
|
+
background-color: var(--mix-backgroundColor, var(--colors-warning));
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:pos_relative details > summary {
|
|
1680
|
+
position: relative;
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:d_flex details > summary {
|
|
1684
|
+
display: flex;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:gap_\.5rem details > summary {
|
|
1688
|
+
gap: .5rem;
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:p_1rem details > summary {
|
|
1692
|
+
padding: 1rem;
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:li-s_none details > summary {
|
|
1696
|
+
list-style: none;
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
.\[\&_details\]\:\[\&_p\]\:p_1rem details p {
|
|
1700
|
+
padding: 1rem;
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
.\[\&_details\]\:\[\&\:not\(\:last-child\)\]\:bd-b_1px_solid details:not(:last-child) {
|
|
1704
|
+
border-bottom: 1px solid;
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
[data-theme=dark] .\[\&_a\:not\(\:last-child\)\]\:dark\:c_color-mix\(in_oklch\,_var\(--colors-neutral-100\)\,_white_50\%\) a:not(:last-child) {
|
|
1708
|
+
color: color-mix(in oklch, var(--colors-neutral-100), white 50%);
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
.\[\&_a\:not\(\:last-child\)\]\:hover\:c_neutral\.800 a:not(:last-child):is(:hover, [data-hover]) {
|
|
1712
|
+
color: var(--colors-neutral-800);
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
.\[\&_\.combobox__input-search\]\:\[\&_\>_input\]\:ring_none .combobox__input-search > input {
|
|
1716
|
+
outline: var(--borders-none);
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.\[\&_\.combobox__input-search\]\:\[\&_\.combobox__search-icon\]\:pos_absolute .combobox__input-search .combobox__search-icon {
|
|
1720
|
+
position: absolute;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
.\[\&_li\]\:\[\&\:not\(\.combobox__input-search\)\]\:p_\.5rem li:not(.combobox__input-search) {
|
|
1724
|
+
padding: .5rem;
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
.\[\&_li\]\:\[\&\:nth-of-type\(even\)\]\:bg_neutral\.50 li:nth-of-type(even) {
|
|
1728
|
+
background: var(--colors-neutral-50);
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
.\[\&_input\]\:\[\&\:disabled\]\:cursor_not-allowed input:disabled {
|
|
1732
|
+
cursor: not-allowed;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
.\[\&_details\]\:hover\:bg-c_neutrals\.200 details:is(:hover, [data-hover]) {
|
|
1736
|
+
background-color: var(--colors-neutrals-200);
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
[data-theme=dark] .\[\&_details\]\:dark\:bg-c_neutrals\.900 details {
|
|
1740
|
+
background-color: var(--colors-neutrals-900);
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:flex-d_row details > summary {
|
|
1744
|
+
flex-direction: row;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:ai_center details > summary {
|
|
1748
|
+
align-items: center;
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
.\[\&_details\]\:\[\&\:not\(\:last-child\)\]\:bd-c_neutrals\.800 details:not(:last-child) {
|
|
1752
|
+
border-color: var(--colors-neutrals-800);
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
[data-theme=dark] .\[\&_\.combobox__input-search\]\:dark\:bd-c_\#15171E .combobox__input-search {
|
|
1756
|
+
border-color: #15171E;
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
.\[\&_\.combobox__input-search\]\:\[\&_\>_input\]\:pl_2rem .combobox__input-search > input {
|
|
1760
|
+
padding-left: 2rem;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
.\[\&_\.combobox__input-search\]\:\[\&_\.combobox__search-icon\]\:top_calc\(50\%_-_6px\) .combobox__input-search .combobox__search-icon {
|
|
1764
|
+
top: calc(50% - 6px);
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
.\[\&_\.combobox__input-search\]\:\[\&_\.combobox__search-icon\]\:left_8px .combobox__input-search .combobox__search-icon {
|
|
1768
|
+
left: 8px;
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
[data-theme=dark] .\[\&_ul\]\:dark\:bd-c_\#15171E ul {
|
|
1772
|
+
border-color: #15171E;
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
[data-theme=dark] .\[\&_ul\]\:dark\:bg-c_neutral\.950 ul {
|
|
1776
|
+
background-color: var(--colors-neutral-950);
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
.\[\&_li\]\:hover\:bg-c_neutral\.200 li:is(:hover, [data-hover]) {
|
|
1780
|
+
background-color: var(--colors-neutral-200);
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1783
|
+
.\[\&_input\]\:\[\&\.has__leading\]\:pl_2rem input.has__leading {
|
|
1784
|
+
padding-left: 2rem;
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
[data-theme=dark] .\[\&_div\]\:dark\:bg-c_neutrals\.800 div {
|
|
1788
|
+
background-color: var(--colors-neutrals-800);
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:pos_absolute details > summary::before {
|
|
1792
|
+
position: absolute;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:w_8px details > summary::before {
|
|
1796
|
+
width: 8px;
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:h_8px details > summary::before {
|
|
1800
|
+
height: 8px;
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:d_inline-block details > summary::before {
|
|
1804
|
+
display: inline-block;
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1807
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:trf_rotate\(135deg\) details > summary::before {
|
|
1808
|
+
transform: rotate(135deg);
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:trs_transform_400ms_cubic-bezier\(0\.4\,_0\,_0\.2\,_1\) details > summary::before {
|
|
1812
|
+
transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1815
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:va_top details > summary::before {
|
|
1816
|
+
vertical-align: top;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
[data-theme=dark] .\[\&_a\:not\(\:last-child\)\]\:hover\:dark\:c_neutral\.100 a:not(:last-child):is(:hover, [data-hover]) {
|
|
1820
|
+
color: var(--colors-neutral-100);
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
[data-theme=dark] .\[\&_li\]\:\[\&\:nth-of-type\(even\)\]\:dark\:bg_\#0f1015 li:nth-of-type(even) {
|
|
1824
|
+
background: #0f1015;
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
[data-theme=dark] .\[\&_details\]\:dark\:hover\:bg-c_neutrals\.800 details:is(:hover, [data-hover]) {
|
|
1828
|
+
background-color: var(--colors-neutrals-800);
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:\[\&_i\]\:fs_0\.75rem details > summary i {
|
|
1832
|
+
font-size: 0.75rem;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:content_\'\' details > summary::before {
|
|
1836
|
+
content: '';
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:top_calc\(50\%_-_5px\) details > summary::before {
|
|
1840
|
+
top: calc(50% - 5px);
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:right_16px details > summary::before {
|
|
1844
|
+
right: 16px;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:bg-c_neutrals\.100 details > summary::before {
|
|
1848
|
+
background-color: var(--colors-neutrals-100);
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:border-style_solid details > summary::before {
|
|
1852
|
+
border-style: solid;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:bd-w_2px_2px_0_0 details > summary::before {
|
|
1856
|
+
border-width: 2px 2px 0 0;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.\[\&_details\]\:\[\&_\>_summary\]\:before\:bd-c_neutrals\.800 details > summary::before {
|
|
1860
|
+
border-color: var(--colors-neutrals-800);
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
[data-theme=dark] .\[\&_details\]\:\[\&\:not\(\:last-child\)\]\:dark\:bd-c_neutrals\.100 details:not(:last-child) {
|
|
1864
|
+
border-color: var(--colors-neutrals-100);
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
[data-theme=dark] .\[\&_li\]\:hover\:dark\:bg-c_\#15171E li:is(:hover, [data-hover]) {
|
|
1868
|
+
background-color: #15171E;
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
.\[\&_details\]\:\[\&\[open\]\]\:\[\&_\>_summary\]\:before\:trf_rotate\(-45deg\) details[open] > summary::before {
|
|
1872
|
+
transform: rotate(-45deg);
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.\[\&_details\]\:\[\&\[open\]\]\:\[\&_\>_summary\]\:before\:trs_transform_400ms_cubic-bezier\(0\.4\,_0\,_0\.2\,_1\) details[open] > summary::before {
|
|
1876
|
+
transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
[data-theme=dark] .\[\&_details\]\:\[\&_\>_summary\]\:before\:dark\:bg-c_neutrals\.900 details > summary::before {
|
|
1880
|
+
background-color: var(--colors-neutrals-900);
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
[data-theme=dark] .\[\&_details\]\:\[\&_\>_summary\]\:before\:dark\:bd-c_neutrals\.50 details > summary::before {
|
|
1884
|
+
border-color: var(--colors-neutrals-50);
|
|
1885
|
+
}
|
|
1886
|
+
}
|