@vsn-ux/gaia-styles 0.5.19 → 0.6.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/dist/all-10pt.css +514 -226
- package/dist/all-no-reset-10pt.css +507 -225
- package/dist/all-no-reset.css +507 -225
- package/dist/all.css +514 -226
- package/dist/base.css +1 -1
- package/dist/components/avatar.css +11 -2
- package/dist/components/badge.css +45 -12
- package/dist/components/button.css +19 -3
- package/dist/components/calendar.css +52 -20
- package/dist/components/card.css +112 -9
- package/dist/components/checkbox.css +17 -2
- package/dist/components/container.css +1 -1
- package/dist/components/datepicker.css +90 -1
- package/dist/components/dropdown.css +108 -4
- package/dist/components/form-field.css +19 -3
- package/dist/components/input.css +17 -2
- package/dist/components/link.css +22 -3
- package/dist/components/menu.css +102 -5
- package/dist/components/modal.css +12 -3
- package/dist/components/notification.css +14 -5
- package/dist/components/progress-bar.css +5 -5
- package/dist/components/progress-indicator.css +19 -4
- package/dist/components/quick-filter-button.css +18 -2
- package/dist/components/radio.css +25 -7
- package/dist/components/segmented-control.css +20 -5
- package/dist/components/select.css +49 -7
- package/dist/components/switch.css +22 -9
- package/dist/components/tabs.css +19 -3
- package/dist/components/tag.css +31 -16
- package/dist/components/text-area.css +17 -2
- package/dist/components/text-size.css +14 -14
- package/dist/components/tooltip.css +19 -7
- package/dist/components.css +293 -132
- package/dist/design-tokens.css +214 -93
- package/dist/design-tokens.d.ts +294 -197
- package/dist/design-tokens.js +552 -2153
- package/dist/docs/Avatar.md +52 -0
- package/dist/docs/Badge.md +60 -0
- package/dist/docs/Button.md +60 -0
- package/dist/docs/Calendar.md +468 -0
- package/dist/docs/Card.md +57 -0
- package/dist/docs/Checkbox.md +112 -0
- package/dist/docs/Container.md +62 -0
- package/dist/docs/Datepicker.md +107 -0
- package/dist/docs/Dropdown.md +152 -0
- package/dist/docs/FormField.md +101 -0
- package/dist/docs/Input.md +84 -0
- package/dist/docs/Link.md +109 -0
- package/dist/docs/Menu.md +316 -0
- package/dist/docs/Modal.md +337 -0
- package/dist/docs/Notification.md +341 -0
- package/dist/docs/ProgressBar.md +87 -0
- package/dist/docs/ProgressIndicator.md +217 -0
- package/dist/docs/QuickFilterButton.md +74 -0
- package/dist/docs/Radio.md +106 -0
- package/dist/docs/SegmentedControl.md +69 -0
- package/dist/docs/Select.md +411 -0
- package/dist/docs/Switch.md +97 -0
- package/dist/docs/Tabs.md +129 -0
- package/dist/docs/Tag.md +154 -0
- package/dist/docs/TextArea.md +51 -0
- package/dist/docs/TextSize.md +63 -0
- package/dist/docs/Tooltip.md +95 -0
- package/dist/reset.css +8 -2
- package/package.json +33 -32
- package/src/design-tokens/desktop-overrides.json +62 -0
- package/src/design-tokens/dtcg-tokens.json +1345 -184
- package/src/design-tokens/resolver.json +22 -0
- package/src/styles/all-10pt.css +1 -0
- package/src/styles/all-no-reset-10pt.css +1 -0
- package/src/styles/all-no-reset.css +1 -0
- package/src/styles/all.css +1 -0
- package/src/styles/components/badge.css +6 -6
- package/src/styles/components/button.css +2 -2
- package/src/styles/components/calendar.css +4 -4
- package/src/styles/components/card.css +8 -4
- package/src/styles/components/checkbox.css +1 -1
- package/src/styles/components/datepicker.css +1 -1
- package/src/styles/components/dropdown.css +2 -2
- package/src/styles/components/form-field.css +1 -1
- package/src/styles/components/input.css +1 -1
- package/src/styles/components/link.css +1 -1
- package/src/styles/components/menu.css +2 -2
- package/src/styles/components/notification.css +1 -1
- package/src/styles/components/progress-bar.css +1 -1
- package/src/styles/components/progress-indicator.css +1 -1
- package/src/styles/components/quick-filter-button.css +1 -1
- package/src/styles/components/radio.css +1 -1
- package/src/styles/components/segmented-control.css +3 -3
- package/src/styles/components/select.css +1 -1
- package/src/styles/components/switch.css +3 -3
- package/src/styles/components/tabs.css +2 -2
- package/src/styles/components/tag.css +12 -17
- package/src/styles/components/text-area.css +1 -1
- package/src/styles/components/text-size.css +7 -7
- package/src/styles/theme.css +16 -8
- package/src/styles/utilities.css +34 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
.ga-dropdown {
|
|
3
4
|
display: flex;
|
|
4
5
|
max-height: calc(0.25rem * 81);
|
|
@@ -18,8 +19,10 @@
|
|
|
18
19
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
19
20
|
));
|
|
20
21
|
letter-spacing: var(--tw-tracking, calc(
|
|
21
|
-
var(--ga-text-md-
|
|
22
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
22
23
|
));
|
|
24
|
+
--tw-shadow: var(--ga-shadow-north);
|
|
25
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
23
26
|
--tw-outline-style: none;
|
|
24
27
|
outline-style: none;
|
|
25
28
|
@supports (scroll-timeline: --dropdown-scroll block) {
|
|
@@ -38,7 +41,6 @@
|
|
|
38
41
|
--tw-gradient-position: to bottom in oklab;
|
|
39
42
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
40
43
|
--tw-gradient-from: transparent;
|
|
41
|
-
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
42
44
|
--tw-gradient-to: var(--ga-color-surface-primary);
|
|
43
45
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
44
46
|
opacity: 0%;
|
|
@@ -68,9 +70,14 @@
|
|
|
68
70
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
69
71
|
));
|
|
70
72
|
letter-spacing: var(--tw-tracking, calc(
|
|
71
|
-
var(--ga-text-md-
|
|
73
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
72
74
|
));
|
|
73
75
|
color: var(--ga-color-text-action);
|
|
76
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
77
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
78
|
+
transition-duration: var(--tw-duration, 0s);
|
|
79
|
+
transition-duration: var(--ga-duration-instant);
|
|
80
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
74
81
|
&:first-child {
|
|
75
82
|
border-top-left-radius: var(--ga-radius);
|
|
76
83
|
border-top-right-radius: var(--ga-radius);
|
|
@@ -179,6 +186,71 @@
|
|
|
179
186
|
inherits: false;
|
|
180
187
|
initial-value: solid;
|
|
181
188
|
}
|
|
189
|
+
@property --tw-shadow {
|
|
190
|
+
syntax: "*";
|
|
191
|
+
inherits: false;
|
|
192
|
+
initial-value: 0 0 #0000;
|
|
193
|
+
}
|
|
194
|
+
@property --tw-shadow-color {
|
|
195
|
+
syntax: "*";
|
|
196
|
+
inherits: false;
|
|
197
|
+
}
|
|
198
|
+
@property --tw-shadow-alpha {
|
|
199
|
+
syntax: "<percentage>";
|
|
200
|
+
inherits: false;
|
|
201
|
+
initial-value: 100%;
|
|
202
|
+
}
|
|
203
|
+
@property --tw-inset-shadow {
|
|
204
|
+
syntax: "*";
|
|
205
|
+
inherits: false;
|
|
206
|
+
initial-value: 0 0 #0000;
|
|
207
|
+
}
|
|
208
|
+
@property --tw-inset-shadow-color {
|
|
209
|
+
syntax: "*";
|
|
210
|
+
inherits: false;
|
|
211
|
+
}
|
|
212
|
+
@property --tw-inset-shadow-alpha {
|
|
213
|
+
syntax: "<percentage>";
|
|
214
|
+
inherits: false;
|
|
215
|
+
initial-value: 100%;
|
|
216
|
+
}
|
|
217
|
+
@property --tw-ring-color {
|
|
218
|
+
syntax: "*";
|
|
219
|
+
inherits: false;
|
|
220
|
+
}
|
|
221
|
+
@property --tw-ring-shadow {
|
|
222
|
+
syntax: "*";
|
|
223
|
+
inherits: false;
|
|
224
|
+
initial-value: 0 0 #0000;
|
|
225
|
+
}
|
|
226
|
+
@property --tw-inset-ring-color {
|
|
227
|
+
syntax: "*";
|
|
228
|
+
inherits: false;
|
|
229
|
+
}
|
|
230
|
+
@property --tw-inset-ring-shadow {
|
|
231
|
+
syntax: "*";
|
|
232
|
+
inherits: false;
|
|
233
|
+
initial-value: 0 0 #0000;
|
|
234
|
+
}
|
|
235
|
+
@property --tw-ring-inset {
|
|
236
|
+
syntax: "*";
|
|
237
|
+
inherits: false;
|
|
238
|
+
}
|
|
239
|
+
@property --tw-ring-offset-width {
|
|
240
|
+
syntax: "<length>";
|
|
241
|
+
inherits: false;
|
|
242
|
+
initial-value: 0px;
|
|
243
|
+
}
|
|
244
|
+
@property --tw-ring-offset-color {
|
|
245
|
+
syntax: "*";
|
|
246
|
+
inherits: false;
|
|
247
|
+
initial-value: #fff;
|
|
248
|
+
}
|
|
249
|
+
@property --tw-ring-offset-shadow {
|
|
250
|
+
syntax: "*";
|
|
251
|
+
inherits: false;
|
|
252
|
+
initial-value: 0 0 #0000;
|
|
253
|
+
}
|
|
182
254
|
@property --tw-gradient-position {
|
|
183
255
|
syntax: "*";
|
|
184
256
|
inherits: false;
|
|
@@ -230,3 +302,35 @@
|
|
|
230
302
|
syntax: "*";
|
|
231
303
|
inherits: false;
|
|
232
304
|
}
|
|
305
|
+
@layer properties {
|
|
306
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
307
|
+
*, ::before, ::after, ::backdrop {
|
|
308
|
+
--tw-border-style: solid;
|
|
309
|
+
--tw-shadow: 0 0 #0000;
|
|
310
|
+
--tw-shadow-color: initial;
|
|
311
|
+
--tw-shadow-alpha: 100%;
|
|
312
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
313
|
+
--tw-inset-shadow-color: initial;
|
|
314
|
+
--tw-inset-shadow-alpha: 100%;
|
|
315
|
+
--tw-ring-color: initial;
|
|
316
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
317
|
+
--tw-inset-ring-color: initial;
|
|
318
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
319
|
+
--tw-ring-inset: initial;
|
|
320
|
+
--tw-ring-offset-width: 0px;
|
|
321
|
+
--tw-ring-offset-color: #fff;
|
|
322
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
323
|
+
--tw-gradient-position: initial;
|
|
324
|
+
--tw-gradient-from: #0000;
|
|
325
|
+
--tw-gradient-via: #0000;
|
|
326
|
+
--tw-gradient-to: #0000;
|
|
327
|
+
--tw-gradient-stops: initial;
|
|
328
|
+
--tw-gradient-via-stops: initial;
|
|
329
|
+
--tw-gradient-from-position: 0%;
|
|
330
|
+
--tw-gradient-via-position: 50%;
|
|
331
|
+
--tw-gradient-to-position: 100%;
|
|
332
|
+
--tw-content: "";
|
|
333
|
+
--tw-font-weight: initial;
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
.ga-form-field {
|
|
3
4
|
display: flex;
|
|
4
5
|
flex-direction: column;
|
|
@@ -37,10 +38,15 @@
|
|
|
37
38
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
38
39
|
));
|
|
39
40
|
letter-spacing: var(--tw-tracking, calc(
|
|
40
|
-
var(--ga-text-md-
|
|
41
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
41
42
|
));
|
|
42
43
|
--tw-font-weight: 500;
|
|
43
44
|
font-weight: 500;
|
|
45
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
46
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
47
|
+
transition-duration: var(--tw-duration, 0s);
|
|
48
|
+
transition-duration: var(--ga-duration-instant);
|
|
49
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
44
50
|
}
|
|
45
51
|
.ga-form-field__label-state {
|
|
46
52
|
font-size: calc(
|
|
@@ -83,7 +89,7 @@
|
|
|
83
89
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
84
90
|
));
|
|
85
91
|
letter-spacing: var(--tw-tracking, calc(
|
|
86
|
-
var(--ga-text-xs-
|
|
92
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
87
93
|
));
|
|
88
94
|
.ga-icon {
|
|
89
95
|
flex-shrink: 0;
|
|
@@ -108,3 +114,13 @@
|
|
|
108
114
|
inherits: false;
|
|
109
115
|
initial-value: solid;
|
|
110
116
|
}
|
|
117
|
+
@layer properties {
|
|
118
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
119
|
+
*, ::before, ::after, ::backdrop {
|
|
120
|
+
--tw-leading: initial;
|
|
121
|
+
--tw-outline-style: solid;
|
|
122
|
+
--tw-font-weight: initial;
|
|
123
|
+
--tw-border-style: solid;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
.ga-input {
|
|
3
4
|
display: flex;
|
|
4
5
|
height: calc(0.25rem * 10);
|
|
@@ -20,8 +21,13 @@
|
|
|
20
21
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
21
22
|
));
|
|
22
23
|
letter-spacing: var(--tw-tracking, calc(
|
|
23
|
-
var(--ga-text-md-
|
|
24
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
24
25
|
));
|
|
26
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
27
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
28
|
+
transition-duration: var(--tw-duration, 0s);
|
|
29
|
+
transition-duration: var(--ga-duration-instant);
|
|
30
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
25
31
|
&:hover {
|
|
26
32
|
border-color: var(--ga-color-border-action-hover);
|
|
27
33
|
&:has(input:not(:placeholder-shown)), &:is(input:not(:placeholder-shown)) {
|
|
@@ -93,3 +99,12 @@
|
|
|
93
99
|
syntax: "*";
|
|
94
100
|
inherits: false;
|
|
95
101
|
}
|
|
102
|
+
@layer properties {
|
|
103
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
104
|
+
*, ::before, ::after, ::backdrop {
|
|
105
|
+
--tw-border-style: solid;
|
|
106
|
+
--tw-outline-style: solid;
|
|
107
|
+
--tw-leading: initial;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
package/dist/components/link.css
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
.ga-link {
|
|
3
4
|
display: inline-flex;
|
|
4
5
|
height: calc(0.25rem * 5);
|
|
@@ -16,7 +17,7 @@
|
|
|
16
17
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
17
18
|
));
|
|
18
19
|
letter-spacing: var(--tw-tracking, calc(
|
|
19
|
-
var(--ga-text-md-
|
|
20
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
20
21
|
));
|
|
21
22
|
--tw-font-weight: 500;
|
|
22
23
|
font-weight: 500;
|
|
@@ -24,6 +25,11 @@
|
|
|
24
25
|
color: var(--ga-color-text-action);
|
|
25
26
|
--tw-numeric-spacing: tabular-nums;
|
|
26
27
|
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
28
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
29
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
30
|
+
transition-duration: var(--tw-duration, 0s);
|
|
31
|
+
transition-duration: var(--ga-duration-instant);
|
|
32
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
27
33
|
&.ga-link--inline {
|
|
28
34
|
text-decoration-line: underline;
|
|
29
35
|
text-decoration-color: var(--ga-color-primary-90);
|
|
@@ -48,7 +54,7 @@
|
|
|
48
54
|
var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
|
|
49
55
|
));
|
|
50
56
|
letter-spacing: var(--tw-tracking, calc(
|
|
51
|
-
var(--ga-text-lg-
|
|
57
|
+
var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
52
58
|
));
|
|
53
59
|
}
|
|
54
60
|
&.ga-link--disabled {
|
|
@@ -113,3 +119,16 @@
|
|
|
113
119
|
inherits: false;
|
|
114
120
|
initial-value: solid;
|
|
115
121
|
}
|
|
122
|
+
@layer properties {
|
|
123
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
124
|
+
*, ::before, ::after, ::backdrop {
|
|
125
|
+
--tw-font-weight: initial;
|
|
126
|
+
--tw-ordinal: initial;
|
|
127
|
+
--tw-slashed-zero: initial;
|
|
128
|
+
--tw-numeric-figure: initial;
|
|
129
|
+
--tw-numeric-spacing: initial;
|
|
130
|
+
--tw-numeric-fraction: initial;
|
|
131
|
+
--tw-outline-style: solid;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
package/dist/components/menu.css
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
.ga-menu {
|
|
3
4
|
display: flex;
|
|
4
5
|
max-height: calc(0.25rem * 81);
|
|
@@ -18,8 +19,10 @@
|
|
|
18
19
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
19
20
|
));
|
|
20
21
|
letter-spacing: var(--tw-tracking, calc(
|
|
21
|
-
var(--ga-text-md-
|
|
22
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
22
23
|
));
|
|
24
|
+
--tw-shadow: var(--ga-shadow-north);
|
|
25
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
23
26
|
.ga-menu__item {
|
|
24
27
|
position: relative;
|
|
25
28
|
display: flex;
|
|
@@ -33,6 +36,11 @@
|
|
|
33
36
|
text-align: left;
|
|
34
37
|
--tw-leading: 1;
|
|
35
38
|
line-height: 1;
|
|
39
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
40
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
41
|
+
transition-duration: var(--tw-duration, 0s);
|
|
42
|
+
transition-duration: var(--ga-duration-instant);
|
|
43
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
36
44
|
&:first-child {
|
|
37
45
|
border-top-left-radius: var(--ga-radius);
|
|
38
46
|
border-top-right-radius: var(--ga-radius);
|
|
@@ -135,7 +143,7 @@
|
|
|
135
143
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
136
144
|
));
|
|
137
145
|
letter-spacing: var(--tw-tracking, calc(
|
|
138
|
-
var(--ga-text-md-
|
|
146
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
139
147
|
));
|
|
140
148
|
--tw-font-weight: 500;
|
|
141
149
|
font-weight: 500;
|
|
@@ -156,7 +164,7 @@
|
|
|
156
164
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
157
165
|
));
|
|
158
166
|
letter-spacing: var(--tw-tracking, calc(
|
|
159
|
-
var(--ga-text-xs-
|
|
167
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
160
168
|
));
|
|
161
169
|
--tw-font-weight: 500;
|
|
162
170
|
font-weight: 500;
|
|
@@ -170,7 +178,7 @@
|
|
|
170
178
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
171
179
|
));
|
|
172
180
|
letter-spacing: var(--tw-tracking, calc(
|
|
173
|
-
var(--ga-text-xs-
|
|
181
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
174
182
|
));
|
|
175
183
|
color: var(--ga-color-text-disable-selected);
|
|
176
184
|
}
|
|
@@ -200,6 +208,71 @@
|
|
|
200
208
|
inherits: false;
|
|
201
209
|
initial-value: solid;
|
|
202
210
|
}
|
|
211
|
+
@property --tw-shadow {
|
|
212
|
+
syntax: "*";
|
|
213
|
+
inherits: false;
|
|
214
|
+
initial-value: 0 0 #0000;
|
|
215
|
+
}
|
|
216
|
+
@property --tw-shadow-color {
|
|
217
|
+
syntax: "*";
|
|
218
|
+
inherits: false;
|
|
219
|
+
}
|
|
220
|
+
@property --tw-shadow-alpha {
|
|
221
|
+
syntax: "<percentage>";
|
|
222
|
+
inherits: false;
|
|
223
|
+
initial-value: 100%;
|
|
224
|
+
}
|
|
225
|
+
@property --tw-inset-shadow {
|
|
226
|
+
syntax: "*";
|
|
227
|
+
inherits: false;
|
|
228
|
+
initial-value: 0 0 #0000;
|
|
229
|
+
}
|
|
230
|
+
@property --tw-inset-shadow-color {
|
|
231
|
+
syntax: "*";
|
|
232
|
+
inherits: false;
|
|
233
|
+
}
|
|
234
|
+
@property --tw-inset-shadow-alpha {
|
|
235
|
+
syntax: "<percentage>";
|
|
236
|
+
inherits: false;
|
|
237
|
+
initial-value: 100%;
|
|
238
|
+
}
|
|
239
|
+
@property --tw-ring-color {
|
|
240
|
+
syntax: "*";
|
|
241
|
+
inherits: false;
|
|
242
|
+
}
|
|
243
|
+
@property --tw-ring-shadow {
|
|
244
|
+
syntax: "*";
|
|
245
|
+
inherits: false;
|
|
246
|
+
initial-value: 0 0 #0000;
|
|
247
|
+
}
|
|
248
|
+
@property --tw-inset-ring-color {
|
|
249
|
+
syntax: "*";
|
|
250
|
+
inherits: false;
|
|
251
|
+
}
|
|
252
|
+
@property --tw-inset-ring-shadow {
|
|
253
|
+
syntax: "*";
|
|
254
|
+
inherits: false;
|
|
255
|
+
initial-value: 0 0 #0000;
|
|
256
|
+
}
|
|
257
|
+
@property --tw-ring-inset {
|
|
258
|
+
syntax: "*";
|
|
259
|
+
inherits: false;
|
|
260
|
+
}
|
|
261
|
+
@property --tw-ring-offset-width {
|
|
262
|
+
syntax: "<length>";
|
|
263
|
+
inherits: false;
|
|
264
|
+
initial-value: 0px;
|
|
265
|
+
}
|
|
266
|
+
@property --tw-ring-offset-color {
|
|
267
|
+
syntax: "*";
|
|
268
|
+
inherits: false;
|
|
269
|
+
initial-value: #fff;
|
|
270
|
+
}
|
|
271
|
+
@property --tw-ring-offset-shadow {
|
|
272
|
+
syntax: "*";
|
|
273
|
+
inherits: false;
|
|
274
|
+
initial-value: 0 0 #0000;
|
|
275
|
+
}
|
|
203
276
|
@property --tw-leading {
|
|
204
277
|
syntax: "*";
|
|
205
278
|
inherits: false;
|
|
@@ -213,3 +286,27 @@
|
|
|
213
286
|
syntax: "*";
|
|
214
287
|
inherits: false;
|
|
215
288
|
}
|
|
289
|
+
@layer properties {
|
|
290
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
291
|
+
*, ::before, ::after, ::backdrop {
|
|
292
|
+
--tw-border-style: solid;
|
|
293
|
+
--tw-shadow: 0 0 #0000;
|
|
294
|
+
--tw-shadow-color: initial;
|
|
295
|
+
--tw-shadow-alpha: 100%;
|
|
296
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
297
|
+
--tw-inset-shadow-color: initial;
|
|
298
|
+
--tw-inset-shadow-alpha: 100%;
|
|
299
|
+
--tw-ring-color: initial;
|
|
300
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
301
|
+
--tw-inset-ring-color: initial;
|
|
302
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
303
|
+
--tw-ring-inset: initial;
|
|
304
|
+
--tw-ring-offset-width: 0px;
|
|
305
|
+
--tw-ring-offset-color: #fff;
|
|
306
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
307
|
+
--tw-leading: initial;
|
|
308
|
+
--tw-content: "";
|
|
309
|
+
--tw-font-weight: initial;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
.ga-modal__backdrop {
|
|
3
4
|
position: fixed;
|
|
4
5
|
inset: calc(0.25rem * 0);
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
38
39
|
));
|
|
39
40
|
letter-spacing: var(--tw-tracking, calc(
|
|
40
|
-
var(--ga-text-md-
|
|
41
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
41
42
|
));
|
|
42
43
|
scrollbar-width: thin;
|
|
43
44
|
&.ga-modal--small {
|
|
@@ -97,7 +98,7 @@
|
|
|
97
98
|
var(--ga-text-xl-line-height) * var(--ga-base-scaling-factor, 1)
|
|
98
99
|
));
|
|
99
100
|
letter-spacing: var(--tw-tracking, calc(
|
|
100
|
-
var(--ga-text-xl-
|
|
101
|
+
var(--ga-text-xl-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
101
102
|
));
|
|
102
103
|
--tw-font-weight: 600;
|
|
103
104
|
font-weight: 600;
|
|
@@ -141,3 +142,11 @@
|
|
|
141
142
|
syntax: "*";
|
|
142
143
|
inherits: false;
|
|
143
144
|
}
|
|
145
|
+
@layer properties {
|
|
146
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
147
|
+
*, ::before, ::after, ::backdrop {
|
|
148
|
+
--tw-border-style: solid;
|
|
149
|
+
--tw-font-weight: initial;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
.ga-notification {
|
|
3
4
|
position: relative;
|
|
4
5
|
display: inline-flex;
|
|
@@ -21,7 +22,7 @@
|
|
|
21
22
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
22
23
|
));
|
|
23
24
|
letter-spacing: var(--tw-tracking, calc(
|
|
24
|
-
var(--ga-text-md-
|
|
25
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
25
26
|
));
|
|
26
27
|
&.ga-notification--information {
|
|
27
28
|
border-color: var(--ga-color-border-information);
|
|
@@ -117,12 +118,12 @@
|
|
|
117
118
|
.ga-notification__progress-bar {
|
|
118
119
|
position: absolute;
|
|
119
120
|
height: 100%;
|
|
120
|
-
transform-origin:
|
|
121
|
+
transform-origin: 0 0;
|
|
121
122
|
border-radius: var(--ga-radius);
|
|
122
|
-
background-color: var(--ga-color-
|
|
123
|
+
background-color: var(--ga-color-surface-progress);
|
|
123
124
|
}
|
|
124
125
|
&.ga-notification__progress--indeterminate .ga-notification__progress-bar {
|
|
125
|
-
width: calc(1/5 * 100%);
|
|
126
|
+
width: calc(1 / 5 * 100%);
|
|
126
127
|
animation: ga-notification-progress-animation 1400ms linear infinite;
|
|
127
128
|
}
|
|
128
129
|
}
|
|
@@ -144,3 +145,11 @@
|
|
|
144
145
|
syntax: "*";
|
|
145
146
|
inherits: false;
|
|
146
147
|
}
|
|
148
|
+
@layer properties {
|
|
149
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
150
|
+
*, ::before, ::after, ::backdrop {
|
|
151
|
+
--tw-border-style: solid;
|
|
152
|
+
--tw-font-weight: initial;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
2
|
.ga-progress {
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
23
23
|
));
|
|
24
24
|
letter-spacing: var(--tw-tracking, calc(
|
|
25
|
-
var(--ga-text-xs-
|
|
25
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
26
26
|
));
|
|
27
27
|
color: var(--ga-color-text-body);
|
|
28
28
|
}
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
position: absolute;
|
|
39
39
|
height: 100%;
|
|
40
40
|
width: 100%;
|
|
41
|
-
transform-origin:
|
|
41
|
+
transform-origin: 0 0;
|
|
42
42
|
border-radius: var(--ga-radius);
|
|
43
|
-
background-color: var(--ga-color-
|
|
43
|
+
background-color: var(--ga-color-surface-progress);
|
|
44
44
|
}
|
|
45
45
|
&.ga-progress--success {
|
|
46
46
|
.ga-progress__bar {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
}
|
|
61
61
|
&.ga-progress--indeterminate {
|
|
62
62
|
.ga-progress__bar {
|
|
63
|
-
width: calc(1/5 * 100%);
|
|
63
|
+
width: calc(1 / 5 * 100%);
|
|
64
64
|
animation: ga-progress-animation 1400ms linear infinite;
|
|
65
65
|
}
|
|
66
66
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
.ga-progress-indicator {
|
|
3
4
|
display: flex;
|
|
4
5
|
.ga-progress-indicator__item {
|
|
@@ -69,11 +70,16 @@
|
|
|
69
70
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
70
71
|
));
|
|
71
72
|
letter-spacing: var(--tw-tracking, calc(
|
|
72
|
-
var(--ga-text-md-
|
|
73
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
73
74
|
));
|
|
74
75
|
--tw-font-weight: 500;
|
|
75
76
|
font-weight: 500;
|
|
76
77
|
color: var(--ga-color-text-action);
|
|
78
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
79
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
80
|
+
transition-duration: var(--tw-duration, 0s);
|
|
81
|
+
transition-duration: var(--ga-duration-instant);
|
|
82
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
77
83
|
}
|
|
78
84
|
.ga-progress-indicator__label-state {
|
|
79
85
|
font-size: calc(
|
|
@@ -83,7 +89,7 @@
|
|
|
83
89
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
84
90
|
));
|
|
85
91
|
letter-spacing: var(--tw-tracking, calc(
|
|
86
|
-
var(--ga-text-md-
|
|
92
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
87
93
|
));
|
|
88
94
|
--tw-font-weight: 400;
|
|
89
95
|
font-weight: 400;
|
|
@@ -116,7 +122,7 @@
|
|
|
116
122
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
117
123
|
));
|
|
118
124
|
letter-spacing: var(--tw-tracking, calc(
|
|
119
|
-
var(--ga-text-xs-
|
|
125
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
120
126
|
));
|
|
121
127
|
color: var(--ga-color-text-body);
|
|
122
128
|
}
|
|
@@ -218,3 +224,12 @@
|
|
|
218
224
|
syntax: "*";
|
|
219
225
|
inherits: false;
|
|
220
226
|
}
|
|
227
|
+
@layer properties {
|
|
228
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
229
|
+
*, ::before, ::after, ::backdrop {
|
|
230
|
+
--tw-border-style: solid;
|
|
231
|
+
--tw-outline-style: solid;
|
|
232
|
+
--tw-font-weight: initial;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
.ga-quick-filter-button {
|
|
3
4
|
display: inline-flex;
|
|
4
5
|
height: calc(0.25rem * 10);
|
|
@@ -16,13 +17,18 @@
|
|
|
16
17
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
17
18
|
));
|
|
18
19
|
letter-spacing: var(--tw-tracking, calc(
|
|
19
|
-
var(--ga-text-md-
|
|
20
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
20
21
|
));
|
|
21
22
|
--tw-leading: calc(0.25rem * 1);
|
|
22
23
|
line-height: calc(0.25rem * 1);
|
|
23
24
|
--tw-font-weight: 500;
|
|
24
25
|
font-weight: 500;
|
|
25
26
|
white-space: nowrap;
|
|
27
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
28
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
29
|
+
transition-duration: var(--tw-duration, 0s);
|
|
30
|
+
transition-duration: var(--ga-duration-instant);
|
|
31
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
26
32
|
border-style: var(--tw-border-style);
|
|
27
33
|
border-width: 1px;
|
|
28
34
|
border-color: var(--ga-color-border-action);
|
|
@@ -101,3 +107,13 @@
|
|
|
101
107
|
inherits: false;
|
|
102
108
|
initial-value: solid;
|
|
103
109
|
}
|
|
110
|
+
@layer properties {
|
|
111
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
112
|
+
*, ::before, ::after, ::backdrop {
|
|
113
|
+
--tw-leading: initial;
|
|
114
|
+
--tw-font-weight: initial;
|
|
115
|
+
--tw-border-style: solid;
|
|
116
|
+
--tw-outline-style: solid;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|