lutra 0.1.68 → 0.1.70
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/components/AspectRatio.svelte +19 -9
- package/dist/components/AspectRatio.svelte.d.ts +2 -1
- package/dist/components/Avatar.svelte +5 -8
- package/dist/components/Close.svelte +24 -27
- package/dist/components/Close.svelte.d.ts +2 -0
- package/dist/components/ContextTip.svelte +3 -2
- package/dist/components/DataList.svelte +111 -0
- package/dist/components/DataList.svelte.d.ts +10 -0
- package/dist/components/DataListTypes.d.ts +14 -0
- package/dist/components/DataListTypes.js +1 -0
- package/dist/components/Dialog.svelte +38 -0
- package/dist/components/Icon.svelte +2 -2
- package/dist/components/IconButton.svelte +10 -22
- package/dist/components/Image.svelte +2 -2
- package/dist/components/Indicator.svelte +2 -1
- package/dist/components/Inset.svelte +13 -0
- package/dist/components/Layout.svelte +7 -3
- package/dist/components/Layout.svelte.d.ts +3 -2
- package/dist/components/MenuDropdown.svelte +12 -2
- package/dist/components/MenuItem.svelte +30 -14
- package/dist/components/MenuItem.svelte.d.ts +6 -0
- package/dist/components/Modal.svelte +36 -20
- package/dist/components/Popover.svelte +43 -13
- package/dist/components/TabbedContent.svelte +1 -1
- package/dist/components/TabbedContentItem.svelte +14 -0
- package/dist/components/TabbedContentItem.svelte.d.ts +4 -0
- package/dist/components/Table.svelte +69 -0
- package/dist/components/Table.svelte.d.ts +7 -0
- package/dist/components/Tabs.svelte +44 -36
- package/dist/components/Tag.svelte +53 -13
- package/dist/components/Tag.svelte.d.ts +4 -0
- package/dist/components/Theme.svelte +121 -94
- package/dist/components/Theme.svelte.d.ts +7 -6
- package/dist/components/Toast.svelte +11 -8
- package/dist/components/Tooltip.svelte +17 -10
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +2 -0
- package/dist/css/1-props.css +197 -163
- package/dist/css/2-init.css +519 -0
- package/dist/css/{2-base.css → 3-base.css} +42 -131
- package/dist/css/{3-typo.css → 4-typo.css} +3 -1
- package/dist/css/lutra.css +7 -6
- package/dist/css/themes/DefaultTheme.css +26 -4
- package/dist/form/Button.svelte +20 -0
- package/dist/form/Button.svelte.d.ts +9 -0
- package/dist/form/Datepicker.svelte +13 -0
- package/dist/form/Datepicker.svelte.d.ts +3 -0
- package/dist/form/FieldContent.svelte +20 -11
- package/dist/form/FieldError.svelte +1 -1
- package/dist/form/FieldGroup.svelte +84 -0
- package/dist/form/FieldGroup.svelte.d.ts +20 -0
- package/dist/form/Fieldset.svelte +19 -11
- package/dist/form/Form.svelte +137 -63
- package/dist/form/Form.svelte.d.ts +21 -0
- package/dist/form/FormActions.svelte +21 -3
- package/dist/form/FormActions.svelte.d.ts +3 -0
- package/dist/form/FormSection.svelte +22 -20
- package/dist/form/ImageUpload.svelte +50 -30
- package/dist/form/ImageUpload.svelte.d.ts +14 -0
- package/dist/form/Input.svelte +62 -30
- package/dist/form/Input.svelte.d.ts +0 -1
- package/dist/form/InputLength.svelte +5 -5
- package/dist/form/Label.svelte +6 -6
- package/dist/form/LogoUpload.svelte +24 -10
- package/dist/form/Select.svelte +23 -10
- package/dist/form/Select.svelte.d.ts +6 -6
- package/dist/form/Textarea.svelte +11 -1
- package/dist/form/Toggle.svelte +162 -0
- package/dist/form/Toggle.svelte.d.ts +31 -17
- package/dist/form/client.svelte.js +0 -2
- package/dist/form/index.d.ts +1 -0
- package/dist/form/index.js +1 -0
- package/dist/state/Persisted.svelte.d.ts +6 -0
- package/dist/state/Persisted.svelte.js +29 -0
- package/dist/state/theme.svelte.d.ts +7 -0
- package/dist/state/theme.svelte.js +14 -0
- package/dist/types.d.ts +6 -23
- package/dist/types.js +0 -17
- package/dist/util/color.js +2 -2
- package/package.json +5 -4
- package/dist/config.d.ts +0 -30
- package/dist/config.js +0 -18
- /package/dist/css/{4-layout.css → 5-layout.css} +0 -0
- /package/dist/css/{5-media.css → 6-media.css} +0 -0
package/dist/css/1-props.css
CHANGED
|
@@ -37,11 +37,15 @@
|
|
|
37
37
|
@property --space-900 { syntax: "<length>"; inherits: true; initial-value: 120px; }
|
|
38
38
|
@property --space-1000 { syntax: "<length>"; inherits: true; initial-value: 128px; }
|
|
39
39
|
|
|
40
|
+
@property --space-xxs { syntax: "<length>"; inherits: true; initial-value: 4px; }
|
|
40
41
|
@property --space-xs { syntax: "<length>"; inherits: true; initial-value: 4px; }
|
|
41
42
|
@property --space-sm { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
42
43
|
@property --space-md { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
43
|
-
@property --space-lg { syntax: "<length>"; inherits: true; initial-value:
|
|
44
|
-
@property --space-xl { syntax: "<length>"; inherits: true; initial-value:
|
|
44
|
+
@property --space-lg { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
|
45
|
+
@property --space-xl { syntax: "<length>"; inherits: true; initial-value: 32px; }
|
|
46
|
+
@property --space-xxl { syntax: "<length>"; inherits: true; initial-value: 48px; }
|
|
47
|
+
@property --space-xxxl { syntax: "<length>"; inherits: true; initial-value: 64px; }
|
|
48
|
+
@property --space-xxxxl { syntax: "<length>"; inherits: true; initial-value: 80px; }
|
|
45
49
|
|
|
46
50
|
/**
|
|
47
51
|
* Fonts
|
|
@@ -54,17 +58,17 @@
|
|
|
54
58
|
@property --font-size-base { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
55
59
|
|
|
56
60
|
/* font size */
|
|
57
|
-
@property --font-size-xs { syntax: "<length>"; inherits: true; initial-value:
|
|
58
|
-
@property --font-size-sm { syntax: "<length>"; inherits: true; initial-value:
|
|
59
|
-
@property --font-size-p { syntax: "<length>"; inherits: true; initial-value:
|
|
60
|
-
@property --font-size-h6 { syntax: "<length>"; inherits: true; initial-value:
|
|
61
|
-
@property --font-size-h5 { syntax: "<length>"; inherits: true; initial-value:
|
|
62
|
-
@property --font-size-h4 { syntax: "<length>"; inherits: true; initial-value:
|
|
63
|
-
@property --font-size-h3 { syntax: "<length>"; inherits: true; initial-value:
|
|
64
|
-
@property --font-size-h2 { syntax: "<length>"; inherits: true; initial-value:
|
|
65
|
-
@property --font-size-h1 { syntax: "<length>"; inherits: true; initial-value:
|
|
66
|
-
@property --font-size-hero { syntax: "<length>"; inherits: true; initial-value:
|
|
67
|
-
@property --font-size-jumbo { syntax: "<length>"; inherits: true; initial-value:
|
|
61
|
+
@property --font-size-xs { syntax: "<length>"; inherits: true; initial-value: 12px; }
|
|
62
|
+
@property --font-size-sm { syntax: "<length>"; inherits: true; initial-value: 14px; }
|
|
63
|
+
@property --font-size-p { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
64
|
+
@property --font-size-h6 { syntax: "<length>"; inherits: true; initial-value: 20px; }
|
|
65
|
+
@property --font-size-h5 { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
|
66
|
+
@property --font-size-h4 { syntax: "<length>"; inherits: true; initial-value: 28px; }
|
|
67
|
+
@property --font-size-h3 { syntax: "<length>"; inherits: true; initial-value: 32px; }
|
|
68
|
+
@property --font-size-h2 { syntax: "<length>"; inherits: true; initial-value: 40px; }
|
|
69
|
+
@property --font-size-h1 { syntax: "<length>"; inherits: true; initial-value: 48px; }
|
|
70
|
+
@property --font-size-hero { syntax: "<length>"; inherits: true; initial-value: 64px; }
|
|
71
|
+
@property --font-size-jumbo { syntax: "<length>"; inherits: true; initial-value: 80px; }
|
|
68
72
|
|
|
69
73
|
/* font weight */
|
|
70
74
|
@property --font-weight-thin { syntax: "<number>"; inherits: true; initial-value: 300; }
|
|
@@ -108,8 +112,8 @@
|
|
|
108
112
|
|
|
109
113
|
/* links */
|
|
110
114
|
|
|
111
|
-
@property --link-text-decoration { syntax: "
|
|
112
|
-
@property --link-text-decoration-hover { syntax: "
|
|
115
|
+
@property --link-text-decoration { syntax: "*"; inherits: true; initial-value: none; }
|
|
116
|
+
@property --link-text-decoration-hover { syntax: "*"; inherits: true; initial-value: underline; }
|
|
113
117
|
|
|
114
118
|
@property --link-color { syntax: "*"; inherits: true; initial-value: #2563eb; }
|
|
115
119
|
@property --link-color-visited { syntax: "*"; inherits: true; initial-value: #7c3aed; }
|
|
@@ -156,13 +160,22 @@
|
|
|
156
160
|
* Forms
|
|
157
161
|
*/
|
|
158
162
|
|
|
159
|
-
@property --form-background { syntax: "
|
|
160
|
-
@property --form-background-actions { syntax: "
|
|
163
|
+
@property --form-background { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
|
164
|
+
@property --form-background-actions { syntax: "*"; inherits: true; initial-value: #ffffff; }
|
|
161
165
|
@property --form-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
162
|
-
@property --form-border-color { syntax: "
|
|
166
|
+
@property --form-border-color { syntax: "*"; inherits: true; initial-value: #d1d5db; }
|
|
163
167
|
@property --form-border-size { syntax: "<length>"; inherits: true; initial-value: 1px; }
|
|
164
168
|
@property --form-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
|
165
169
|
|
|
170
|
+
@property --form-field-gap { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
|
171
|
+
@property --form-label-gap { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
172
|
+
@property --form-section-gap { syntax: "<length>"; inherits: true; initial-value: 32px; }
|
|
173
|
+
@property --form-title-gap { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
174
|
+
@property --form-title-padding-block-end { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
175
|
+
@property --form-field-inside-gap { syntax: "<length>"; inherits: true; initial-value: 4px; }
|
|
176
|
+
@property --form-padding-block { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
|
177
|
+
@property --form-padding-inline { syntax: "<length>"; inherits: true; initial-value: 32px; }
|
|
178
|
+
|
|
166
179
|
/**
|
|
167
180
|
* Fields
|
|
168
181
|
*/
|
|
@@ -183,50 +196,51 @@
|
|
|
183
196
|
@property --field-background-interest { syntax: "<color>"; inherits: true; initial-value: #f0f9ff; }
|
|
184
197
|
@property --field-background-loading { syntax: "<color>"; inherits: true; initial-value: #f0f9ff; }
|
|
185
198
|
|
|
186
|
-
@property --field-border-color { syntax: "
|
|
187
|
-
@property --field-border-color-active { syntax: "
|
|
188
|
-
@property --field-border-color-inactive { syntax: "
|
|
189
|
-
@property --field-border-color-disabled { syntax: "
|
|
190
|
-
@property --field-border-color-focus { syntax: "
|
|
191
|
-
@property --field-border-color-invalid { syntax: "
|
|
192
|
-
@property --field-border-color-valid { syntax: "
|
|
193
|
-
@property --field-border-color-success { syntax: "
|
|
194
|
-
@property --field-border-color-danger { syntax: "
|
|
195
|
-
@property --field-border-color-warn { syntax: "
|
|
196
|
-
@property --field-border-color-info { syntax: "
|
|
197
|
-
@property --field-border-color-selected { syntax: "
|
|
198
|
-
@property --field-border-color-interest { syntax: "
|
|
199
|
-
@property --field-border-color-loading { syntax: "
|
|
199
|
+
@property --field-border-color { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
200
|
+
@property --field-border-color-active { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
201
|
+
@property --field-border-color-inactive { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
202
|
+
@property --field-border-color-disabled { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
203
|
+
@property --field-border-color-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
204
|
+
@property --field-border-color-invalid { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
205
|
+
@property --field-border-color-valid { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
206
|
+
@property --field-border-color-success { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
207
|
+
@property --field-border-color-danger { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
208
|
+
@property --field-border-color-warn { syntax: "<color>"; inherits: true; initial-value: #ca8a04; }
|
|
209
|
+
@property --field-border-color-info { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
210
|
+
@property --field-border-color-selected { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
211
|
+
@property --field-border-color-interest { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
|
212
|
+
@property --field-border-color-loading { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
|
200
213
|
|
|
201
214
|
@property --field-border-size { syntax: "<length>"; inherits: true; initial-value: 1px; }
|
|
202
215
|
@property --field-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
|
203
216
|
@property --field-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
204
217
|
|
|
205
|
-
@property --field-color { syntax: "
|
|
206
|
-
@property --field-color-active { syntax: "
|
|
207
|
-
@property --field-color-inactive { syntax: "
|
|
208
|
-
@property --field-color-disabled { syntax: "
|
|
209
|
-
@property --field-color-focus { syntax: "
|
|
210
|
-
@property --field-color-invalid { syntax: "
|
|
211
|
-
@property --field-color-valid { syntax: "
|
|
212
|
-
@property --field-color-success { syntax: "
|
|
213
|
-
@property --field-color-danger { syntax: "
|
|
214
|
-
@property --field-color-warn { syntax: "
|
|
215
|
-
@property --field-color-info { syntax: "
|
|
216
|
-
@property --field-color-selected { syntax: "
|
|
217
|
-
@property --field-color-interest { syntax: "
|
|
218
|
-
@property --field-color-loading { syntax: "
|
|
219
|
-
|
|
220
|
-
@property --field-label-color { syntax: "
|
|
221
|
-
@property --field-label-font-size { syntax: "<length>"; inherits: true; initial-value:
|
|
218
|
+
@property --field-color { syntax: "<color>"; inherits: true; initial-value: #1a1a1a; }
|
|
219
|
+
@property --field-color-active { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
220
|
+
@property --field-color-inactive { syntax: "<color>"; inherits: true; initial-value: #666666; }
|
|
221
|
+
@property --field-color-disabled { syntax: "<color>"; inherits: true; initial-value: #cccccc; }
|
|
222
|
+
@property --field-color-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
223
|
+
@property --field-color-invalid { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
224
|
+
@property --field-color-valid { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
225
|
+
@property --field-color-success { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
226
|
+
@property --field-color-danger { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
227
|
+
@property --field-color-warn { syntax: "<color>"; inherits: true; initial-value: #ca8a04; }
|
|
228
|
+
@property --field-color-info { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
229
|
+
@property --field-color-selected { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
230
|
+
@property --field-color-interest { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
|
231
|
+
@property --field-color-loading { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
|
232
|
+
|
|
233
|
+
@property --field-label-color { syntax: "<color>"; inherits: true; initial-value: #111111; }
|
|
234
|
+
@property --field-label-font-size { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
222
235
|
@property --field-label-font-weight { syntax: "<number>"; inherits: true; initial-value: 600; }
|
|
223
236
|
|
|
224
|
-
@property --field-placeholder-color { syntax: "
|
|
237
|
+
@property --field-placeholder-color { syntax: "<color>"; inherits: true; initial-value: #999999; }
|
|
225
238
|
@property --field-padding-inline { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
226
239
|
@property --field-padding-block { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
227
240
|
|
|
228
241
|
@property --field-icon-size { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
|
229
242
|
@property --field-icon-order { syntax: "<number>"; inherits: true; initial-value: 1; }
|
|
243
|
+
@property --field-group-gap { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
230
244
|
|
|
231
245
|
/**
|
|
232
246
|
* Checkbox and Radio
|
|
@@ -236,93 +250,107 @@
|
|
|
236
250
|
@property --checkbox-border-radius { syntax: "<length>"; inherits: true; initial-value: 4px; }
|
|
237
251
|
@property --checkbox-background { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
238
252
|
@property --checkbox-background-checked { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
239
|
-
@property --checkbox-border-color { syntax: "
|
|
240
|
-
@property --checkbox-border-color-checked { syntax: "
|
|
253
|
+
@property --checkbox-border-color { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
254
|
+
@property --checkbox-border-color-checked { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
241
255
|
@property --checkbox-indicator-color { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
242
256
|
|
|
257
|
+
/**
|
|
258
|
+
* Toggle
|
|
259
|
+
*/
|
|
260
|
+
|
|
261
|
+
@property --toggle-width { syntax: "<length>"; inherits: true; initial-value: 44px; }
|
|
262
|
+
@property --toggle-height { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
|
263
|
+
@property --toggle-background { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
264
|
+
@property --toggle-background-checked { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
265
|
+
@property --toggle-border-color { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
266
|
+
@property --toggle-border-color-checked { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
267
|
+
@property --toggle-thumb-size { syntax: "<length>"; inherits: true; initial-value: 18px; }
|
|
268
|
+
@property --toggle-thumb-color { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
269
|
+
@property --toggle-thumb-shadow { syntax: "*"; inherits: true; initial-value: 0 1px 3px rgba(0, 0, 0, 0.2); }
|
|
270
|
+
|
|
243
271
|
/**
|
|
244
272
|
* Button Component
|
|
245
273
|
*/
|
|
246
274
|
|
|
247
|
-
@property --button-base-color { syntax: "
|
|
248
|
-
@property --button-base-color-hover { syntax: "
|
|
275
|
+
@property --button-base-color { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
276
|
+
@property --button-base-color-hover { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
249
277
|
|
|
250
278
|
/* primary */
|
|
251
279
|
|
|
252
|
-
@property --button-submit-color { syntax: "
|
|
253
|
-
@property --button-submit-color-hover { syntax: "
|
|
254
|
-
@property --button-submit-color-disabled { syntax: "
|
|
255
|
-
@property --button-submit-color-focus { syntax: "
|
|
256
|
-
@property --button-submit-color-loading { syntax: "
|
|
280
|
+
@property --button-submit-color { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
281
|
+
@property --button-submit-color-hover { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
282
|
+
@property --button-submit-color-disabled { syntax: "<color>"; inherits: true; initial-value: #cccccc; }
|
|
283
|
+
@property --button-submit-color-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
284
|
+
@property --button-submit-color-loading { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
|
257
285
|
|
|
258
|
-
@property --button-submit-background { syntax: "
|
|
259
|
-
@property --button-submit-background-hover { syntax: "
|
|
260
|
-
@property --button-submit-background-disabled { syntax: "
|
|
261
|
-
@property --button-submit-background-focus { syntax: "
|
|
262
|
-
@property --button-submit-background-loading { syntax: "
|
|
286
|
+
@property --button-submit-background { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
287
|
+
@property --button-submit-background-hover { syntax: "<color>"; inherits: true; initial-value: #1d4ed8; }
|
|
288
|
+
@property --button-submit-background-disabled { syntax: "<color>"; inherits: true; initial-value: #f3f4f6; }
|
|
289
|
+
@property --button-submit-background-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
290
|
+
@property --button-submit-background-loading { syntax: "<color>"; inherits: true; initial-value: #f0f9ff; }
|
|
263
291
|
|
|
264
|
-
@property --button-submit-border-color { syntax: "
|
|
265
|
-
@property --button-submit-border-color-hover { syntax: "
|
|
266
|
-
@property --button-submit-border-color-disabled { syntax: "
|
|
267
|
-
@property --button-submit-border-color-focus { syntax: "
|
|
268
|
-
@property --button-submit-border-color-loading { syntax: "
|
|
292
|
+
@property --button-submit-border-color { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
293
|
+
@property --button-submit-border-color-hover { syntax: "<color>"; inherits: true; initial-value: #1d4ed8; }
|
|
294
|
+
@property --button-submit-border-color-disabled { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
295
|
+
@property --button-submit-border-color-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
296
|
+
@property --button-submit-border-color-loading { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
|
269
297
|
|
|
270
298
|
/* action */
|
|
271
|
-
@property --button-action-color { syntax: "
|
|
272
|
-
@property --button-action-color-hover { syntax: "
|
|
273
|
-
@property --button-action-color-disabled { syntax: "
|
|
274
|
-
@property --button-action-color-focus { syntax: "
|
|
275
|
-
@property --button-action-color-loading { syntax: "
|
|
276
|
-
|
|
277
|
-
@property --button-action-background { syntax: "
|
|
278
|
-
@property --button-action-background-hover { syntax: "
|
|
279
|
-
@property --button-action-background-disabled { syntax: "
|
|
280
|
-
@property --button-action-background-focus { syntax: "
|
|
281
|
-
@property --button-action-background-loading { syntax: "
|
|
282
|
-
|
|
283
|
-
@property --button-action-border-color { syntax: "
|
|
284
|
-
@property --button-action-border-color-hover { syntax: "
|
|
285
|
-
@property --button-action-border-color-disabled { syntax: "
|
|
286
|
-
@property --button-action-border-color-focus { syntax: "
|
|
287
|
-
@property --button-action-border-color-loading { syntax: "
|
|
299
|
+
@property --button-action-color { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
300
|
+
@property --button-action-color-hover { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
301
|
+
@property --button-action-color-disabled { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
302
|
+
@property --button-action-color-focus { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
303
|
+
@property --button-action-color-loading { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
304
|
+
|
|
305
|
+
@property --button-action-background { syntax: "<color>"; inherits: true; initial-value: #111111; }
|
|
306
|
+
@property --button-action-background-hover { syntax: "<color>"; inherits: true; initial-value: #111111; }
|
|
307
|
+
@property --button-action-background-disabled { syntax: "<color>"; inherits: true; initial-value: #f3f4f6; }
|
|
308
|
+
@property --button-action-background-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
309
|
+
@property --button-action-background-loading { syntax: "<color>"; inherits: true; initial-value: #f0f9ff; }
|
|
310
|
+
|
|
311
|
+
@property --button-action-border-color { syntax: "<color>"; inherits: true; initial-value: #111111; }
|
|
312
|
+
@property --button-action-border-color-hover { syntax: "<color>"; inherits: true; initial-value: #111111; }
|
|
313
|
+
@property --button-action-border-color-disabled { syntax: "<color>"; inherits: true; initial-value: #111111; }
|
|
314
|
+
@property --button-action-border-color-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
315
|
+
@property --button-action-border-color-loading { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
|
288
316
|
|
|
289
317
|
/* danger */
|
|
290
|
-
@property --button-danger-color { syntax: "
|
|
291
|
-
@property --button-danger-color-hover { syntax: "
|
|
292
|
-
@property --button-danger-color-disabled { syntax: "
|
|
293
|
-
@property --button-danger-color-focus { syntax: "
|
|
294
|
-
@property --button-danger-color-loading { syntax: "
|
|
295
|
-
|
|
296
|
-
@property --button-danger-background { syntax: "
|
|
297
|
-
@property --button-danger-background-hover { syntax: "
|
|
298
|
-
@property --button-danger-background-disabled { syntax: "
|
|
299
|
-
@property --button-danger-background-focus { syntax: "
|
|
300
|
-
@property --button-danger-background-loading { syntax: "
|
|
301
|
-
|
|
302
|
-
@property --button-danger-border-color { syntax: "
|
|
303
|
-
@property --button-danger-border-color-hover { syntax: "
|
|
304
|
-
@property --button-danger-border-color-disabled { syntax: "
|
|
305
|
-
@property --button-danger-border-color-focus { syntax: "
|
|
306
|
-
@property --button-danger-border-color-loading { syntax: "
|
|
318
|
+
@property --button-danger-color { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
319
|
+
@property --button-danger-color-hover { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
320
|
+
@property --button-danger-color-disabled { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
321
|
+
@property --button-danger-color-focus { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
322
|
+
@property --button-danger-color-loading { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
323
|
+
|
|
324
|
+
@property --button-danger-background { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
325
|
+
@property --button-danger-background-hover { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
326
|
+
@property --button-danger-background-disabled { syntax: "<color>"; inherits: true; initial-value: #f3f4f6; }
|
|
327
|
+
@property --button-danger-background-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
328
|
+
@property --button-danger-background-loading { syntax: "<color>"; inherits: true; initial-value: #f0f9ff; }
|
|
329
|
+
|
|
330
|
+
@property --button-danger-border-color { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
331
|
+
@property --button-danger-border-color-hover { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
332
|
+
@property --button-danger-border-color-disabled { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
333
|
+
@property --button-danger-border-color-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
334
|
+
@property --button-danger-border-color-loading { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
|
307
335
|
|
|
308
336
|
/* success */
|
|
309
|
-
@property --button-success-color { syntax: "
|
|
310
|
-
@property --button-success-color-hover { syntax: "
|
|
311
|
-
@property --button-success-color-disabled { syntax: "
|
|
312
|
-
@property --button-success-color-focus { syntax: "
|
|
313
|
-
@property --button-success-color-loading { syntax: "
|
|
314
|
-
|
|
315
|
-
@property --button-success-background { syntax: "
|
|
316
|
-
@property --button-success-background-hover { syntax: "
|
|
317
|
-
@property --button-success-background-disabled { syntax: "
|
|
318
|
-
@property --button-success-background-focus { syntax: "
|
|
319
|
-
@property --button-success-background-loading { syntax: "
|
|
320
|
-
|
|
321
|
-
@property --button-success-border-color { syntax: "
|
|
322
|
-
@property --button-success-border-color-hover { syntax: "
|
|
323
|
-
@property --button-success-border-color-disabled { syntax: "
|
|
324
|
-
@property --button-success-border-color-focus { syntax: "
|
|
325
|
-
@property --button-success-border-color-loading { syntax: "
|
|
337
|
+
@property --button-success-color { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
338
|
+
@property --button-success-color-hover { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
339
|
+
@property --button-success-color-disabled { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
340
|
+
@property --button-success-color-focus { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
341
|
+
@property --button-success-color-loading { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
342
|
+
|
|
343
|
+
@property --button-success-background { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
344
|
+
@property --button-success-background-hover { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
345
|
+
@property --button-success-background-disabled { syntax: "<color>"; inherits: true; initial-value: #f3f4f6; }
|
|
346
|
+
@property --button-success-background-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
347
|
+
@property --button-success-background-loading { syntax: "<color>"; inherits: true; initial-value: #f0f9ff; }
|
|
348
|
+
|
|
349
|
+
@property --button-success-border-color { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
350
|
+
@property --button-success-border-color-hover { syntax: "<color>"; inherits: true; initial-value: #16a34a; }
|
|
351
|
+
@property --button-success-border-color-disabled { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
352
|
+
@property --button-success-border-color-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
353
|
+
@property --button-success-border-color-loading { syntax: "<color>"; inherits: true; initial-value: #7c3aed; }
|
|
326
354
|
|
|
327
355
|
@property --button-border-size { syntax: "<length>"; inherits: true; initial-value: 1px; }
|
|
328
356
|
@property --button-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
|
@@ -330,7 +358,7 @@
|
|
|
330
358
|
|
|
331
359
|
@property --button-padding-inline { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
332
360
|
@property --button-padding-block { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
333
|
-
@property --button-padding { syntax: "
|
|
361
|
+
@property --button-padding { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
334
362
|
@property --button-border { syntax: "*"; inherits: true; initial-value: none; }
|
|
335
363
|
|
|
336
364
|
@property --button-font-weight { syntax: "<number>"; inherits: true; initial-value: 500; }
|
|
@@ -342,16 +370,16 @@
|
|
|
342
370
|
* Shadows
|
|
343
371
|
*/
|
|
344
372
|
|
|
345
|
-
@property --shadow-color { syntax: "
|
|
346
|
-
@property --shadow-base { syntax: "
|
|
373
|
+
@property --shadow-color { syntax: "<color>"; inherits: true; initial-value: rgba(0, 0, 0, 0.1); }
|
|
374
|
+
@property --shadow-base { syntax: "*"; inherits: true; initial-value: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
|
|
347
375
|
|
|
348
376
|
/**
|
|
349
377
|
* Code
|
|
350
378
|
*/
|
|
351
379
|
|
|
352
|
-
@property --code-background { syntax: "<color
|
|
353
|
-
@property --code-color { syntax: "
|
|
354
|
-
@property --code-border-color { syntax: "
|
|
380
|
+
@property --code-background { syntax: "<color>"; inherits: true; initial-value: #f8fafc; }
|
|
381
|
+
@property --code-color { syntax: "<color>"; inherits: true; initial-value: #1a1a1a; }
|
|
382
|
+
@property --code-border-color { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
355
383
|
@property --code-border-size { syntax: "<length>"; inherits: true; initial-value: 0; }
|
|
356
384
|
@property --code-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
|
357
385
|
@property --code-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
@@ -363,18 +391,18 @@
|
|
|
363
391
|
* Backgrounds
|
|
364
392
|
*/
|
|
365
393
|
|
|
366
|
-
@property --background-body { syntax: "<color
|
|
367
|
-
@property --background-main { syntax: "<color
|
|
368
|
-
@property --background-main-subtle { syntax: "<color
|
|
369
|
-
|
|
370
|
-
@property --background-active { syntax: "<color
|
|
371
|
-
@property --background-inactive { syntax: "<color
|
|
372
|
-
@property --background-disabled { syntax: "<color
|
|
373
|
-
@property --background-focus { syntax: "<color
|
|
374
|
-
@property --background-invalid { syntax: "<color
|
|
375
|
-
@property --background-valid { syntax: "<color
|
|
376
|
-
@property --background-success { syntax: "<color
|
|
377
|
-
@property --background-danger { syntax: "<color
|
|
394
|
+
@property --background-body { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
395
|
+
@property --background-main { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
396
|
+
@property --background-main-subtle { syntax: "<color>"; inherits: true; initial-value: #f8fafc; }
|
|
397
|
+
|
|
398
|
+
@property --background-active { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
399
|
+
@property --background-inactive { syntax: "<color>"; inherits: true; initial-value: #f3f4f6; }
|
|
400
|
+
@property --background-disabled { syntax: "<color>"; inherits: true; initial-value: #f3f4f6; }
|
|
401
|
+
@property --background-focus { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
402
|
+
@property --background-invalid { syntax: "<color>"; inherits: true; initial-value: #fef2f2; }
|
|
403
|
+
@property --background-valid { syntax: "<color>"; inherits: true; initial-value: #dcfce7; }
|
|
404
|
+
@property --background-success { syntax: "<color>"; inherits: true; initial-value: #dcfce7; }
|
|
405
|
+
@property --background-danger { syntax: "<color>"; inherits: true; initial-value: #fef2f2; }
|
|
378
406
|
@property --background-warn { syntax: "<color>"; inherits: true; initial-value: #fefce8; }
|
|
379
407
|
@property --background-info { syntax: "<color>"; inherits: true; initial-value: #eff6ff; }
|
|
380
408
|
@property --background-selected { syntax: "<color>"; inherits: true; initial-value: #eff6ff; }
|
|
@@ -404,8 +432,8 @@
|
|
|
404
432
|
|
|
405
433
|
@property --focus-ring { syntax: "*"; inherits: true; initial-value: 2px solid #2563eb; }
|
|
406
434
|
@property --focus-ring-size { syntax: "<length>"; inherits: true; initial-value: 2px; }
|
|
407
|
-
@property --focus-ring-color { syntax: "
|
|
408
|
-
@property --focus-ring-color-invalid { syntax: "
|
|
435
|
+
@property --focus-ring-color { syntax: "<color>"; inherits: true; initial-value: #2563eb; }
|
|
436
|
+
@property --focus-ring-color-invalid { syntax: "<color>"; inherits: true; initial-value: #dc2626; }
|
|
409
437
|
@property --focus-ring-offset { syntax: "<length>"; inherits: true; initial-value: 0px; }
|
|
410
438
|
|
|
411
439
|
/**
|
|
@@ -422,10 +450,10 @@
|
|
|
422
450
|
*/
|
|
423
451
|
|
|
424
452
|
@property --tooltip-background { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
425
|
-
@property --tooltip-color { syntax: "
|
|
453
|
+
@property --tooltip-color { syntax: "<color>"; inherits: true; initial-value: #1a1a1a; }
|
|
426
454
|
@property --tooltip-border { syntax: "*"; inherits: true; initial-value: 1px solid #d1d5db; }
|
|
427
455
|
@property --tooltip-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
428
|
-
@property --tooltip-shadow { syntax: "*"; inherits: true; initial-value: 0
|
|
456
|
+
@property --tooltip-shadow { syntax: "*"; inherits: true; initial-value: 0 4px 8px rgba(0, 0, 0, 0.15); }
|
|
429
457
|
|
|
430
458
|
/**
|
|
431
459
|
* Toast (inherits from surface system)
|
|
@@ -434,17 +462,17 @@
|
|
|
434
462
|
@property --toast-background { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
435
463
|
@property --toast-border { syntax: "*"; inherits: true; initial-value: 1px solid #d1d5db; }
|
|
436
464
|
@property --toast-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
437
|
-
@property --toast-shadow { syntax: "*"; inherits: true; initial-value: 0
|
|
438
|
-
@property --toast-padding-inline { syntax: "<length>"; inherits: true; initial-value:
|
|
439
|
-
@property --toast-padding-block { syntax: "<length>"; inherits: true; initial-value:
|
|
440
|
-
@property --toast-gap { syntax: "<length>"; inherits: true; initial-value:
|
|
441
|
-
@property --toast-min-width { syntax: "<length>"; inherits: true; initial-value:
|
|
442
|
-
@property --toast-max-width { syntax: "<length>"; inherits: true; initial-value:
|
|
465
|
+
@property --toast-shadow { syntax: "*"; inherits: true; initial-value: 0 4px 16px rgba(0, 0, 0, 0.15); }
|
|
466
|
+
@property --toast-padding-inline { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
467
|
+
@property --toast-padding-block { syntax: "<length>"; inherits: true; initial-value: 12px; }
|
|
468
|
+
@property --toast-gap { syntax: "<length>"; inherits: true; initial-value: 12px; }
|
|
469
|
+
@property --toast-min-width { syntax: "<length>"; inherits: true; initial-value: 320px; }
|
|
470
|
+
@property --toast-max-width { syntax: "<length>"; inherits: true; initial-value: 448px; }
|
|
443
471
|
@property --toast-title-color { syntax: "*"; inherits: true; initial-value: #1a1a1a; }
|
|
444
472
|
@property --toast-title-font-weight { syntax: "<number>"; inherits: true; initial-value: 600; }
|
|
445
473
|
@property --toast-text-color { syntax: "*"; inherits: true; initial-value: #666666; }
|
|
446
|
-
@property --toast-icon-size { syntax: "<length>"; inherits: true; initial-value:
|
|
447
|
-
@property --toast-offset { syntax: "<length>"; inherits: true; initial-value:
|
|
474
|
+
@property --toast-icon-size { syntax: "<length>"; inherits: true; initial-value: 20px; }
|
|
475
|
+
@property --toast-offset { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
448
476
|
|
|
449
477
|
/**
|
|
450
478
|
* Menu
|
|
@@ -472,36 +500,42 @@
|
|
|
472
500
|
@property --table-cell-padding-block { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
473
501
|
|
|
474
502
|
@property --table-header-background { syntax: "<color>"; inherits: true; initial-value: #f8fafc; }
|
|
475
|
-
@property --table-header-color { syntax: "
|
|
503
|
+
@property --table-header-color { syntax: "<color>"; inherits: true; initial-value: #1a1a1a; }
|
|
476
504
|
@property --table-header-font-weight { syntax: "<number>"; inherits: true; initial-value: 600; }
|
|
477
505
|
|
|
478
506
|
@property --table-row-background { syntax: "<color>"; inherits: true; initial-value: transparent; }
|
|
479
507
|
@property --table-row-background-even { syntax: "<color>"; inherits: true; initial-value: #f8fafc; }
|
|
480
508
|
@property --table-row-background-hover { syntax: "<color>"; inherits: true; initial-value: #f1f5f9; }
|
|
481
509
|
|
|
482
|
-
@property --table-cell-color { syntax: "
|
|
510
|
+
@property --table-cell-color { syntax: "<color>"; inherits: true; initial-value: #1a1a1a; }
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* Data List
|
|
514
|
+
*/
|
|
515
|
+
|
|
516
|
+
@property --data-list-gap { syntax: "<length>"; inherits: true; initial-value: 12px; }
|
|
483
517
|
|
|
484
518
|
/**
|
|
485
519
|
* Modal
|
|
486
520
|
*/
|
|
487
521
|
|
|
488
522
|
@property --modal-background { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
489
|
-
@property --modal-border-color { syntax: "
|
|
523
|
+
@property --modal-border-color { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
490
524
|
@property --modal-border-size { syntax: "<length>"; inherits: true; initial-value: 1px; }
|
|
491
525
|
@property --modal-border-style { syntax: "solid | dashed | dotted | double | groove | ridge | inset | outset"; inherits: true; initial-value: solid; }
|
|
492
526
|
@property --modal-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
493
|
-
@property --modal-shadow { syntax: "*"; inherits: true; initial-value: 0
|
|
527
|
+
@property --modal-shadow { syntax: "*"; inherits: true; initial-value: 0 4px 16px rgba(0, 0, 0, 0.15); }
|
|
494
528
|
|
|
495
529
|
@property --modal-padding-inline { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
|
496
530
|
@property --modal-padding-block { syntax: "<length>"; inherits: true; initial-value: 24px; }
|
|
497
531
|
@property --modal-width { syntax: "*"; inherits: true; initial-value: fit-content; }
|
|
498
532
|
@property --modal-min-width { syntax: "*"; inherits: true; initial-value: auto; }
|
|
499
|
-
@property --modal-max-width { syntax: "
|
|
500
|
-
@property --modal-max-height { syntax: "
|
|
533
|
+
@property --modal-max-width { syntax: "<length>"; inherits: true; initial-value: 640px; }
|
|
534
|
+
@property --modal-max-height { syntax: "<length>"; inherits: true; initial-value: 600px; }
|
|
501
535
|
@property --modal-gap { syntax: "<length>"; inherits: true; initial-value: 0px; }
|
|
502
536
|
|
|
503
537
|
@property --modal-actions-background { syntax: "<color>"; inherits: true; initial-value: #f8fafc; }
|
|
504
|
-
@property --modal-actions-border-color { syntax: "
|
|
538
|
+
@property --modal-actions-border-color { syntax: "<color>"; inherits: true; initial-value: #d1d5db; }
|
|
505
539
|
@property --modal-actions-padding-inline { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
506
540
|
@property --modal-actions-padding-block { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
507
541
|
|
|
@@ -513,7 +547,7 @@
|
|
|
513
547
|
@property --surface-background { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
514
548
|
@property --surface-border { syntax: "*"; inherits: true; initial-value: 1px solid #d1d5db; }
|
|
515
549
|
@property --surface-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
516
|
-
@property --surface-shadow { syntax: "*"; inherits: true; initial-value: 0
|
|
550
|
+
@property --surface-shadow { syntax: "*"; inherits: true; initial-value: 0 4px 16px rgba(0, 0, 0, 0.15); }
|
|
517
551
|
|
|
518
552
|
/**
|
|
519
553
|
* Popover Component
|
|
@@ -522,18 +556,18 @@
|
|
|
522
556
|
@property --popover-background { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
|
|
523
557
|
@property --popover-border { syntax: "*"; inherits: true; initial-value: 1px solid #d1d5db; }
|
|
524
558
|
@property --popover-border-radius { syntax: "<length>"; inherits: true; initial-value: 8px; }
|
|
525
|
-
@property --popover-shadow { syntax: "*"; inherits: true; initial-value: 0
|
|
559
|
+
@property --popover-shadow { syntax: "*"; inherits: true; initial-value: 0 4px 16px rgba(0, 0, 0, 0.15); }
|
|
526
560
|
@property --popover-width { syntax: "*"; inherits: true; initial-value: max-content; }
|
|
527
|
-
@property --popover-max-width { syntax: "
|
|
528
|
-
@property --popover-max-height { syntax: "
|
|
561
|
+
@property --popover-max-width { syntax: "*"; inherits: true; initial-value: 1024px; }
|
|
562
|
+
@property --popover-max-height { syntax: "*"; inherits: true; initial-value: 768px; }
|
|
529
563
|
|
|
530
564
|
/**
|
|
531
565
|
* Overlay System
|
|
532
566
|
*/
|
|
533
567
|
|
|
534
568
|
@property --overlay-z-index { syntax: "<integer>"; inherits: true; initial-value: 1000; }
|
|
535
|
-
@property --overlay-gap { syntax: "<length>"; inherits: true; initial-value:
|
|
536
|
-
@property --overlay-offset { syntax: "<length>"; inherits: true; initial-value:
|
|
569
|
+
@property --overlay-gap { syntax: "<length>"; inherits: true; initial-value: 12px; }
|
|
570
|
+
@property --overlay-offset { syntax: "<length>"; inherits: true; initial-value: 16px; }
|
|
537
571
|
|
|
538
572
|
/**
|
|
539
573
|
* Scrim/Backdrop (shared across overlays)
|