@vsn-ux/gaia-styles 0.5.19 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/reset.css +8 -2
- package/package.json +31 -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
package/dist/all-10pt.css
CHANGED
|
@@ -1,86 +1,160 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
:root, :host {
|
|
3
|
-
--ga-color-black: #
|
|
4
|
+
--ga-color-black: #000;
|
|
4
5
|
--ga-color-blue-10: #edf4fe;
|
|
6
|
+
--ga-color-information-accent: var(--ga-color-utility-blue-accent);
|
|
7
|
+
--ga-color-surface-information: var(--ga-color-information-accent);
|
|
8
|
+
--ga-color-utility-blue-accent: var(--ga-color-blue-10);
|
|
5
9
|
--ga-color-blue-40: #93bbf9;
|
|
10
|
+
--ga-color-utility-blue: var(--ga-color-blue-40);
|
|
6
11
|
--ga-color-blue-60: #366af6;
|
|
7
|
-
--ga-color-
|
|
12
|
+
--ga-color-border-information: var(--ga-color-information);
|
|
13
|
+
--ga-color-icon-information: var(--ga-color-information);
|
|
14
|
+
--ga-color-information: var(--ga-color-blue-60);
|
|
8
15
|
--ga-color-border-action: var(--ga-color-primary);
|
|
9
16
|
--ga-color-border-action-hover: var(--ga-color-primary-60);
|
|
10
17
|
--ga-color-border-action-hover-2: var(--ga-color-secondary-30);
|
|
11
18
|
--ga-color-border-disabled: var(--ga-color-neutral);
|
|
12
19
|
--ga-color-border-error: var(--ga-color-error);
|
|
13
20
|
--ga-color-border-focus: var(--ga-color-primary);
|
|
14
|
-
--ga-color-border-information: var(--ga-color-information);
|
|
15
21
|
--ga-color-border-primary: var(--ga-color-neutral-60);
|
|
16
22
|
--ga-color-border-secondary: var(--ga-color-secondary-30);
|
|
17
23
|
--ga-color-border-selected: var(--ga-color-green-60);
|
|
18
24
|
--ga-color-border-success: var(--ga-color-success);
|
|
19
25
|
--ga-color-border-tertiary: var(--ga-color-neutral);
|
|
20
26
|
--ga-color-border-warning: var(--ga-color-warning);
|
|
27
|
+
--ga-color-categorical-graph-01: #6769d8;
|
|
28
|
+
--ga-color-categorical-graph-02: #479fc6;
|
|
29
|
+
--ga-color-categorical-graph-03: var(--ga-color-teal-70);
|
|
30
|
+
--ga-color-categorical-graph-04: #c0497d;
|
|
31
|
+
--ga-color-categorical-graph-05: #041255;
|
|
32
|
+
--ga-color-categorical-graph-06: #dc756b;
|
|
33
|
+
--ga-color-categorical-graph-07: var(--ga-color-rose-40);
|
|
34
|
+
--ga-color-categorical-graph-08: #984319;
|
|
35
|
+
--ga-color-categorical-graph-09: var(--ga-color-indigo-40);
|
|
36
|
+
--ga-color-categorical-graph-10: #610f08;
|
|
21
37
|
--ga-color-cyan-60: #377ea0;
|
|
38
|
+
--ga-color-icon-action-hover: var(--ga-color-primary-60);
|
|
39
|
+
--ga-color-primary-60: var(--ga-color-cyan-60);
|
|
40
|
+
--ga-color-surface-progress-2: var(--ga-color-primary-60);
|
|
22
41
|
--ga-color-cyan-70: #2a6480;
|
|
42
|
+
--ga-color-primary-70: var(--ga-color-cyan-70);
|
|
43
|
+
--ga-color-surface-progress: var(--ga-color-primary-70);
|
|
44
|
+
--ga-color-text-body-secondary: var(--ga-color-primary-70);
|
|
23
45
|
--ga-color-cyan-80: #1f4e66;
|
|
46
|
+
--ga-color-icon-action: var(--ga-color-primary);
|
|
47
|
+
--ga-color-primary: var(--ga-color-cyan-80);
|
|
48
|
+
--ga-color-surface-action: var(--ga-color-primary);
|
|
49
|
+
--ga-color-text-action: var(--ga-color-primary);
|
|
24
50
|
--ga-color-cyan-90: #133445;
|
|
51
|
+
--ga-color-icon-primary: var(--ga-color-primary-90);
|
|
52
|
+
--ga-color-primary-90: var(--ga-color-cyan-90);
|
|
53
|
+
--ga-color-surface-action-hover: var(--ga-color-primary-90);
|
|
54
|
+
--ga-color-text-action-hover: var(--ga-color-primary-90);
|
|
55
|
+
--ga-color-text-body: var(--ga-color-primary-90);
|
|
56
|
+
--ga-color-text-error: var(--ga-color-primary-90);
|
|
57
|
+
--ga-color-text-headings: var(--ga-color-primary-90);
|
|
58
|
+
--ga-color-text-information: var(--ga-color-primary-90);
|
|
59
|
+
--ga-color-text-success: var(--ga-color-primary-90);
|
|
60
|
+
--ga-color-text-warning: var(--ga-color-primary-90);
|
|
61
|
+
--ga-color-diverging-graph-01: #281986;
|
|
62
|
+
--ga-color-diverging-graph-02: #3d37a3;
|
|
63
|
+
--ga-color-diverging-graph-03: #504fba;
|
|
64
|
+
--ga-color-diverging-graph-04: #6769d8;
|
|
65
|
+
--ga-color-diverging-graph-05: #8489f5;
|
|
66
|
+
--ga-color-diverging-graph-06: var(--ga-color-indigo-40);
|
|
67
|
+
--ga-color-diverging-graph-07: #c5cbfb;
|
|
68
|
+
--ga-color-diverging-graph-08: var(--ga-color-indigo-10);
|
|
69
|
+
--ga-color-diverging-graph-09: var(--ga-color-teal-30);
|
|
70
|
+
--ga-color-diverging-graph-10: var(--ga-color-teal-40);
|
|
71
|
+
--ga-color-diverging-graph-11: var(--ga-color-teal-50);
|
|
72
|
+
--ga-color-diverging-graph-12: var(--ga-color-teal-60);
|
|
73
|
+
--ga-color-diverging-graph-13: var(--ga-color-teal-70);
|
|
74
|
+
--ga-color-diverging-graph-14: var(--ga-color-teal-80);
|
|
75
|
+
--ga-color-diverging-graph-15: var(--ga-color-teal-90);
|
|
25
76
|
--ga-color-error: var(--ga-color-red-60);
|
|
26
|
-
--ga-color-error
|
|
77
|
+
--ga-color-icon-error: var(--ga-color-error);
|
|
78
|
+
--ga-color-error-accent: var(--ga-color-utility-red-accent);
|
|
27
79
|
--ga-color-green-10: #eef5ee;
|
|
80
|
+
--ga-color-success-accent: var(--ga-color-utility-green-accent);
|
|
81
|
+
--ga-color-surface-selected: var(--ga-color-green-10);
|
|
82
|
+
--ga-color-surface-success: var(--ga-color-success-accent);
|
|
83
|
+
--ga-color-utility-green-accent: var(--ga-color-green-10);
|
|
28
84
|
--ga-color-green-40: #9bc59b;
|
|
85
|
+
--ga-color-utility-green: var(--ga-color-green-40);
|
|
29
86
|
--ga-color-green-60: #448548;
|
|
30
|
-
--ga-color-
|
|
87
|
+
--ga-color-icon-success: var(--ga-color-success);
|
|
88
|
+
--ga-color-success: var(--ga-color-green-60);
|
|
31
89
|
--ga-color-grey-10: #f2f2f2;
|
|
90
|
+
--ga-color-utility-grey-accent: var(--ga-color-grey-10);
|
|
32
91
|
--ga-color-grey-40: #b9b9b9;
|
|
33
|
-
--ga-color-
|
|
34
|
-
--ga-color-
|
|
92
|
+
--ga-color-text-disabled: var(--ga-color-utility-grey);
|
|
93
|
+
--ga-color-utility-grey: var(--ga-color-grey-40);
|
|
35
94
|
--ga-color-icon-disabled: var(--ga-color-neutral);
|
|
36
|
-
--ga-color-icon-error: var(--ga-color-error);
|
|
37
|
-
--ga-color-icon-information: var(--ga-color-information);
|
|
38
95
|
--ga-color-icon-on-action: var(--ga-color-secondary);
|
|
39
96
|
--ga-color-icon-on-disabled: var(--ga-color-neutral-60);
|
|
40
97
|
--ga-color-icon-on-primary: var(--ga-color-white);
|
|
41
|
-
--ga-color-icon-pictograms-pictogram-emphasis: #377ea03d;
|
|
42
|
-
--ga-color-icon-pictograms-pictogram-fill: #b9b9b914;
|
|
43
|
-
--ga-color-icon-primary: var(--ga-color-primary-90);
|
|
44
|
-
--ga-color-icon-success: var(--ga-color-success);
|
|
45
98
|
--ga-color-icon-warning: var(--ga-color-warning);
|
|
46
99
|
--ga-color-indigo-10: #f0f2fe;
|
|
100
|
+
--ga-color-utility-indigo-accent: var(--ga-color-indigo-10);
|
|
47
101
|
--ga-color-indigo-40: #adb4f9;
|
|
48
|
-
--ga-color-
|
|
49
|
-
--ga-color-information-light: var(--ga-color-utility-blue-light);
|
|
102
|
+
--ga-color-utility-indigo: var(--ga-color-indigo-40);
|
|
50
103
|
--ga-color-lime-10: #edf6dd;
|
|
104
|
+
--ga-color-utility-lime-accent: var(--ga-color-lime-10);
|
|
51
105
|
--ga-color-lime-40: #a5c656;
|
|
106
|
+
--ga-color-utility-lime: var(--ga-color-lime-40);
|
|
52
107
|
--ga-color-miscellaneous-overlay: #70778891;
|
|
53
108
|
--ga-color-miscellaneous-skeleton-element: var(--ga-color-neutral-10);
|
|
54
109
|
--ga-color-miscellaneous-skeleton-highlight: var(--ga-color-neutral-20);
|
|
55
110
|
--ga-color-neutral: var(--ga-color-neutral-30);
|
|
56
111
|
--ga-color-neutral-10: #f2f3f5;
|
|
112
|
+
--ga-color-surface-page: var(--ga-color-neutral-10);
|
|
57
113
|
--ga-color-neutral-20: #e2e4e9;
|
|
114
|
+
--ga-color-surface-container: var(--ga-color-neutral-20);
|
|
115
|
+
--ga-color-surface-disabled: var(--ga-color-neutral-20);
|
|
58
116
|
--ga-color-neutral-30: #cccfd7;
|
|
59
|
-
--ga-color-neutral-50: #8f95a4;
|
|
60
117
|
--ga-color-neutral-60: #6f7687;
|
|
118
|
+
--ga-color-surface-disable-selected: var(--ga-color-neutral-60);
|
|
119
|
+
--ga-color-text-disable-selected: var(--ga-color-neutral-60);
|
|
120
|
+
--ga-color-text-on-disabled: var(--ga-color-neutral-60);
|
|
61
121
|
--ga-color-orange-10: #fcf0e7;
|
|
122
|
+
--ga-color-secondary-10: var(--ga-color-orange-10);
|
|
123
|
+
--ga-color-surface-warning: var(--ga-color-utility-orange-accent);
|
|
124
|
+
--ga-color-text-on-action: var(--ga-color-secondary-10);
|
|
125
|
+
--ga-color-utility-orange-accent: var(--ga-color-orange-10);
|
|
126
|
+
--ga-color-warning-accent: var(--ga-color-utility-orange-accent);
|
|
62
127
|
--ga-color-orange-20: #fae0ce;
|
|
128
|
+
--ga-color-secondary: var(--ga-color-orange-20);
|
|
129
|
+
--ga-color-surface-action-hover-2: var(--ga-color-orange-20);
|
|
130
|
+
--ga-color-text-menu: var(--ga-color-secondary);
|
|
63
131
|
--ga-color-orange-30: #f5c3a1;
|
|
132
|
+
--ga-color-secondary-30: var(--ga-color-orange-30);
|
|
133
|
+
--ga-color-surface-highlight: var(--ga-color-secondary-30);
|
|
64
134
|
--ga-color-orange-40: #f2a676;
|
|
135
|
+
--ga-color-utility-orange: var(--ga-color-orange-40);
|
|
65
136
|
--ga-color-orange-60: #bb5822;
|
|
137
|
+
--ga-color-warning: var(--ga-color-orange-60);
|
|
66
138
|
--ga-color-pink-10: #fbeefc;
|
|
139
|
+
--ga-color-utility-pink-accent: var(--ga-color-pink-10);
|
|
67
140
|
--ga-color-pink-40: #e79dee;
|
|
68
|
-
--ga-color-
|
|
69
|
-
--ga-color-primary-60: var(--ga-color-cyan-60);
|
|
70
|
-
--ga-color-primary-70: var(--ga-color-cyan-70);
|
|
71
|
-
--ga-color-primary-90: var(--ga-color-cyan-90);
|
|
141
|
+
--ga-color-utility-pink: var(--ga-color-pink-40);
|
|
72
142
|
--ga-color-purple-10: #f3f1fe;
|
|
143
|
+
--ga-color-utility-purple-accent: var(--ga-color-purple-10);
|
|
73
144
|
--ga-color-purple-40: #c3acf9;
|
|
145
|
+
--ga-color-utility-purple: var(--ga-color-purple-40);
|
|
74
146
|
--ga-color-purple-80: #591ab5;
|
|
147
|
+
--ga-color-text-link-visited: var(--ga-color-purple-80);
|
|
75
148
|
--ga-color-red-10: #fcf1ee;
|
|
149
|
+
--ga-color-surface-error: var(--ga-color-utility-red-accent);
|
|
150
|
+
--ga-color-utility-red-accent: var(--ga-color-red-10);
|
|
76
151
|
--ga-color-red-40: #eca79e;
|
|
152
|
+
--ga-color-utility-red: var(--ga-color-red-40);
|
|
77
153
|
--ga-color-red-60: #cc453e;
|
|
78
|
-
--ga-color-red-70: #b0241d;
|
|
79
154
|
--ga-color-rose-10: #fcf0f4;
|
|
155
|
+
--ga-color-utility-rose-accent: var(--ga-color-rose-10);
|
|
80
156
|
--ga-color-rose-40: #efa1bd;
|
|
81
|
-
--ga-color-
|
|
82
|
-
--ga-color-secondary-10: var(--ga-color-orange-10);
|
|
83
|
-
--ga-color-secondary-30: var(--ga-color-orange-30);
|
|
157
|
+
--ga-color-utility-rose: var(--ga-color-rose-40);
|
|
84
158
|
--ga-color-sequential-graph-10: var(--ga-color-teal-10);
|
|
85
159
|
--ga-color-sequential-graph-20: var(--ga-color-teal-20);
|
|
86
160
|
--ga-color-sequential-graph-30: var(--ga-color-teal-30);
|
|
@@ -91,74 +165,36 @@
|
|
|
91
165
|
--ga-color-sequential-graph-80: var(--ga-color-teal-80);
|
|
92
166
|
--ga-color-sequential-graph-90: var(--ga-color-teal-90);
|
|
93
167
|
--ga-color-sequential-graph-100: var(--ga-color-teal-100);
|
|
94
|
-
--ga-color-success: var(--ga-color-green-60);
|
|
95
|
-
--ga-color-success-light: var(--ga-color-utility-green-light);
|
|
96
|
-
--ga-color-surface-action: var(--ga-color-primary);
|
|
97
|
-
--ga-color-surface-action-hover: var(--ga-color-primary-90);
|
|
98
|
-
--ga-color-surface-action-hover-2: var(--ga-color-orange-20);
|
|
99
|
-
--ga-color-surface-disable-selected: var(--ga-color-neutral-60);
|
|
100
|
-
--ga-color-surface-disabled: var(--ga-color-neutral-20);
|
|
101
|
-
--ga-color-surface-error: var(--ga-color-utility-red-light);
|
|
102
|
-
--ga-color-surface-information: var(--ga-color-information-light);
|
|
103
|
-
--ga-color-surface-page: var(--ga-color-neutral-10);
|
|
104
168
|
--ga-color-surface-primary: var(--ga-color-white);
|
|
105
|
-
--ga-color-surface-selected: var(--ga-color-green-10);
|
|
106
|
-
--ga-color-surface-success: var(--ga-color-success-light);
|
|
107
|
-
--ga-color-surface-warning: var(--ga-color-utility-orange-light);
|
|
108
169
|
--ga-color-teal-10: #ecf5f4;
|
|
170
|
+
--ga-color-utility-teal-accent: var(--ga-color-teal-10);
|
|
109
171
|
--ga-color-teal-20: #d5e8e6;
|
|
110
172
|
--ga-color-teal-30: #b4d7d4;
|
|
111
173
|
--ga-color-teal-40: #92c3c0;
|
|
174
|
+
--ga-color-utility-teal: var(--ga-color-teal-40);
|
|
112
175
|
--ga-color-teal-50: #51a39e;
|
|
113
176
|
--ga-color-teal-60: #3a837e;
|
|
114
177
|
--ga-color-teal-70: #2c6764;
|
|
115
178
|
--ga-color-teal-80: #21514e;
|
|
116
179
|
--ga-color-teal-90: #143734;
|
|
117
180
|
--ga-color-teal-100: #081f1f;
|
|
118
|
-
--ga-color-
|
|
119
|
-
--ga-
|
|
120
|
-
--ga-
|
|
121
|
-
--ga-
|
|
122
|
-
--ga-
|
|
123
|
-
--ga-
|
|
124
|
-
--ga-
|
|
125
|
-
--ga-
|
|
126
|
-
--ga-
|
|
127
|
-
--ga-
|
|
128
|
-
--ga-
|
|
129
|
-
--ga-
|
|
130
|
-
--ga-
|
|
131
|
-
--ga-
|
|
132
|
-
--ga-
|
|
133
|
-
--ga-
|
|
134
|
-
--ga-
|
|
135
|
-
--ga-color-utility-green: var(--ga-color-green-40);
|
|
136
|
-
--ga-color-utility-green-light: var(--ga-color-green-10);
|
|
137
|
-
--ga-color-utility-grey: var(--ga-color-grey-40);
|
|
138
|
-
--ga-color-utility-grey-light: var(--ga-color-grey-10);
|
|
139
|
-
--ga-color-utility-indigo: var(--ga-color-indigo-40);
|
|
140
|
-
--ga-color-utility-indigo-light: var(--ga-color-indigo-10);
|
|
141
|
-
--ga-color-utility-lime: var(--ga-color-lime-40);
|
|
142
|
-
--ga-color-utility-lime-light: var(--ga-color-lime-10);
|
|
143
|
-
--ga-color-utility-orange: var(--ga-color-orange-40);
|
|
144
|
-
--ga-color-utility-orange-light: var(--ga-color-orange-10);
|
|
145
|
-
--ga-color-utility-pink: var(--ga-color-pink-40);
|
|
146
|
-
--ga-color-utility-pink-light: var(--ga-color-pink-10);
|
|
147
|
-
--ga-color-utility-purple: var(--ga-color-purple-40);
|
|
148
|
-
--ga-color-utility-purple-light: var(--ga-color-purple-10);
|
|
149
|
-
--ga-color-utility-red: var(--ga-color-red-40);
|
|
150
|
-
--ga-color-utility-red-light: var(--ga-color-red-10);
|
|
151
|
-
--ga-color-utility-rose: var(--ga-color-rose-40);
|
|
152
|
-
--ga-color-utility-rose-light: var(--ga-color-rose-10);
|
|
153
|
-
--ga-color-utility-teal: var(--ga-color-teal-40);
|
|
154
|
-
--ga-color-utility-teal-light: var(--ga-color-teal-10);
|
|
155
|
-
--ga-color-utility-yellow: var(--ga-color-yellow-40);
|
|
156
|
-
--ga-color-utility-yellow-light: var(--ga-color-yellow-10);
|
|
157
|
-
--ga-color-warning: var(--ga-color-orange-60);
|
|
158
|
-
--ga-color-warning-light: var(--ga-color-utility-orange-light);
|
|
159
|
-
--ga-color-white: #ffffff;
|
|
160
|
-
--ga-color-yellow-10: #fdf5ae;
|
|
161
|
-
--ga-color-yellow-40: #e1b402;
|
|
181
|
+
--ga-color-white: #fff;
|
|
182
|
+
--ga-duration-0: 0ms;
|
|
183
|
+
--ga-duration-fast: 100ms;
|
|
184
|
+
--ga-transition-state: var(--ga-duration-fast) 0ms var(--ga-easing-standard);
|
|
185
|
+
--ga-duration-instant: 50ms;
|
|
186
|
+
--ga-transition-hover: var(--ga-duration-instant) 0ms var(--ga-easing-standard);
|
|
187
|
+
--ga-duration-moderate: 150ms;
|
|
188
|
+
--ga-transition-dismiss: var(--ga-duration-moderate) 0ms var(--ga-easing-exit);
|
|
189
|
+
--ga-transition-reveal: var(--ga-duration-moderate) 0ms var(--ga-easing-entrance);
|
|
190
|
+
--ga-duration-slow: 250ms;
|
|
191
|
+
--ga-transition-overlay-in: var(--ga-duration-slow) 0ms var(--ga-easing-entrance);
|
|
192
|
+
--ga-transition-overlay-out: var(--ga-duration-slow) 0ms var(--ga-easing-exit);
|
|
193
|
+
--ga-duration-slower: 400ms;
|
|
194
|
+
--ga-transition-backdrop: var(--ga-duration-slower) 0ms var(--ga-easing-standard);
|
|
195
|
+
--ga-easing-entrance: cubic-bezier(0, 0, 0.38, 0.9);
|
|
196
|
+
--ga-easing-exit: cubic-bezier(0.2, 0, 1, 0.9);
|
|
197
|
+
--ga-easing-standard: cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
162
198
|
--ga-font-family-primary: "Inter", -system-ui, sans-serif;
|
|
163
199
|
--ga-font-weight-bold: 700;
|
|
164
200
|
--ga-font-weight-medium: 500;
|
|
@@ -167,6 +203,46 @@
|
|
|
167
203
|
--ga-radius: 4px;
|
|
168
204
|
--ga-radius-round: 999px;
|
|
169
205
|
--ga-radius-sharp: 0.02rem;
|
|
206
|
+
--ga-shadow-east: -2px 0 5px 0 #1334451a, -8px 0 8px 0 #13344517, -19px 0 11px 0 #1334450d, -34px 0 14px 0 #13344503, -53px 0 15px 0 #13344500;
|
|
207
|
+
--ga-shadow-north: 0 4px 8px 0 #1334451a, 0 15px 15px 0 #13344517, 0 34px 21px 0 #1334450d, 0 61px 24px 0 #13344503, 0 95px 27px 0 #13344500;
|
|
208
|
+
--ga-shadow-south: 0 -1px 1px 0 #13344514, 0 -2px 2px 0 #13344512, 0 -6px 3px 0 #1334450a, 0 -10px 4px 0 #13344503, 0 -15px 4px 0 #13344500;
|
|
209
|
+
--ga-shadow-west: 1px 0 3px 0 #1334451a, 5px 0 5px 0 #13344517, 12px 0 7px 0 #1334450d, 21px 0 8px 0 #13344503, 33px 0 9px 0 #13344500;
|
|
210
|
+
--ga-size-0: 0;
|
|
211
|
+
--ga-size-1: 0.0625rem;
|
|
212
|
+
--ga-size-2: 0.125rem;
|
|
213
|
+
--ga-size-4: 0.25rem;
|
|
214
|
+
--ga-size-6: 0.375rem;
|
|
215
|
+
--ga-size-8: 0.5rem;
|
|
216
|
+
--ga-size-10: 0.625rem;
|
|
217
|
+
--ga-size-11: 0.6875rem;
|
|
218
|
+
--ga-size-12: 0.75rem;
|
|
219
|
+
--ga-size-14: 0.875rem;
|
|
220
|
+
--ga-size-16: 1rem;
|
|
221
|
+
--ga-size-18: 1.125rem;
|
|
222
|
+
--ga-size-20: 1.25rem;
|
|
223
|
+
--ga-size-24: 1.5rem;
|
|
224
|
+
--ga-size-28: 1.75rem;
|
|
225
|
+
--ga-size-32: 2rem;
|
|
226
|
+
--ga-size-36: 2.25rem;
|
|
227
|
+
--ga-size-40: 2.5rem;
|
|
228
|
+
--ga-size-44: 2.75rem;
|
|
229
|
+
--ga-size-48: 3rem;
|
|
230
|
+
--ga-size-56: 3.5rem;
|
|
231
|
+
--ga-size-64: 4rem;
|
|
232
|
+
--ga-size-80: 5rem;
|
|
233
|
+
--ga-size-96: 6rem;
|
|
234
|
+
--ga-size-112: 7rem;
|
|
235
|
+
--ga-size-128: 8rem;
|
|
236
|
+
--ga-size-144: 9rem;
|
|
237
|
+
--ga-size-160: 10rem;
|
|
238
|
+
--ga-size-192: 12rem;
|
|
239
|
+
--ga-size-224: 14rem;
|
|
240
|
+
--ga-size-256: 16rem;
|
|
241
|
+
--ga-size-288: 18rem;
|
|
242
|
+
--ga-size-320: 20rem;
|
|
243
|
+
--ga-size-352: 22rem;
|
|
244
|
+
--ga-size-384: 24rem;
|
|
245
|
+
--ga-size-416: 26rem;
|
|
170
246
|
--ga-size-border-width-lg: 4px;
|
|
171
247
|
--ga-size-border-width-md: 2px;
|
|
172
248
|
--ga-size-border-width-none: 0;
|
|
@@ -187,32 +263,78 @@
|
|
|
187
263
|
--ga-size-spacing-13: 10rem;
|
|
188
264
|
--ga-text-2xl-font-size: 1.5rem;
|
|
189
265
|
--ga-text-2xl-font-style: normal;
|
|
190
|
-
--ga-text-2xl-line-height:
|
|
191
|
-
--ga-text-2xl-
|
|
192
|
-
--ga-text-
|
|
266
|
+
--ga-text-2xl-line-height: 2rem;
|
|
267
|
+
--ga-text-2xl-font-family: inherit;
|
|
268
|
+
--ga-text-2xl-font-weight: 400;
|
|
269
|
+
--ga-text-2xl-letter-spacing: -0.019rem;
|
|
270
|
+
--ga-text-2xl: var(--ga-text-2xl-font-style) var(--ga-text-2xl-font-weight) var(--ga-text-2xl-font-size)/var(--ga-text-2xl-line-height) var(--ga-text-2xl-font-family);
|
|
271
|
+
--ga-text-3xl-font-size: 2rem;
|
|
193
272
|
--ga-text-3xl-font-style: normal;
|
|
194
|
-
--ga-text-3xl-line-height:
|
|
195
|
-
--ga-text-3xl-
|
|
273
|
+
--ga-text-3xl-line-height: 2.5rem;
|
|
274
|
+
--ga-text-3xl-font-family: inherit;
|
|
275
|
+
--ga-text-3xl-font-weight: 400;
|
|
276
|
+
--ga-text-3xl-letter-spacing: -0.022rem;
|
|
277
|
+
--ga-text-3xl: var(--ga-text-3xl-font-style) var(--ga-text-3xl-font-weight) var(--ga-text-3xl-font-size)/var(--ga-text-3xl-line-height) var(--ga-text-3xl-font-family);
|
|
196
278
|
--ga-text-lg-font-size: 1rem;
|
|
197
279
|
--ga-text-lg-font-style: normal;
|
|
198
280
|
--ga-text-lg-line-height: 1.5rem;
|
|
199
|
-
--ga-text-lg-
|
|
281
|
+
--ga-text-lg-font-family: inherit;
|
|
282
|
+
--ga-text-lg-font-weight: 400;
|
|
283
|
+
--ga-text-lg-letter-spacing: -0.011rem;
|
|
284
|
+
--ga-text-lg: var(--ga-text-lg-font-style) var(--ga-text-lg-font-weight) var(--ga-text-lg-font-size)/var(--ga-text-lg-line-height) var(--ga-text-lg-font-family);
|
|
200
285
|
--ga-text-md-font-size: 0.875rem;
|
|
201
286
|
--ga-text-md-font-style: normal;
|
|
202
287
|
--ga-text-md-line-height: 1.25rem;
|
|
203
|
-
--ga-text-md-
|
|
288
|
+
--ga-text-md-font-family: inherit;
|
|
289
|
+
--ga-text-md-font-weight: 400;
|
|
290
|
+
--ga-text-md-letter-spacing: -0.006rem;
|
|
291
|
+
--ga-text-md: var(--ga-text-md-font-style) var(--ga-text-md-font-weight) var(--ga-text-md-font-size)/var(--ga-text-md-line-height) var(--ga-text-md-font-family);
|
|
204
292
|
--ga-text-sm-font-size: 0.75rem;
|
|
205
293
|
--ga-text-sm-font-style: normal;
|
|
206
294
|
--ga-text-sm-line-height: 1.25rem;
|
|
207
|
-
--ga-text-sm-
|
|
208
|
-
--ga-text-
|
|
295
|
+
--ga-text-sm-font-family: inherit;
|
|
296
|
+
--ga-text-sm-font-weight: 400;
|
|
297
|
+
--ga-text-sm-letter-spacing: 0;
|
|
298
|
+
--ga-text-sm: var(--ga-text-sm-font-style) var(--ga-text-sm-font-weight) var(--ga-text-sm-font-size)/var(--ga-text-sm-line-height) var(--ga-text-sm-font-family);
|
|
299
|
+
--ga-text-xl-font-size: 1.125rem;
|
|
209
300
|
--ga-text-xl-font-style: normal;
|
|
210
|
-
--ga-text-xl-line-height:
|
|
211
|
-
--ga-text-xl-
|
|
301
|
+
--ga-text-xl-line-height: 1.5rem;
|
|
302
|
+
--ga-text-xl-font-family: inherit;
|
|
303
|
+
--ga-text-xl-font-weight: 400;
|
|
304
|
+
--ga-text-xl-letter-spacing: -0.017rem;
|
|
305
|
+
--ga-text-xl: var(--ga-text-xl-font-style) var(--ga-text-xl-font-weight) var(--ga-text-xl-font-size)/var(--ga-text-xl-line-height) var(--ga-text-xl-font-family);
|
|
212
306
|
--ga-text-xs-font-size: 0.6875rem;
|
|
213
307
|
--ga-text-xs-font-style: normal;
|
|
214
308
|
--ga-text-xs-line-height: 1rem;
|
|
215
|
-
--ga-text-xs-
|
|
309
|
+
--ga-text-xs-font-family: inherit;
|
|
310
|
+
--ga-text-xs-font-weight: 400;
|
|
311
|
+
--ga-text-xs-letter-spacing: 0.005rem;
|
|
312
|
+
--ga-text-xs: var(--ga-text-xs-font-style) var(--ga-text-xs-font-weight) var(--ga-text-xs-font-size)/var(--ga-text-xs-line-height) var(--ga-text-xs-font-family);
|
|
313
|
+
}
|
|
314
|
+
@media (width >= 48rem) {
|
|
315
|
+
:root, :host {
|
|
316
|
+
--ga-text-2xl-font-size: 1.5rem;
|
|
317
|
+
--ga-text-2xl-font-style: normal;
|
|
318
|
+
--ga-text-2xl-line-height: 2.5rem;
|
|
319
|
+
--ga-text-2xl-font-family: inherit;
|
|
320
|
+
--ga-text-2xl-font-weight: 400;
|
|
321
|
+
--ga-text-2xl-letter-spacing: -0.019rem;
|
|
322
|
+
--ga-text-2xl: var(--ga-text-2xl-font-style) var(--ga-text-2xl-font-weight) var(--ga-text-2xl-font-size)/var(--ga-text-2xl-line-height) var(--ga-text-2xl-font-family);
|
|
323
|
+
--ga-text-3xl-font-size: 2.25rem;
|
|
324
|
+
--ga-text-3xl-font-style: normal;
|
|
325
|
+
--ga-text-3xl-line-height: 3rem;
|
|
326
|
+
--ga-text-3xl-font-family: inherit;
|
|
327
|
+
--ga-text-3xl-font-weight: 400;
|
|
328
|
+
--ga-text-3xl-letter-spacing: -0.022rem;
|
|
329
|
+
--ga-text-3xl: var(--ga-text-3xl-font-style) var(--ga-text-3xl-font-weight) var(--ga-text-3xl-font-size)/var(--ga-text-3xl-line-height) var(--ga-text-3xl-font-family);
|
|
330
|
+
--ga-text-xl-font-size: 1.25rem;
|
|
331
|
+
--ga-text-xl-font-style: normal;
|
|
332
|
+
--ga-text-xl-line-height: 2rem;
|
|
333
|
+
--ga-text-xl-font-family: inherit;
|
|
334
|
+
--ga-text-xl-font-weight: 400;
|
|
335
|
+
--ga-text-xl-letter-spacing: -0.017rem;
|
|
336
|
+
--ga-text-xl: var(--ga-text-xl-font-style) var(--ga-text-xl-font-weight) var(--ga-text-xl-font-size)/var(--ga-text-xl-line-height) var(--ga-text-xl-font-family);
|
|
337
|
+
}
|
|
216
338
|
}
|
|
217
339
|
@layer theme, base, components, utilities;
|
|
218
340
|
@layer theme {
|
|
@@ -327,7 +449,10 @@
|
|
|
327
449
|
}
|
|
328
450
|
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
329
451
|
::placeholder {
|
|
330
|
-
color:
|
|
452
|
+
color: currentcolor;
|
|
453
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
454
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
455
|
+
}
|
|
331
456
|
}
|
|
332
457
|
}
|
|
333
458
|
textarea {
|
|
@@ -349,6 +474,9 @@
|
|
|
349
474
|
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
350
475
|
padding-block: 0;
|
|
351
476
|
}
|
|
477
|
+
::-webkit-calendar-picker-indicator {
|
|
478
|
+
line-height: 1;
|
|
479
|
+
}
|
|
352
480
|
:-moz-ui-invalid {
|
|
353
481
|
box-shadow: none;
|
|
354
482
|
}
|
|
@@ -404,7 +532,7 @@
|
|
|
404
532
|
var(--ga-text-2xl-line-height) * var(--ga-base-scaling-factor, 1)
|
|
405
533
|
));
|
|
406
534
|
letter-spacing: var(--tw-tracking, calc(
|
|
407
|
-
var(--ga-text-2xl-
|
|
535
|
+
var(--ga-text-2xl-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
408
536
|
));
|
|
409
537
|
}
|
|
410
538
|
}
|
|
@@ -441,33 +569,33 @@
|
|
|
441
569
|
color: var(--ga-color-text-action);
|
|
442
570
|
}
|
|
443
571
|
&.ga-badge--information {
|
|
444
|
-
background-color: var(--ga-color-utility-blue-
|
|
572
|
+
background-color: var(--ga-color-utility-blue-accent);
|
|
445
573
|
color: var(--ga-color-text-information);
|
|
446
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
574
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
447
575
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
448
576
|
--tw-ring-color: var(--ga-color-border-information);
|
|
449
577
|
--tw-ring-inset: inset;
|
|
450
578
|
}
|
|
451
579
|
&.ga-badge--error {
|
|
452
|
-
background-color: var(--ga-color-utility-red-
|
|
580
|
+
background-color: var(--ga-color-utility-red-accent);
|
|
453
581
|
color: var(--ga-color-text-error);
|
|
454
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
582
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
455
583
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
456
584
|
--tw-ring-color: var(--ga-color-border-error);
|
|
457
585
|
--tw-ring-inset: inset;
|
|
458
586
|
}
|
|
459
587
|
&.ga-badge--warning {
|
|
460
|
-
background-color: var(--ga-color-utility-orange-
|
|
588
|
+
background-color: var(--ga-color-utility-orange-accent);
|
|
461
589
|
color: var(--ga-color-text-warning);
|
|
462
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
590
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
463
591
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
464
592
|
--tw-ring-color: var(--ga-color-border-warning);
|
|
465
593
|
--tw-ring-inset: inset;
|
|
466
594
|
}
|
|
467
595
|
&.ga-badge--success {
|
|
468
|
-
background-color: var(--ga-color-utility-green-
|
|
596
|
+
background-color: var(--ga-color-utility-green-accent);
|
|
469
597
|
color: var(--ga-color-text-success);
|
|
470
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
598
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
471
599
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
472
600
|
--tw-ring-color: var(--ga-color-border-success);
|
|
473
601
|
--tw-ring-inset: inset;
|
|
@@ -477,7 +605,7 @@
|
|
|
477
605
|
color: var(--ga-color-text-disable-selected);
|
|
478
606
|
}
|
|
479
607
|
&.ga-badge--disabled-inverted {
|
|
480
|
-
background-color: var(--ga-color-icon-
|
|
608
|
+
background-color: var(--ga-color-icon-on-primary);
|
|
481
609
|
color: var(--ga-color-text-disabled);
|
|
482
610
|
}
|
|
483
611
|
}
|
|
@@ -492,7 +620,7 @@
|
|
|
492
620
|
}
|
|
493
621
|
&.ga-badge--muted {
|
|
494
622
|
background-color: var(--ga-color-icon-on-primary);
|
|
495
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
623
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
496
624
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
497
625
|
--tw-ring-color: var(--ga-color-text-disabled);
|
|
498
626
|
--tw-ring-inset: inset;
|
|
@@ -513,7 +641,7 @@
|
|
|
513
641
|
background-color: var(--ga-color-icon-on-disabled);
|
|
514
642
|
}
|
|
515
643
|
&.ga-badge--disabled-inverted {
|
|
516
|
-
background-color: var(--ga-color-icon-
|
|
644
|
+
background-color: var(--ga-color-icon-on-primary);
|
|
517
645
|
}
|
|
518
646
|
}
|
|
519
647
|
}
|
|
@@ -534,13 +662,18 @@
|
|
|
534
662
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
535
663
|
));
|
|
536
664
|
letter-spacing: var(--tw-tracking, calc(
|
|
537
|
-
var(--ga-text-md-
|
|
665
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
538
666
|
));
|
|
539
667
|
--tw-leading: calc(0.4rem * 1);
|
|
540
668
|
line-height: calc(0.4rem * 1);
|
|
541
669
|
--tw-font-weight: 500;
|
|
542
670
|
font-weight: 500;
|
|
543
671
|
white-space: nowrap;
|
|
672
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
673
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
674
|
+
transition-duration: var(--tw-duration, 0s);
|
|
675
|
+
transition-duration: var(--ga-duration-instant);
|
|
676
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
544
677
|
.ga-icon {
|
|
545
678
|
color: var(--ga-color-icon-action);
|
|
546
679
|
}
|
|
@@ -566,7 +699,7 @@
|
|
|
566
699
|
background-color: var(--ga-color-surface-action-hover);
|
|
567
700
|
}
|
|
568
701
|
&:active {
|
|
569
|
-
background-color: var(--ga-color-
|
|
702
|
+
background-color: var(--ga-color-surface-action);
|
|
570
703
|
}
|
|
571
704
|
&:disabled {
|
|
572
705
|
background-color: var(--ga-color-surface-disabled);
|
|
@@ -654,7 +787,7 @@
|
|
|
654
787
|
border-radius: var(--ga-radius);
|
|
655
788
|
border-style: var(--tw-border-style);
|
|
656
789
|
border-width: 1px;
|
|
657
|
-
border-color: var(--ga-color-border-
|
|
790
|
+
border-color: var(--ga-color-border-tertiary);
|
|
658
791
|
background-color: #fff;
|
|
659
792
|
padding: calc(0.4rem * 4);
|
|
660
793
|
font-size: calc(
|
|
@@ -664,19 +797,34 @@
|
|
|
664
797
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
665
798
|
));
|
|
666
799
|
letter-spacing: var(--tw-tracking, calc(
|
|
667
|
-
var(--ga-text-md-
|
|
800
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
668
801
|
));
|
|
669
802
|
&.ga-card--selectable {
|
|
803
|
+
position: relative;
|
|
670
804
|
cursor: pointer;
|
|
805
|
+
transition-property: color,background-color,border-color,box-shadow;
|
|
806
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
807
|
+
transition-duration: var(--tw-duration, 0s);
|
|
808
|
+
transition-duration: var(--ga-duration-instant);
|
|
809
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
671
810
|
&:hover:not(.ga-card--selected) {
|
|
672
811
|
border-color: var(--ga-color-border-action-hover);
|
|
673
812
|
background-color: var(--ga-color-surface-action-hover-2);
|
|
813
|
+
--tw-shadow: var(--ga-shadow-north);
|
|
814
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
674
815
|
}
|
|
675
816
|
&:focus-visible {
|
|
676
|
-
|
|
677
|
-
outline-
|
|
678
|
-
|
|
679
|
-
|
|
817
|
+
--tw-outline-style: none;
|
|
818
|
+
outline-style: none;
|
|
819
|
+
}
|
|
820
|
+
&:focus-visible::after {
|
|
821
|
+
position: absolute;
|
|
822
|
+
inset: calc(5px * -1);
|
|
823
|
+
border-style: var(--tw-border-style);
|
|
824
|
+
border-width: 2px;
|
|
825
|
+
border-color: var(--ga-color-border-focus);
|
|
826
|
+
--tw-content: '';
|
|
827
|
+
content: var(--tw-content);
|
|
680
828
|
}
|
|
681
829
|
}
|
|
682
830
|
&.ga-card--disabled {
|
|
@@ -693,9 +841,7 @@
|
|
|
693
841
|
width: calc(0.4rem * 70);
|
|
694
842
|
background-color: #fff;
|
|
695
843
|
--tw-numeric-figure: lining-nums;
|
|
696
|
-
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
697
844
|
--tw-slashed-zero: slashed-zero;
|
|
698
|
-
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
699
845
|
--tw-numeric-spacing: tabular-nums;
|
|
700
846
|
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
701
847
|
.ga-calendar__header {
|
|
@@ -723,7 +869,7 @@
|
|
|
723
869
|
var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
|
|
724
870
|
));
|
|
725
871
|
letter-spacing: var(--tw-tracking, calc(
|
|
726
|
-
var(--ga-text-lg-
|
|
872
|
+
var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
727
873
|
));
|
|
728
874
|
--tw-font-weight: 600;
|
|
729
875
|
font-weight: 600;
|
|
@@ -739,6 +885,11 @@
|
|
|
739
885
|
}
|
|
740
886
|
.ga-calendar__navigation-button {
|
|
741
887
|
cursor: pointer;
|
|
888
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
889
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
890
|
+
transition-duration: var(--tw-duration, 0s);
|
|
891
|
+
transition-duration: var(--ga-duration-instant);
|
|
892
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
742
893
|
&:hover {
|
|
743
894
|
@media (hover: hover) {
|
|
744
895
|
color: var(--ga-color-icon-action-hover);
|
|
@@ -785,13 +936,18 @@
|
|
|
785
936
|
var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
|
|
786
937
|
));
|
|
787
938
|
letter-spacing: var(--tw-tracking, calc(
|
|
788
|
-
var(--ga-text-lg-
|
|
939
|
+
var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
789
940
|
));
|
|
790
941
|
--tw-leading: calc(0.4rem * 10);
|
|
791
942
|
line-height: calc(0.4rem * 10);
|
|
792
943
|
--tw-font-weight: 500;
|
|
793
944
|
font-weight: 500;
|
|
794
945
|
color: var(--ga-color-text-action);
|
|
946
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
947
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
948
|
+
transition-duration: var(--tw-duration, 0s);
|
|
949
|
+
transition-duration: var(--ga-duration-instant);
|
|
950
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
795
951
|
&:not(.ga-calendar__year--disabled, .ga-calendar__month--disabled):hover {
|
|
796
952
|
color: var(--ga-color-text-action-hover);
|
|
797
953
|
text-decoration-line: underline;
|
|
@@ -806,7 +962,7 @@
|
|
|
806
962
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
807
963
|
));
|
|
808
964
|
letter-spacing: var(--tw-tracking, calc(
|
|
809
|
-
var(--ga-text-md-
|
|
965
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
810
966
|
));
|
|
811
967
|
color: var(--ga-color-text-on-action);
|
|
812
968
|
}
|
|
@@ -831,9 +987,14 @@
|
|
|
831
987
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
832
988
|
));
|
|
833
989
|
letter-spacing: var(--tw-tracking, calc(
|
|
834
|
-
var(--ga-text-md-
|
|
990
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
835
991
|
));
|
|
836
992
|
color: var(--ga-color-text-body);
|
|
993
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
994
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
995
|
+
transition-duration: var(--tw-duration, 0s);
|
|
996
|
+
transition-duration: var(--ga-duration-instant);
|
|
997
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
837
998
|
&:hover {
|
|
838
999
|
background-color: var(--ga-color-surface-action-hover-2);
|
|
839
1000
|
color: var(--ga-color-text-action-hover);
|
|
@@ -841,12 +1002,12 @@
|
|
|
841
1002
|
&.ga-calendar__day--current::after {
|
|
842
1003
|
position: absolute;
|
|
843
1004
|
bottom: calc(0.4rem * 2);
|
|
844
|
-
left: calc(1/2 * 100%);
|
|
1005
|
+
left: calc(1 / 2 * 100%);
|
|
845
1006
|
height: calc(0.4rem * 0.5);
|
|
846
1007
|
width: calc(0.4rem * 5);
|
|
847
|
-
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
1008
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
848
1009
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
849
|
-
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
|
|
1010
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
850
1011
|
border-radius: var(--ga-radius);
|
|
851
1012
|
background-color: var(--ga-color-surface-action);
|
|
852
1013
|
--tw-content: '';
|
|
@@ -855,12 +1016,12 @@
|
|
|
855
1016
|
&.ga-calendar__day--special::after {
|
|
856
1017
|
position: absolute;
|
|
857
1018
|
bottom: calc(0.4rem * 2);
|
|
858
|
-
left: calc(1/2 * 100%);
|
|
1019
|
+
left: calc(1 / 2 * 100%);
|
|
859
1020
|
height: calc(0.4rem * 1);
|
|
860
1021
|
width: calc(0.4rem * 1);
|
|
861
|
-
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
1022
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
862
1023
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
863
|
-
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
|
|
1024
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
864
1025
|
border-radius: calc(infinity * 1px);
|
|
865
1026
|
background-color: var(--ga-color-surface-action);
|
|
866
1027
|
--tw-content: '';
|
|
@@ -903,7 +1064,7 @@
|
|
|
903
1064
|
border-block-style: var(--tw-border-style);
|
|
904
1065
|
border-block-width: 1px;
|
|
905
1066
|
border-color: var(--ga-color-border-success);
|
|
906
|
-
background-color: var(--ga-color-success-
|
|
1067
|
+
background-color: var(--ga-color-success-accent);
|
|
907
1068
|
color: var(--ga-color-text-body);
|
|
908
1069
|
}
|
|
909
1070
|
&.ga-calendar__day--selected-range-end {
|
|
@@ -948,7 +1109,7 @@
|
|
|
948
1109
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
949
1110
|
));
|
|
950
1111
|
letter-spacing: var(--tw-tracking, calc(
|
|
951
|
-
var(--ga-text-xs-
|
|
1112
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
952
1113
|
));
|
|
953
1114
|
--tw-font-weight: 500;
|
|
954
1115
|
font-weight: 500;
|
|
@@ -970,6 +1131,11 @@
|
|
|
970
1131
|
border-width: 2px;
|
|
971
1132
|
border-color: var(--ga-color-border-action);
|
|
972
1133
|
color: #fff;
|
|
1134
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1135
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
1136
|
+
transition-duration: var(--tw-duration, 0s);
|
|
1137
|
+
transition-duration: var(--ga-duration-fast);
|
|
1138
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
973
1139
|
.ga-checkbox__marker__indicator-checked, .ga-checkbox__marker__indicator-indeterminate {
|
|
974
1140
|
display: none;
|
|
975
1141
|
}
|
|
@@ -1037,7 +1203,7 @@
|
|
|
1037
1203
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1038
1204
|
));
|
|
1039
1205
|
letter-spacing: var(--tw-tracking, calc(
|
|
1040
|
-
var(--ga-text-md-
|
|
1206
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1041
1207
|
));
|
|
1042
1208
|
--tw-leading: calc(0.4rem * 4);
|
|
1043
1209
|
line-height: calc(0.4rem * 4);
|
|
@@ -1071,6 +1237,8 @@
|
|
|
1071
1237
|
border-color: var(--ga-color-border-primary);
|
|
1072
1238
|
background-color: var(--ga-color-surface-primary);
|
|
1073
1239
|
padding: calc(0.4rem * 4);
|
|
1240
|
+
--tw-shadow: var(--ga-shadow-north);
|
|
1241
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1074
1242
|
.ga-datepicker__footer {
|
|
1075
1243
|
margin-top: calc(0.4rem * 2);
|
|
1076
1244
|
}
|
|
@@ -1107,8 +1275,10 @@
|
|
|
1107
1275
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1108
1276
|
));
|
|
1109
1277
|
letter-spacing: var(--tw-tracking, calc(
|
|
1110
|
-
var(--ga-text-md-
|
|
1278
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1111
1279
|
));
|
|
1280
|
+
--tw-shadow: var(--ga-shadow-north);
|
|
1281
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1112
1282
|
--tw-outline-style: none;
|
|
1113
1283
|
outline-style: none;
|
|
1114
1284
|
@supports (scroll-timeline: --dropdown-scroll block) {
|
|
@@ -1127,7 +1297,6 @@
|
|
|
1127
1297
|
--tw-gradient-position: to bottom in oklab;
|
|
1128
1298
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1129
1299
|
--tw-gradient-from: transparent;
|
|
1130
|
-
--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));
|
|
1131
1300
|
--tw-gradient-to: var(--ga-color-surface-primary);
|
|
1132
1301
|
--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));
|
|
1133
1302
|
opacity: 0%;
|
|
@@ -1157,9 +1326,14 @@
|
|
|
1157
1326
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1158
1327
|
));
|
|
1159
1328
|
letter-spacing: var(--tw-tracking, calc(
|
|
1160
|
-
var(--ga-text-md-
|
|
1329
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1161
1330
|
));
|
|
1162
1331
|
color: var(--ga-color-text-action);
|
|
1332
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1333
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
1334
|
+
transition-duration: var(--tw-duration, 0s);
|
|
1335
|
+
transition-duration: var(--ga-duration-instant);
|
|
1336
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
1163
1337
|
&:first-child {
|
|
1164
1338
|
border-top-left-radius: var(--ga-radius);
|
|
1165
1339
|
border-top-right-radius: var(--ga-radius);
|
|
@@ -1301,10 +1475,15 @@
|
|
|
1301
1475
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1302
1476
|
));
|
|
1303
1477
|
letter-spacing: var(--tw-tracking, calc(
|
|
1304
|
-
var(--ga-text-md-
|
|
1478
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1305
1479
|
));
|
|
1306
1480
|
--tw-font-weight: 500;
|
|
1307
1481
|
font-weight: 500;
|
|
1482
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1483
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
1484
|
+
transition-duration: var(--tw-duration, 0s);
|
|
1485
|
+
transition-duration: var(--ga-duration-instant);
|
|
1486
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
1308
1487
|
}
|
|
1309
1488
|
.ga-form-field__label-state {
|
|
1310
1489
|
font-size: calc(
|
|
@@ -1347,7 +1526,7 @@
|
|
|
1347
1526
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1348
1527
|
));
|
|
1349
1528
|
letter-spacing: var(--tw-tracking, calc(
|
|
1350
|
-
var(--ga-text-xs-
|
|
1529
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1351
1530
|
));
|
|
1352
1531
|
.ga-icon {
|
|
1353
1532
|
flex-shrink: 0;
|
|
@@ -1375,8 +1554,13 @@
|
|
|
1375
1554
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1376
1555
|
));
|
|
1377
1556
|
letter-spacing: var(--tw-tracking, calc(
|
|
1378
|
-
var(--ga-text-md-
|
|
1557
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1379
1558
|
));
|
|
1559
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1560
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
1561
|
+
transition-duration: var(--tw-duration, 0s);
|
|
1562
|
+
transition-duration: var(--ga-duration-instant);
|
|
1563
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
1380
1564
|
&:hover {
|
|
1381
1565
|
border-color: var(--ga-color-border-action-hover);
|
|
1382
1566
|
&:has(input:not(:placeholder-shown)), &:is(input:not(:placeholder-shown)) {
|
|
@@ -1456,7 +1640,7 @@
|
|
|
1456
1640
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1457
1641
|
));
|
|
1458
1642
|
letter-spacing: var(--tw-tracking, calc(
|
|
1459
|
-
var(--ga-text-md-
|
|
1643
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1460
1644
|
));
|
|
1461
1645
|
&.ga-notification--information {
|
|
1462
1646
|
border-color: var(--ga-color-border-information);
|
|
@@ -1552,12 +1736,12 @@
|
|
|
1552
1736
|
.ga-notification__progress-bar {
|
|
1553
1737
|
position: absolute;
|
|
1554
1738
|
height: 100%;
|
|
1555
|
-
transform-origin:
|
|
1739
|
+
transform-origin: 0 0;
|
|
1556
1740
|
border-radius: var(--ga-radius);
|
|
1557
|
-
background-color: var(--ga-color-
|
|
1741
|
+
background-color: var(--ga-color-surface-progress);
|
|
1558
1742
|
}
|
|
1559
1743
|
&.ga-notification__progress--indeterminate .ga-notification__progress-bar {
|
|
1560
|
-
width: calc(1/5 * 100%);
|
|
1744
|
+
width: calc(1 / 5 * 100%);
|
|
1561
1745
|
animation: ga-notification-progress-animation 1400ms linear infinite;
|
|
1562
1746
|
}
|
|
1563
1747
|
}
|
|
@@ -1589,8 +1773,10 @@
|
|
|
1589
1773
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1590
1774
|
));
|
|
1591
1775
|
letter-spacing: var(--tw-tracking, calc(
|
|
1592
|
-
var(--ga-text-md-
|
|
1776
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1593
1777
|
));
|
|
1778
|
+
--tw-shadow: var(--ga-shadow-north);
|
|
1779
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1594
1780
|
.ga-menu__item {
|
|
1595
1781
|
position: relative;
|
|
1596
1782
|
display: flex;
|
|
@@ -1604,6 +1790,11 @@
|
|
|
1604
1790
|
text-align: left;
|
|
1605
1791
|
--tw-leading: 1;
|
|
1606
1792
|
line-height: 1;
|
|
1793
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1794
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
1795
|
+
transition-duration: var(--tw-duration, 0s);
|
|
1796
|
+
transition-duration: var(--ga-duration-instant);
|
|
1797
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
1607
1798
|
&:first-child {
|
|
1608
1799
|
border-top-left-radius: var(--ga-radius);
|
|
1609
1800
|
border-top-right-radius: var(--ga-radius);
|
|
@@ -1706,7 +1897,7 @@
|
|
|
1706
1897
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1707
1898
|
));
|
|
1708
1899
|
letter-spacing: var(--tw-tracking, calc(
|
|
1709
|
-
var(--ga-text-md-
|
|
1900
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1710
1901
|
));
|
|
1711
1902
|
--tw-font-weight: 500;
|
|
1712
1903
|
font-weight: 500;
|
|
@@ -1727,7 +1918,7 @@
|
|
|
1727
1918
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1728
1919
|
));
|
|
1729
1920
|
letter-spacing: var(--tw-tracking, calc(
|
|
1730
|
-
var(--ga-text-xs-
|
|
1921
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1731
1922
|
));
|
|
1732
1923
|
--tw-font-weight: 500;
|
|
1733
1924
|
font-weight: 500;
|
|
@@ -1741,7 +1932,7 @@
|
|
|
1741
1932
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1742
1933
|
));
|
|
1743
1934
|
letter-spacing: var(--tw-tracking, calc(
|
|
1744
|
-
var(--ga-text-xs-
|
|
1935
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1745
1936
|
));
|
|
1746
1937
|
color: var(--ga-color-text-disable-selected);
|
|
1747
1938
|
}
|
|
@@ -1804,7 +1995,7 @@
|
|
|
1804
1995
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1805
1996
|
));
|
|
1806
1997
|
letter-spacing: var(--tw-tracking, calc(
|
|
1807
|
-
var(--ga-text-md-
|
|
1998
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1808
1999
|
));
|
|
1809
2000
|
scrollbar-width: thin;
|
|
1810
2001
|
&.ga-modal--small {
|
|
@@ -1864,7 +2055,7 @@
|
|
|
1864
2055
|
var(--ga-text-xl-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1865
2056
|
));
|
|
1866
2057
|
letter-spacing: var(--tw-tracking, calc(
|
|
1867
|
-
var(--ga-text-xl-
|
|
2058
|
+
var(--ga-text-xl-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1868
2059
|
));
|
|
1869
2060
|
--tw-font-weight: 600;
|
|
1870
2061
|
font-weight: 600;
|
|
@@ -1922,7 +2113,7 @@
|
|
|
1922
2113
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
1923
2114
|
));
|
|
1924
2115
|
letter-spacing: var(--tw-tracking, calc(
|
|
1925
|
-
var(--ga-text-xs-
|
|
2116
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
1926
2117
|
));
|
|
1927
2118
|
color: var(--ga-color-text-body);
|
|
1928
2119
|
}
|
|
@@ -1938,9 +2129,9 @@
|
|
|
1938
2129
|
position: absolute;
|
|
1939
2130
|
height: 100%;
|
|
1940
2131
|
width: 100%;
|
|
1941
|
-
transform-origin:
|
|
2132
|
+
transform-origin: 0 0;
|
|
1942
2133
|
border-radius: var(--ga-radius);
|
|
1943
|
-
background-color: var(--ga-color-
|
|
2134
|
+
background-color: var(--ga-color-surface-progress);
|
|
1944
2135
|
}
|
|
1945
2136
|
&.ga-progress--success {
|
|
1946
2137
|
.ga-progress__bar {
|
|
@@ -1960,7 +2151,7 @@
|
|
|
1960
2151
|
}
|
|
1961
2152
|
&.ga-progress--indeterminate {
|
|
1962
2153
|
.ga-progress__bar {
|
|
1963
|
-
width: calc(1/5 * 100%);
|
|
2154
|
+
width: calc(1 / 5 * 100%);
|
|
1964
2155
|
animation: ga-progress-animation 1400ms linear infinite;
|
|
1965
2156
|
}
|
|
1966
2157
|
}
|
|
@@ -2043,11 +2234,16 @@
|
|
|
2043
2234
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
2044
2235
|
));
|
|
2045
2236
|
letter-spacing: var(--tw-tracking, calc(
|
|
2046
|
-
var(--ga-text-md-
|
|
2237
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
2047
2238
|
));
|
|
2048
2239
|
--tw-font-weight: 500;
|
|
2049
2240
|
font-weight: 500;
|
|
2050
2241
|
color: var(--ga-color-text-action);
|
|
2242
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
2243
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
2244
|
+
transition-duration: var(--tw-duration, 0s);
|
|
2245
|
+
transition-duration: var(--ga-duration-instant);
|
|
2246
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2051
2247
|
}
|
|
2052
2248
|
.ga-progress-indicator__label-state {
|
|
2053
2249
|
font-size: calc(
|
|
@@ -2057,7 +2253,7 @@
|
|
|
2057
2253
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
2058
2254
|
));
|
|
2059
2255
|
letter-spacing: var(--tw-tracking, calc(
|
|
2060
|
-
var(--ga-text-md-
|
|
2256
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
2061
2257
|
));
|
|
2062
2258
|
--tw-font-weight: 400;
|
|
2063
2259
|
font-weight: 400;
|
|
@@ -2090,7 +2286,7 @@
|
|
|
2090
2286
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
2091
2287
|
));
|
|
2092
2288
|
letter-spacing: var(--tw-tracking, calc(
|
|
2093
|
-
var(--ga-text-xs-
|
|
2289
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
2094
2290
|
));
|
|
2095
2291
|
color: var(--ga-color-text-body);
|
|
2096
2292
|
}
|
|
@@ -2208,14 +2404,13 @@
|
|
|
2208
2404
|
background-color: var(--ga-color-surface-action);
|
|
2209
2405
|
&::after {
|
|
2210
2406
|
position: absolute;
|
|
2211
|
-
top: calc(1/2 * 100%);
|
|
2212
|
-
left: calc(1/2 * 100%);
|
|
2407
|
+
top: calc(1 / 2 * 100%);
|
|
2408
|
+
left: calc(1 / 2 * 100%);
|
|
2213
2409
|
display: block;
|
|
2214
2410
|
height: calc(0.4rem * 1);
|
|
2215
2411
|
width: calc(0.4rem * 1);
|
|
2216
|
-
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
2217
|
-
|
|
2218
|
-
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
2412
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
2413
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
2219
2414
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2220
2415
|
border-radius: calc(infinity * 1px);
|
|
2221
2416
|
background-color: #fff;
|
|
@@ -2266,6 +2461,11 @@
|
|
|
2266
2461
|
border-width: 2px;
|
|
2267
2462
|
border-color: var(--ga-color-border-action);
|
|
2268
2463
|
color: #fff;
|
|
2464
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
2465
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
2466
|
+
transition-duration: var(--tw-duration, 0s);
|
|
2467
|
+
transition-duration: var(--ga-duration-fast);
|
|
2468
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2269
2469
|
}
|
|
2270
2470
|
.ga-radio-button__label {
|
|
2271
2471
|
min-height: calc(0.4rem * 4);
|
|
@@ -2276,7 +2476,7 @@
|
|
|
2276
2476
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
2277
2477
|
));
|
|
2278
2478
|
letter-spacing: var(--tw-tracking, calc(
|
|
2279
|
-
var(--ga-text-md-
|
|
2479
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
2280
2480
|
));
|
|
2281
2481
|
--tw-leading: calc(0.4rem * 4);
|
|
2282
2482
|
line-height: calc(0.4rem * 4);
|
|
@@ -2293,7 +2493,7 @@
|
|
|
2293
2493
|
border-radius: var(--ga-radius);
|
|
2294
2494
|
border-style: var(--tw-border-style);
|
|
2295
2495
|
border-width: 1px;
|
|
2296
|
-
border-color: var(--ga-color-border-
|
|
2496
|
+
border-color: var(--ga-color-border-tertiary);
|
|
2297
2497
|
padding: calc(0.4rem * 0.5);
|
|
2298
2498
|
vertical-align: middle;
|
|
2299
2499
|
font-size: calc(
|
|
@@ -2303,7 +2503,7 @@
|
|
|
2303
2503
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
2304
2504
|
));
|
|
2305
2505
|
letter-spacing: var(--tw-tracking, calc(
|
|
2306
|
-
var(--ga-text-md-
|
|
2506
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
2307
2507
|
));
|
|
2308
2508
|
.ga-segmented-control__button {
|
|
2309
2509
|
display: inline-flex;
|
|
@@ -2322,6 +2522,11 @@
|
|
|
2322
2522
|
line-height: calc(0.4rem * 1);
|
|
2323
2523
|
white-space: nowrap;
|
|
2324
2524
|
color: var(--ga-color-text-action);
|
|
2525
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
2526
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
2527
|
+
transition-duration: var(--tw-duration, 0s);
|
|
2528
|
+
transition-duration: var(--ga-duration-instant);
|
|
2529
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2325
2530
|
&.ga-segmented-control__button--selected, &:hover {
|
|
2326
2531
|
border-color: var(--ga-color-border-action);
|
|
2327
2532
|
}
|
|
@@ -2335,7 +2540,7 @@
|
|
|
2335
2540
|
&:focus-visible {
|
|
2336
2541
|
outline-style: var(--tw-outline-style);
|
|
2337
2542
|
outline-width: 2px;
|
|
2338
|
-
outline-offset:
|
|
2543
|
+
outline-offset: 1px;
|
|
2339
2544
|
outline-color: var(--ga-color-border-focus);
|
|
2340
2545
|
}
|
|
2341
2546
|
&.ga-segmented-control__button--icon-only {
|
|
@@ -2352,7 +2557,7 @@
|
|
|
2352
2557
|
padding: 0;
|
|
2353
2558
|
margin: -1px;
|
|
2354
2559
|
overflow: hidden;
|
|
2355
|
-
clip:
|
|
2560
|
+
clip-path: inset(50%);
|
|
2356
2561
|
white-space: nowrap;
|
|
2357
2562
|
border-width: 0;
|
|
2358
2563
|
}
|
|
@@ -2377,7 +2582,7 @@
|
|
|
2377
2582
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
2378
2583
|
));
|
|
2379
2584
|
letter-spacing: var(--tw-tracking, calc(
|
|
2380
|
-
var(--ga-text-md-
|
|
2585
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
2381
2586
|
));
|
|
2382
2587
|
--tw-leading: 1;
|
|
2383
2588
|
line-height: 1;
|
|
@@ -2385,9 +2590,9 @@
|
|
|
2385
2590
|
.ga-native-select__arrow {
|
|
2386
2591
|
pointer-events: none;
|
|
2387
2592
|
position: absolute;
|
|
2388
|
-
top: calc(1/2 * 100%);
|
|
2593
|
+
top: calc(1 / 2 * 100%);
|
|
2389
2594
|
right: calc(0.4rem * 2);
|
|
2390
|
-
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
2595
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
2391
2596
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2392
2597
|
}
|
|
2393
2598
|
}
|
|
@@ -2414,13 +2619,18 @@
|
|
|
2414
2619
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
2415
2620
|
));
|
|
2416
2621
|
letter-spacing: var(--tw-tracking, calc(
|
|
2417
|
-
var(--ga-text-md-
|
|
2622
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
2418
2623
|
));
|
|
2419
2624
|
--tw-leading: 1;
|
|
2420
2625
|
line-height: 1;
|
|
2626
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
2627
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
2628
|
+
transition-duration: var(--tw-duration, 0s);
|
|
2629
|
+
transition-duration: var(--ga-duration-instant);
|
|
2630
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2421
2631
|
&.ga-select--expanded {
|
|
2422
2632
|
border-color: var(--ga-color-border-focus);
|
|
2423
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
2633
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2424
2634
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2425
2635
|
--tw-ring-color: var(--ga-color-border-focus);
|
|
2426
2636
|
}
|
|
@@ -2444,7 +2654,7 @@
|
|
|
2444
2654
|
}
|
|
2445
2655
|
&.ga-select--invalid {
|
|
2446
2656
|
border-color: var(--ga-color-border-error);
|
|
2447
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
2657
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2448
2658
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2449
2659
|
--tw-ring-color: var(--ga-color-border-error);
|
|
2450
2660
|
&:not(.ga-select--empty) {
|
|
@@ -2568,6 +2778,11 @@
|
|
|
2568
2778
|
border-width: 1px;
|
|
2569
2779
|
border-color: var(--ga-color-border-action);
|
|
2570
2780
|
background-color: var(--ga-color-surface-primary);
|
|
2781
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
2782
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
2783
|
+
transition-duration: var(--tw-duration, 0s);
|
|
2784
|
+
transition-duration: var(--ga-duration-fast);
|
|
2785
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2571
2786
|
}
|
|
2572
2787
|
.ga-switch__check-icon {
|
|
2573
2788
|
position: absolute;
|
|
@@ -2578,8 +2793,8 @@
|
|
|
2578
2793
|
transition-property: opacity;
|
|
2579
2794
|
transition-timing-function: var(--tw-ease, ease);
|
|
2580
2795
|
transition-duration: var(--tw-duration, 0s);
|
|
2581
|
-
|
|
2582
|
-
transition-
|
|
2796
|
+
transition-duration: var(--ga-duration-fast);
|
|
2797
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2583
2798
|
}
|
|
2584
2799
|
.ga-switch__slider {
|
|
2585
2800
|
pointer-events: none;
|
|
@@ -2594,8 +2809,8 @@
|
|
|
2594
2809
|
transition-property: transform, translate, scale, rotate;
|
|
2595
2810
|
transition-timing-function: var(--tw-ease, ease);
|
|
2596
2811
|
transition-duration: var(--tw-duration, 0s);
|
|
2597
|
-
|
|
2598
|
-
transition-
|
|
2812
|
+
transition-duration: var(--ga-duration-fast);
|
|
2813
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2599
2814
|
}
|
|
2600
2815
|
.ga-switch__label {
|
|
2601
2816
|
-webkit-user-select: none;
|
|
@@ -2666,7 +2881,7 @@
|
|
|
2666
2881
|
display: flex;
|
|
2667
2882
|
gap: calc(0.4rem * 2);
|
|
2668
2883
|
&.ga-tabs--keyline {
|
|
2669
|
-
border-color: var(--ga-color-border-
|
|
2884
|
+
border-color: var(--ga-color-border-tertiary);
|
|
2670
2885
|
}
|
|
2671
2886
|
.ga-tabs__tab {
|
|
2672
2887
|
position: relative;
|
|
@@ -2684,13 +2899,18 @@
|
|
|
2684
2899
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
2685
2900
|
));
|
|
2686
2901
|
letter-spacing: var(--tw-tracking, calc(
|
|
2687
|
-
var(--ga-text-md-
|
|
2902
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
2688
2903
|
));
|
|
2689
2904
|
--tw-leading: calc(0.4rem * 4);
|
|
2690
2905
|
line-height: calc(0.4rem * 4);
|
|
2691
2906
|
--tw-font-weight: 500;
|
|
2692
2907
|
font-weight: 500;
|
|
2693
2908
|
color: var(--ga-color-text-action);
|
|
2909
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
2910
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
2911
|
+
transition-duration: var(--tw-duration, 0s);
|
|
2912
|
+
transition-duration: var(--ga-duration-instant);
|
|
2913
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2694
2914
|
&.ga-tabs__tab--selected {
|
|
2695
2915
|
border-color: var(--ga-color-border-action);
|
|
2696
2916
|
--tw-font-weight: 600;
|
|
@@ -2834,6 +3054,11 @@
|
|
|
2834
3054
|
--tw-border-style: dashed;
|
|
2835
3055
|
border-style: dashed;
|
|
2836
3056
|
background-color: var(--ga-color-surface-primary);
|
|
3057
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
3058
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
3059
|
+
transition-duration: var(--tw-duration, 0s);
|
|
3060
|
+
transition-duration: var(--ga-duration-instant);
|
|
3061
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2837
3062
|
&:hover {
|
|
2838
3063
|
background-color: var(--ga-color-surface-action-hover-2);
|
|
2839
3064
|
.ga-tag__icon {
|
|
@@ -2856,6 +3081,11 @@
|
|
|
2856
3081
|
border-style: solid;
|
|
2857
3082
|
background-color: var(--ga-color-surface-primary);
|
|
2858
3083
|
color: var(--ga-color-text-action);
|
|
3084
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
3085
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
3086
|
+
transition-duration: var(--tw-duration, 0s);
|
|
3087
|
+
transition-duration: var(--ga-duration-instant);
|
|
3088
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2859
3089
|
&:hover {
|
|
2860
3090
|
border-color: var(--ga-color-border-action-hover);
|
|
2861
3091
|
.ga-tag__icon {
|
|
@@ -2874,7 +3104,7 @@
|
|
|
2874
3104
|
color: var(--ga-color-icon-on-primary);
|
|
2875
3105
|
}
|
|
2876
3106
|
}
|
|
2877
|
-
&.ga-tag--utility-grey, &.ga-tag--utility-indigo, &.ga-tag--utility-teal, &.ga-tag--utility-lime, &.ga-tag--utility-purple, &.ga-tag--utility-pink, &.ga-tag--utility-rose, &.ga-tag--utility-
|
|
3107
|
+
&.ga-tag--utility-grey, &.ga-tag--utility-indigo, &.ga-tag--utility-teal, &.ga-tag--utility-lime, &.ga-tag--utility-purple, &.ga-tag--utility-pink, &.ga-tag--utility-rose, &.ga-tag--utility-blue, &.ga-tag--utility-green, &.ga-tag--utility-orange, &.ga-tag--utility-disabled {
|
|
2878
3108
|
border-radius: var(--ga-radius);
|
|
2879
3109
|
padding-left: calc(0.4rem * 1.5);
|
|
2880
3110
|
.ga-tag__icon {
|
|
@@ -2883,47 +3113,43 @@
|
|
|
2883
3113
|
}
|
|
2884
3114
|
&.ga-tag--utility-grey {
|
|
2885
3115
|
border-color: var(--ga-color-utility-grey);
|
|
2886
|
-
background-color: var(--ga-color-utility-grey-
|
|
3116
|
+
background-color: var(--ga-color-utility-grey-accent);
|
|
2887
3117
|
}
|
|
2888
3118
|
&.ga-tag--utility-indigo {
|
|
2889
3119
|
border-color: var(--ga-color-utility-indigo);
|
|
2890
|
-
background-color: var(--ga-color-utility-indigo-
|
|
3120
|
+
background-color: var(--ga-color-utility-indigo-accent);
|
|
2891
3121
|
}
|
|
2892
3122
|
&.ga-tag--utility-teal {
|
|
2893
3123
|
border-color: var(--ga-color-utility-teal);
|
|
2894
|
-
background-color: var(--ga-color-utility-teal-
|
|
3124
|
+
background-color: var(--ga-color-utility-teal-accent);
|
|
2895
3125
|
}
|
|
2896
3126
|
&.ga-tag--utility-lime {
|
|
2897
3127
|
border-color: var(--ga-color-utility-lime);
|
|
2898
|
-
background-color: var(--ga-color-utility-lime-
|
|
3128
|
+
background-color: var(--ga-color-utility-lime-accent);
|
|
2899
3129
|
}
|
|
2900
3130
|
&.ga-tag--utility-purple {
|
|
2901
3131
|
border-color: var(--ga-color-utility-purple);
|
|
2902
|
-
background-color: var(--ga-color-utility-purple-
|
|
3132
|
+
background-color: var(--ga-color-utility-purple-accent);
|
|
2903
3133
|
}
|
|
2904
3134
|
&.ga-tag--utility-pink {
|
|
2905
3135
|
border-color: var(--ga-color-utility-pink);
|
|
2906
|
-
background-color: var(--ga-color-utility-pink-
|
|
3136
|
+
background-color: var(--ga-color-utility-pink-accent);
|
|
2907
3137
|
}
|
|
2908
3138
|
&.ga-tag--utility-rose {
|
|
2909
3139
|
border-color: var(--ga-color-utility-rose);
|
|
2910
|
-
background-color: var(--ga-color-utility-rose-
|
|
2911
|
-
}
|
|
2912
|
-
&.ga-tag--utility-yellow {
|
|
2913
|
-
border-color: var(--ga-color-utility-yellow);
|
|
2914
|
-
background-color: var(--ga-color-utility-yellow-light);
|
|
3140
|
+
background-color: var(--ga-color-utility-rose-accent);
|
|
2915
3141
|
}
|
|
2916
3142
|
&.ga-tag--utility-blue {
|
|
2917
3143
|
border-color: var(--ga-color-utility-blue);
|
|
2918
|
-
background-color: var(--ga-color-utility-blue-
|
|
3144
|
+
background-color: var(--ga-color-utility-blue-accent);
|
|
2919
3145
|
}
|
|
2920
3146
|
&.ga-tag--utility-green {
|
|
2921
3147
|
border-color: var(--ga-color-utility-green);
|
|
2922
|
-
background-color: var(--ga-color-utility-green-
|
|
3148
|
+
background-color: var(--ga-color-utility-green-accent);
|
|
2923
3149
|
}
|
|
2924
3150
|
&.ga-tag--utility-orange {
|
|
2925
3151
|
border-color: var(--ga-color-utility-orange);
|
|
2926
|
-
background-color: var(--ga-color-utility-orange-
|
|
3152
|
+
background-color: var(--ga-color-utility-orange-accent);
|
|
2927
3153
|
}
|
|
2928
3154
|
&.ga-tag--utility-disabled {
|
|
2929
3155
|
border-color: var(--ga-color-border-disabled);
|
|
@@ -2964,10 +3190,15 @@
|
|
|
2964
3190
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
2965
3191
|
));
|
|
2966
3192
|
letter-spacing: var(--tw-tracking, calc(
|
|
2967
|
-
var(--ga-text-md-
|
|
3193
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
2968
3194
|
));
|
|
2969
3195
|
--tw-leading: calc(0.4rem * 6);
|
|
2970
3196
|
line-height: calc(0.4rem * 6);
|
|
3197
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
3198
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
3199
|
+
transition-duration: var(--tw-duration, 0s);
|
|
3200
|
+
transition-duration: var(--ga-duration-instant);
|
|
3201
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
2971
3202
|
&:hover {
|
|
2972
3203
|
border-color: var(--ga-color-border-action-hover);
|
|
2973
3204
|
}
|
|
@@ -2993,7 +3224,7 @@
|
|
|
2993
3224
|
}
|
|
2994
3225
|
}
|
|
2995
3226
|
}
|
|
2996
|
-
.ga-text-
|
|
3227
|
+
.ga-text-helper {
|
|
2997
3228
|
font-size: calc(
|
|
2998
3229
|
var(--ga-text-xs-font-size) * var(--ga-base-scaling-factor, 1)
|
|
2999
3230
|
);
|
|
@@ -3001,10 +3232,10 @@
|
|
|
3001
3232
|
var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
|
|
3002
3233
|
));
|
|
3003
3234
|
letter-spacing: var(--tw-tracking, calc(
|
|
3004
|
-
var(--ga-text-xs-
|
|
3235
|
+
var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
3005
3236
|
));
|
|
3006
3237
|
}
|
|
3007
|
-
.ga-text-
|
|
3238
|
+
.ga-text-caption {
|
|
3008
3239
|
font-size: calc(
|
|
3009
3240
|
var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
|
|
3010
3241
|
);
|
|
@@ -3013,7 +3244,7 @@
|
|
|
3013
3244
|
));
|
|
3014
3245
|
letter-spacing: var(--tw-tracking, 0);
|
|
3015
3246
|
}
|
|
3016
|
-
.ga-text-
|
|
3247
|
+
.ga-text-body {
|
|
3017
3248
|
font-size: calc(
|
|
3018
3249
|
var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
|
|
3019
3250
|
);
|
|
@@ -3021,10 +3252,10 @@
|
|
|
3021
3252
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
3022
3253
|
));
|
|
3023
3254
|
letter-spacing: var(--tw-tracking, calc(
|
|
3024
|
-
var(--ga-text-md-
|
|
3255
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
3025
3256
|
));
|
|
3026
3257
|
}
|
|
3027
|
-
.ga-text-
|
|
3258
|
+
.ga-text-heading {
|
|
3028
3259
|
font-size: calc(
|
|
3029
3260
|
var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
|
|
3030
3261
|
);
|
|
@@ -3032,10 +3263,10 @@
|
|
|
3032
3263
|
var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
|
|
3033
3264
|
));
|
|
3034
3265
|
letter-spacing: var(--tw-tracking, calc(
|
|
3035
|
-
var(--ga-text-lg-
|
|
3266
|
+
var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
3036
3267
|
));
|
|
3037
3268
|
}
|
|
3038
|
-
.ga-text-
|
|
3269
|
+
.ga-text-title {
|
|
3039
3270
|
font-size: calc(
|
|
3040
3271
|
var(--ga-text-xl-font-size) * var(--ga-base-scaling-factor, 1)
|
|
3041
3272
|
);
|
|
@@ -3043,10 +3274,10 @@
|
|
|
3043
3274
|
var(--ga-text-xl-line-height) * var(--ga-base-scaling-factor, 1)
|
|
3044
3275
|
));
|
|
3045
3276
|
letter-spacing: var(--tw-tracking, calc(
|
|
3046
|
-
var(--ga-text-xl-
|
|
3277
|
+
var(--ga-text-xl-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
3047
3278
|
));
|
|
3048
3279
|
}
|
|
3049
|
-
.ga-text-
|
|
3280
|
+
.ga-text-headline {
|
|
3050
3281
|
font-size: calc(
|
|
3051
3282
|
var(--ga-text-2xl-font-size) * var(--ga-base-scaling-factor, 1)
|
|
3052
3283
|
);
|
|
@@ -3054,10 +3285,10 @@
|
|
|
3054
3285
|
var(--ga-text-2xl-line-height) * var(--ga-base-scaling-factor, 1)
|
|
3055
3286
|
));
|
|
3056
3287
|
letter-spacing: var(--tw-tracking, calc(
|
|
3057
|
-
var(--ga-text-2xl-
|
|
3288
|
+
var(--ga-text-2xl-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
3058
3289
|
));
|
|
3059
3290
|
}
|
|
3060
|
-
.ga-text-
|
|
3291
|
+
.ga-text-display {
|
|
3061
3292
|
font-size: calc(
|
|
3062
3293
|
var(--ga-text-3xl-font-size) * var(--ga-base-scaling-factor, 1)
|
|
3063
3294
|
);
|
|
@@ -3065,7 +3296,7 @@
|
|
|
3065
3296
|
var(--ga-text-3xl-line-height) * var(--ga-base-scaling-factor, 1)
|
|
3066
3297
|
));
|
|
3067
3298
|
letter-spacing: var(--tw-tracking, calc(
|
|
3068
|
-
var(--ga-text-3xl-
|
|
3299
|
+
var(--ga-text-3xl-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
3069
3300
|
));
|
|
3070
3301
|
}
|
|
3071
3302
|
.ga-tooltip {
|
|
@@ -3081,7 +3312,7 @@
|
|
|
3081
3312
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
3082
3313
|
));
|
|
3083
3314
|
letter-spacing: var(--tw-tracking, calc(
|
|
3084
|
-
var(--ga-text-md-
|
|
3315
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
3085
3316
|
));
|
|
3086
3317
|
color: var(--ga-color-text-on-action);
|
|
3087
3318
|
&.ga-tooltip--top-start, &.ga-tooltip--top-center, &.ga-tooltip--top-end, &.ga-tooltip--bottom-start, &.ga-tooltip--bottom-center, &.ga-tooltip--bottom-end, &.ga-tooltip--left-start, &.ga-tooltip--left-center, &.ga-tooltip--left-end, &.ga-tooltip--right-start, &.ga-tooltip--right-center, &.ga-tooltip--right-end {
|
|
@@ -3090,7 +3321,6 @@
|
|
|
3090
3321
|
position: absolute;
|
|
3091
3322
|
}
|
|
3092
3323
|
&::before {
|
|
3093
|
-
content: var(--tw-content);
|
|
3094
3324
|
--tw-content: '';
|
|
3095
3325
|
content: var(--tw-content);
|
|
3096
3326
|
}
|
|
@@ -3129,8 +3359,8 @@
|
|
|
3129
3359
|
left: calc(0.4rem * 4);
|
|
3130
3360
|
}
|
|
3131
3361
|
&.ga-tooltip--top-center::before, &.ga-tooltip--bottom-center::before {
|
|
3132
|
-
left: calc(1/2 * 100%);
|
|
3133
|
-
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
3362
|
+
left: calc(1 / 2 * 100%);
|
|
3363
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
3134
3364
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3135
3365
|
}
|
|
3136
3366
|
&.ga-tooltip--top-end::before, &.ga-tooltip--bottom-end::before {
|
|
@@ -3158,8 +3388,8 @@
|
|
|
3158
3388
|
top: calc(0.4rem * 4);
|
|
3159
3389
|
}
|
|
3160
3390
|
&.ga-tooltip--left-center::before, &.ga-tooltip--right-center::before {
|
|
3161
|
-
top: calc(1/2 * 100%);
|
|
3162
|
-
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
3391
|
+
top: calc(1 / 2 * 100%);
|
|
3392
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
3163
3393
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3164
3394
|
}
|
|
3165
3395
|
&.ga-tooltip--left-end::before, &.ga-tooltip--right-end::before {
|
|
@@ -3188,7 +3418,7 @@
|
|
|
3188
3418
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
3189
3419
|
));
|
|
3190
3420
|
letter-spacing: var(--tw-tracking, calc(
|
|
3191
|
-
var(--ga-text-md-
|
|
3421
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
3192
3422
|
));
|
|
3193
3423
|
--tw-font-weight: 500;
|
|
3194
3424
|
font-weight: 500;
|
|
@@ -3196,6 +3426,11 @@
|
|
|
3196
3426
|
color: var(--ga-color-text-action);
|
|
3197
3427
|
--tw-numeric-spacing: tabular-nums;
|
|
3198
3428
|
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
3429
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
3430
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
3431
|
+
transition-duration: var(--tw-duration, 0s);
|
|
3432
|
+
transition-duration: var(--ga-duration-instant);
|
|
3433
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
3199
3434
|
&.ga-link--inline {
|
|
3200
3435
|
text-decoration-line: underline;
|
|
3201
3436
|
text-decoration-color: var(--ga-color-primary-90);
|
|
@@ -3220,7 +3455,7 @@
|
|
|
3220
3455
|
var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
|
|
3221
3456
|
));
|
|
3222
3457
|
letter-spacing: var(--tw-tracking, calc(
|
|
3223
|
-
var(--ga-text-lg-
|
|
3458
|
+
var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
3224
3459
|
));
|
|
3225
3460
|
}
|
|
3226
3461
|
&.ga-link--disabled {
|
|
@@ -3273,13 +3508,18 @@
|
|
|
3273
3508
|
var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
|
|
3274
3509
|
));
|
|
3275
3510
|
letter-spacing: var(--tw-tracking, calc(
|
|
3276
|
-
var(--ga-text-md-
|
|
3511
|
+
var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
|
|
3277
3512
|
));
|
|
3278
3513
|
--tw-leading: calc(0.4rem * 1);
|
|
3279
3514
|
line-height: calc(0.4rem * 1);
|
|
3280
3515
|
--tw-font-weight: 500;
|
|
3281
3516
|
font-weight: 500;
|
|
3282
3517
|
white-space: nowrap;
|
|
3518
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
3519
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
3520
|
+
transition-duration: var(--tw-duration, 0s);
|
|
3521
|
+
transition-duration: var(--ga-duration-instant);
|
|
3522
|
+
transition-timing-function: var(--ga-easing-standard);
|
|
3283
3523
|
border-style: var(--tw-border-style);
|
|
3284
3524
|
border-width: 1px;
|
|
3285
3525
|
border-color: var(--ga-color-border-action);
|
|
@@ -3366,6 +3606,11 @@
|
|
|
3366
3606
|
syntax: "*";
|
|
3367
3607
|
inherits: false;
|
|
3368
3608
|
}
|
|
3609
|
+
@property --tw-shadow-alpha {
|
|
3610
|
+
syntax: "<percentage>";
|
|
3611
|
+
inherits: false;
|
|
3612
|
+
initial-value: 100%;
|
|
3613
|
+
}
|
|
3369
3614
|
@property --tw-inset-shadow {
|
|
3370
3615
|
syntax: "*";
|
|
3371
3616
|
inherits: false;
|
|
@@ -3375,6 +3620,11 @@
|
|
|
3375
3620
|
syntax: "*";
|
|
3376
3621
|
inherits: false;
|
|
3377
3622
|
}
|
|
3623
|
+
@property --tw-inset-shadow-alpha {
|
|
3624
|
+
syntax: "<percentage>";
|
|
3625
|
+
inherits: false;
|
|
3626
|
+
initial-value: 100%;
|
|
3627
|
+
}
|
|
3378
3628
|
@property --tw-ring-color {
|
|
3379
3629
|
syntax: "*";
|
|
3380
3630
|
inherits: false;
|
|
@@ -3417,6 +3667,11 @@
|
|
|
3417
3667
|
inherits: false;
|
|
3418
3668
|
initial-value: solid;
|
|
3419
3669
|
}
|
|
3670
|
+
@property --tw-content {
|
|
3671
|
+
syntax: "*";
|
|
3672
|
+
inherits: false;
|
|
3673
|
+
initial-value: "";
|
|
3674
|
+
}
|
|
3420
3675
|
@property --tw-ordinal {
|
|
3421
3676
|
syntax: "*";
|
|
3422
3677
|
inherits: false;
|
|
@@ -3455,32 +3710,22 @@
|
|
|
3455
3710
|
@property --tw-rotate-x {
|
|
3456
3711
|
syntax: "*";
|
|
3457
3712
|
inherits: false;
|
|
3458
|
-
initial-value: rotateX(0);
|
|
3459
3713
|
}
|
|
3460
3714
|
@property --tw-rotate-y {
|
|
3461
3715
|
syntax: "*";
|
|
3462
3716
|
inherits: false;
|
|
3463
|
-
initial-value: rotateY(0);
|
|
3464
3717
|
}
|
|
3465
3718
|
@property --tw-rotate-z {
|
|
3466
3719
|
syntax: "*";
|
|
3467
3720
|
inherits: false;
|
|
3468
|
-
initial-value: rotateZ(0);
|
|
3469
3721
|
}
|
|
3470
3722
|
@property --tw-skew-x {
|
|
3471
3723
|
syntax: "*";
|
|
3472
3724
|
inherits: false;
|
|
3473
|
-
initial-value: skewX(0);
|
|
3474
3725
|
}
|
|
3475
3726
|
@property --tw-skew-y {
|
|
3476
3727
|
syntax: "*";
|
|
3477
3728
|
inherits: false;
|
|
3478
|
-
initial-value: skewY(0);
|
|
3479
|
-
}
|
|
3480
|
-
@property --tw-content {
|
|
3481
|
-
syntax: "*";
|
|
3482
|
-
inherits: false;
|
|
3483
|
-
initial-value: "";
|
|
3484
3729
|
}
|
|
3485
3730
|
@property --tw-gradient-position {
|
|
3486
3731
|
syntax: "*";
|
|
@@ -3524,7 +3769,50 @@
|
|
|
3524
3769
|
inherits: false;
|
|
3525
3770
|
initial-value: 100%;
|
|
3526
3771
|
}
|
|
3527
|
-
@
|
|
3528
|
-
|
|
3529
|
-
|
|
3772
|
+
@layer properties {
|
|
3773
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
3774
|
+
*, ::before, ::after, ::backdrop {
|
|
3775
|
+
--tw-border-style: solid;
|
|
3776
|
+
--tw-font-weight: initial;
|
|
3777
|
+
--tw-leading: initial;
|
|
3778
|
+
--tw-shadow: 0 0 #0000;
|
|
3779
|
+
--tw-shadow-color: initial;
|
|
3780
|
+
--tw-shadow-alpha: 100%;
|
|
3781
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
3782
|
+
--tw-inset-shadow-color: initial;
|
|
3783
|
+
--tw-inset-shadow-alpha: 100%;
|
|
3784
|
+
--tw-ring-color: initial;
|
|
3785
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
3786
|
+
--tw-inset-ring-color: initial;
|
|
3787
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
3788
|
+
--tw-ring-inset: initial;
|
|
3789
|
+
--tw-ring-offset-width: 0px;
|
|
3790
|
+
--tw-ring-offset-color: #fff;
|
|
3791
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
3792
|
+
--tw-outline-style: solid;
|
|
3793
|
+
--tw-content: "";
|
|
3794
|
+
--tw-ordinal: initial;
|
|
3795
|
+
--tw-slashed-zero: initial;
|
|
3796
|
+
--tw-numeric-figure: initial;
|
|
3797
|
+
--tw-numeric-spacing: initial;
|
|
3798
|
+
--tw-numeric-fraction: initial;
|
|
3799
|
+
--tw-translate-x: 0;
|
|
3800
|
+
--tw-translate-y: 0;
|
|
3801
|
+
--tw-translate-z: 0;
|
|
3802
|
+
--tw-rotate-x: initial;
|
|
3803
|
+
--tw-rotate-y: initial;
|
|
3804
|
+
--tw-rotate-z: initial;
|
|
3805
|
+
--tw-skew-x: initial;
|
|
3806
|
+
--tw-skew-y: initial;
|
|
3807
|
+
--tw-gradient-position: initial;
|
|
3808
|
+
--tw-gradient-from: #0000;
|
|
3809
|
+
--tw-gradient-via: #0000;
|
|
3810
|
+
--tw-gradient-to: #0000;
|
|
3811
|
+
--tw-gradient-stops: initial;
|
|
3812
|
+
--tw-gradient-via-stops: initial;
|
|
3813
|
+
--tw-gradient-from-position: 0%;
|
|
3814
|
+
--tw-gradient-via-position: 50%;
|
|
3815
|
+
--tw-gradient-to-position: 100%;
|
|
3816
|
+
}
|
|
3817
|
+
}
|
|
3530
3818
|
}
|