genesys-spark 4.92.0 → 4.93.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/css/flare/global.css.map +1 -1
- package/dist/css/flare/ui.css.map +1 -1
- package/dist/css/global-focusable.css +16 -16
- package/dist/css/global-focusable.css.map +1 -1
- package/dist/css/global-typography.css +150 -150
- package/dist/css/global-typography.css.map +1 -1
- package/dist/css/global.css +2026 -567
- package/dist/css/global.css.map +1 -1
- package/dist/css/legacy/global.css.map +1 -1
- package/dist/css/legacy/ui.css.map +1 -1
- package/dist/css/ui.css +2715 -1073
- package/dist/css/ui.css.map +1 -1
- package/dist/global.css +2026 -567
- package/dist/global.css.map +1 -1
- package/dist/index.js +3 -3
- package/dist/scss/_focus.scss +5 -22
- package/dist/scss/_mixins.scss +3 -7
- package/dist/scss/_typography.scss +85 -331
- package/dist/scss/global.scss +14 -2
- package/dist/scss/ui.scss +10 -9
- package/dist/ui.css +2715 -1073
- package/dist/ui.css.map +1 -1
- package/package.json +1 -1
|
@@ -5,316 +5,316 @@
|
|
|
5
5
|
/* Body Copy */
|
|
6
6
|
/* Anchor */
|
|
7
7
|
h1 {
|
|
8
|
-
font-family: var(--gse-
|
|
9
|
-
font-size: var(--gse-
|
|
10
|
-
line-height: var(--gse-
|
|
11
|
-
font-weight: var(--gse-
|
|
8
|
+
font-family: var(--gse-semantic-heading-xl-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
9
|
+
font-size: var(--gse-semantic-heading-xl-bold-fontSize);
|
|
10
|
+
line-height: var(--gse-semantic-heading-xl-bold-lineHeight);
|
|
11
|
+
font-weight: var(--gse-semantic-heading-xl-bold-fontWeight);
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
h2 {
|
|
15
|
-
font-family: var(--gse-
|
|
16
|
-
font-size: var(--gse-
|
|
17
|
-
line-height: var(--gse-
|
|
18
|
-
font-weight: var(--gse-
|
|
15
|
+
font-family: var(--gse-semantic-heading-lg-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
16
|
+
font-size: var(--gse-semantic-heading-lg-bold-fontSize);
|
|
17
|
+
line-height: var(--gse-semantic-heading-lg-bold-lineHeight);
|
|
18
|
+
font-weight: var(--gse-semantic-heading-lg-bold-fontWeight);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
h3 {
|
|
22
|
-
font-family: var(--gse-
|
|
23
|
-
font-size: var(--gse-
|
|
24
|
-
line-height: var(--gse-
|
|
25
|
-
font-weight: var(--gse-
|
|
22
|
+
font-family: var(--gse-semantic-heading-md-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
23
|
+
font-size: var(--gse-semantic-heading-md-bold-fontSize);
|
|
24
|
+
line-height: var(--gse-semantic-heading-md-bold-lineHeight);
|
|
25
|
+
font-weight: var(--gse-semantic-heading-md-bold-fontWeight);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
h4,
|
|
29
29
|
h5,
|
|
30
30
|
h6 {
|
|
31
|
-
font-family: var(--gse-
|
|
32
|
-
font-size: var(--gse-
|
|
33
|
-
line-height: var(--gse-
|
|
34
|
-
font-weight: var(--gse-
|
|
31
|
+
font-family: var(--gse-semantic-heading-sm-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
32
|
+
font-size: var(--gse-semantic-heading-sm-bold-fontSize);
|
|
33
|
+
line-height: var(--gse-semantic-heading-sm-bold-lineHeight);
|
|
34
|
+
font-weight: var(--gse-semantic-heading-sm-bold-fontWeight);
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.gux-heading-xl,
|
|
38
38
|
.gux-heading-xl-bold {
|
|
39
|
-
font-family: var(--gse-
|
|
40
|
-
font-size: var(--gse-
|
|
41
|
-
line-height: var(--gse-
|
|
42
|
-
font-weight: var(--gse-
|
|
39
|
+
font-family: var(--gse-semantic-heading-xl-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
40
|
+
font-size: var(--gse-semantic-heading-xl-bold-fontSize);
|
|
41
|
+
line-height: var(--gse-semantic-heading-xl-bold-lineHeight);
|
|
42
|
+
font-weight: var(--gse-semantic-heading-xl-bold-fontWeight);
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
.gux-heading-xl-semibold {
|
|
46
|
-
font-family: var(--gse-
|
|
47
|
-
font-size: var(--gse-
|
|
48
|
-
line-height: var(--gse-
|
|
49
|
-
font-weight: var(--gse-
|
|
46
|
+
font-family: var(--gse-semantic-heading-xl-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
47
|
+
font-size: var(--gse-semantic-heading-xl-bold-fontSize);
|
|
48
|
+
line-height: var(--gse-semantic-heading-xl-bold-lineHeight);
|
|
49
|
+
font-weight: var(--gse-semantic-heading-lg-semiBold-fontWeight);
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
.gux-heading-lg,
|
|
53
53
|
.gux-heading-lg-bold {
|
|
54
|
-
font-family: var(--gse-
|
|
55
|
-
font-size: var(--gse-
|
|
56
|
-
line-height: var(--gse-
|
|
57
|
-
font-weight: var(--gse-
|
|
54
|
+
font-family: var(--gse-semantic-heading-lg-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
55
|
+
font-size: var(--gse-semantic-heading-lg-bold-fontSize);
|
|
56
|
+
line-height: var(--gse-semantic-heading-lg-bold-lineHeight);
|
|
57
|
+
font-weight: var(--gse-semantic-heading-lg-bold-fontWeight);
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
.gux-heading-lg-semibold {
|
|
61
|
-
font-family: var(--gse-
|
|
62
|
-
font-size: var(--gse-
|
|
63
|
-
line-height: var(--gse-
|
|
64
|
-
font-weight: var(--gse-
|
|
61
|
+
font-family: var(--gse-semantic-heading-lg-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
62
|
+
font-size: var(--gse-semantic-heading-lg-bold-fontSize);
|
|
63
|
+
line-height: var(--gse-semantic-heading-lg-bold-lineHeight);
|
|
64
|
+
font-weight: var(--gse-semantic-heading-lg-semiBold-fontWeight);
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.gux-heading-md,
|
|
68
68
|
.gux-heading-md-bold {
|
|
69
|
-
font-family: var(--gse-
|
|
70
|
-
font-size: var(--gse-
|
|
71
|
-
line-height: var(--gse-
|
|
72
|
-
font-weight: var(--gse-
|
|
69
|
+
font-family: var(--gse-semantic-heading-md-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
70
|
+
font-size: var(--gse-semantic-heading-md-bold-fontSize);
|
|
71
|
+
line-height: var(--gse-semantic-heading-md-bold-lineHeight);
|
|
72
|
+
font-weight: var(--gse-semantic-heading-md-bold-fontWeight);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
.gux-heading-md-semibold {
|
|
76
|
-
font-family: var(--gse-
|
|
77
|
-
font-size: var(--gse-
|
|
78
|
-
line-height: var(--gse-
|
|
79
|
-
font-weight: var(--gse-
|
|
76
|
+
font-family: var(--gse-semantic-heading-md-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
77
|
+
font-size: var(--gse-semantic-heading-md-bold-fontSize);
|
|
78
|
+
line-height: var(--gse-semantic-heading-md-bold-lineHeight);
|
|
79
|
+
font-weight: var(--gse-semantic-heading-md-semiBold-fontWeight);
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
.gux-heading-sm,
|
|
83
83
|
.gux-heading-sm-bold {
|
|
84
|
-
font-family: var(--gse-
|
|
85
|
-
font-size: var(--gse-
|
|
86
|
-
line-height: var(--gse-
|
|
87
|
-
font-weight: var(--gse-
|
|
84
|
+
font-family: var(--gse-semantic-heading-sm-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
85
|
+
font-size: var(--gse-semantic-heading-sm-bold-fontSize);
|
|
86
|
+
line-height: var(--gse-semantic-heading-sm-bold-lineHeight);
|
|
87
|
+
font-weight: var(--gse-semantic-heading-sm-bold-fontWeight);
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
.gux-heading-sm-semibold {
|
|
91
|
-
font-family: var(--gse-
|
|
92
|
-
font-size: var(--gse-
|
|
93
|
-
line-height: var(--gse-
|
|
94
|
-
font-weight: var(--gse-
|
|
91
|
+
font-family: var(--gse-semantic-heading-sm-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
92
|
+
font-size: var(--gse-semantic-heading-sm-bold-fontSize);
|
|
93
|
+
line-height: var(--gse-semantic-heading-sm-bold-lineHeight);
|
|
94
|
+
font-weight: var(--gse-semantic-heading-sm-semiBold-fontWeight);
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.gux-heading-xs,
|
|
98
98
|
.gux-heading-xs-bold {
|
|
99
|
-
font-family: var(--gse-
|
|
100
|
-
font-size: var(--gse-
|
|
101
|
-
line-height: var(--gse-
|
|
102
|
-
font-weight: var(--gse-
|
|
99
|
+
font-family: var(--gse-semantic-heading-xs-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
100
|
+
font-size: var(--gse-semantic-heading-xs-bold-fontSize);
|
|
101
|
+
line-height: var(--gse-semantic-heading-xs-bold-lineHeight);
|
|
102
|
+
font-weight: var(--gse-semantic-heading-xs-bold-fontWeight);
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
.gux-heading-xs-semibold {
|
|
106
|
-
font-family: var(--gse-
|
|
107
|
-
font-size: var(--gse-
|
|
108
|
-
line-height: var(--gse-
|
|
109
|
-
font-weight: var(--gse-
|
|
106
|
+
font-family: var(--gse-semantic-heading-xs-bold-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
107
|
+
font-size: var(--gse-semantic-heading-xs-bold-fontSize);
|
|
108
|
+
line-height: var(--gse-semantic-heading-xs-bold-lineHeight);
|
|
109
|
+
font-weight: var(--gse-semantic-heading-xs-semiBold-fontWeight);
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
.gux-heading-subheading-regular {
|
|
113
|
-
font-family: var(--gse-
|
|
114
|
-
font-size: var(--gse-
|
|
115
|
-
line-height: var(--gse-
|
|
116
|
-
font-weight: var(--gse-
|
|
113
|
+
font-family: var(--gse-semantic-subheading-regular-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
114
|
+
font-size: var(--gse-semantic-subheading-regular-fontSize);
|
|
115
|
+
line-height: var(--gse-semantic-subheading-regular-lineHeight);
|
|
116
|
+
font-weight: var(--gse-semantic-subheading-regular-fontWeight);
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
.gux-heading-subheading,
|
|
120
120
|
.gux-heading-subheading-bold {
|
|
121
|
-
font-family: var(--gse-
|
|
122
|
-
font-size: var(--gse-
|
|
123
|
-
line-height: var(--gse-
|
|
124
|
-
font-weight: var(--gse-
|
|
121
|
+
font-family: var(--gse-semantic-subheading-regular-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
122
|
+
font-size: var(--gse-semantic-subheading-regular-fontSize);
|
|
123
|
+
line-height: var(--gse-semantic-subheading-regular-lineHeight);
|
|
124
|
+
font-weight: var(--gse-semantic-subheading-bold-fontWeight);
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
.gux-heading-subheading-semibold {
|
|
128
|
-
font-family: var(--gse-
|
|
129
|
-
font-size: var(--gse-
|
|
130
|
-
line-height: var(--gse-
|
|
131
|
-
font-weight: var(--gse-
|
|
128
|
+
font-family: var(--gse-semantic-subheading-regular-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
129
|
+
font-size: var(--gse-semantic-subheading-regular-fontSize);
|
|
130
|
+
line-height: var(--gse-semantic-subheading-regular-lineHeight);
|
|
131
|
+
font-weight: var(--gse-semantic-subheading-semiBold-fontWeight);
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
.gux-heading-overline {
|
|
135
|
-
font-family: var(--gse-
|
|
136
|
-
font-size: var(--gse-
|
|
137
|
-
line-height: var(--gse-
|
|
138
|
-
text-transform: var(--gse-
|
|
139
|
-
letter-spacing: var(--gse-
|
|
140
|
-
font-weight: var(--gse-
|
|
135
|
+
font-family: var(--gse-semantic-heading-overline-fontFamily), var(--gse-semantic-theme-fontFamily-headings), sans-serif;
|
|
136
|
+
font-size: var(--gse-semantic-heading-overline-fontSize);
|
|
137
|
+
line-height: var(--gse-semantic-heading-overline-lineHeight);
|
|
138
|
+
text-transform: var(--gse-semantic-heading-overline-textCase);
|
|
139
|
+
letter-spacing: var(--gse-semantic-heading-overline-letterSpacing);
|
|
140
|
+
font-weight: var(--gse-semantic-heading-overline-fontWeight);
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
body {
|
|
144
|
-
font-family: var(--gse-
|
|
145
|
-
font-size: var(--gse-
|
|
146
|
-
line-height: var(--gse-
|
|
147
|
-
font-weight: var(--gse-
|
|
144
|
+
font-family: var(--gse-semantic-body-sm-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
145
|
+
font-size: var(--gse-semantic-body-sm-regular-fontSize);
|
|
146
|
+
line-height: var(--gse-semantic-body-sm-regular-lineHeight);
|
|
147
|
+
font-weight: var(--gse-semantic-body-sm-regular-fontWeight);
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
.gux-body-lg-regular {
|
|
151
|
-
font-family: var(--gse-
|
|
152
|
-
font-size: var(--gse-
|
|
153
|
-
line-height: var(--gse-
|
|
154
|
-
font-weight: var(--gse-
|
|
151
|
+
font-family: var(--gse-semantic-body-lg-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
152
|
+
font-size: var(--gse-semantic-body-lg-regular-fontSize);
|
|
153
|
+
line-height: var(--gse-semantic-body-lg-regular-lineHeight);
|
|
154
|
+
font-weight: var(--gse-semantic-body-lg-regular-fontWeight);
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
.gux-body-lg-semibold {
|
|
158
|
-
font-family: var(--gse-
|
|
159
|
-
font-size: var(--gse-
|
|
160
|
-
line-height: var(--gse-
|
|
161
|
-
font-weight: var(--gse-
|
|
158
|
+
font-family: var(--gse-semantic-body-lg-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
159
|
+
font-size: var(--gse-semantic-body-lg-regular-fontSize);
|
|
160
|
+
line-height: var(--gse-semantic-body-lg-regular-lineHeight);
|
|
161
|
+
font-weight: var(--gse-semantic-body-lg-semiBold-fontWeight);
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
.gux-body-lg-bold {
|
|
165
|
-
font-family: var(--gse-
|
|
166
|
-
font-size: var(--gse-
|
|
167
|
-
line-height: var(--gse-
|
|
168
|
-
font-weight: var(--gse-
|
|
165
|
+
font-family: var(--gse-semantic-body-lg-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
166
|
+
font-size: var(--gse-semantic-body-lg-regular-fontSize);
|
|
167
|
+
line-height: var(--gse-semantic-body-lg-regular-lineHeight);
|
|
168
|
+
font-weight: var(--gse-semantic-body-lg-bold-fontWeight);
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
.gux-body-md-regular {
|
|
172
|
-
font-family: var(--gse-
|
|
173
|
-
font-size: var(--gse-
|
|
174
|
-
line-height: var(--gse-
|
|
175
|
-
font-weight: var(--gse-
|
|
172
|
+
font-family: var(--gse-semantic-body-md-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
173
|
+
font-size: var(--gse-semantic-body-md-regular-fontSize);
|
|
174
|
+
line-height: var(--gse-semantic-body-md-regular-lineHeight);
|
|
175
|
+
font-weight: var(--gse-semantic-body-md-regular-fontWeight);
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
.gux-body-md-semibold {
|
|
179
|
-
font-family: var(--gse-
|
|
180
|
-
font-size: var(--gse-
|
|
181
|
-
line-height: var(--gse-
|
|
182
|
-
font-weight: var(--gse-
|
|
179
|
+
font-family: var(--gse-semantic-body-md-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
180
|
+
font-size: var(--gse-semantic-body-md-regular-fontSize);
|
|
181
|
+
line-height: var(--gse-semantic-body-md-regular-lineHeight);
|
|
182
|
+
font-weight: var(--gse-semantic-body-md-semiBold-fontWeight);
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
.gux-body-md-bold {
|
|
186
|
-
font-family: var(--gse-
|
|
187
|
-
font-size: var(--gse-
|
|
188
|
-
line-height: var(--gse-
|
|
189
|
-
font-weight: var(--gse-
|
|
186
|
+
font-family: var(--gse-semantic-body-md-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
187
|
+
font-size: var(--gse-semantic-body-md-regular-fontSize);
|
|
188
|
+
line-height: var(--gse-semantic-body-md-regular-lineHeight);
|
|
189
|
+
font-weight: var(--gse-semantic-body-md-bold-fontWeight);
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
.gux-body-sm-regular {
|
|
193
|
-
font-family: var(--gse-
|
|
194
|
-
font-size: var(--gse-
|
|
195
|
-
line-height: var(--gse-
|
|
196
|
-
font-weight: var(--gse-
|
|
193
|
+
font-family: var(--gse-semantic-body-sm-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
194
|
+
font-size: var(--gse-semantic-body-sm-regular-fontSize);
|
|
195
|
+
line-height: var(--gse-semantic-body-sm-regular-lineHeight);
|
|
196
|
+
font-weight: var(--gse-semantic-body-sm-regular-fontWeight);
|
|
197
197
|
}
|
|
198
198
|
|
|
199
199
|
.gux-body-sm-semibold {
|
|
200
|
-
font-family: var(--gse-
|
|
201
|
-
font-size: var(--gse-
|
|
202
|
-
line-height: var(--gse-
|
|
203
|
-
font-weight: var(--gse-
|
|
200
|
+
font-family: var(--gse-semantic-body-sm-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
201
|
+
font-size: var(--gse-semantic-body-sm-regular-fontSize);
|
|
202
|
+
line-height: var(--gse-semantic-body-sm-regular-lineHeight);
|
|
203
|
+
font-weight: var(--gse-semantic-body-sm-semiBold-fontWeight);
|
|
204
204
|
}
|
|
205
205
|
|
|
206
206
|
.gux-body-sm-bold {
|
|
207
|
-
font-family: var(--gse-
|
|
208
|
-
font-size: var(--gse-
|
|
209
|
-
line-height: var(--gse-
|
|
210
|
-
font-weight: var(--gse-
|
|
207
|
+
font-family: var(--gse-semantic-body-sm-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
208
|
+
font-size: var(--gse-semantic-body-sm-regular-fontSize);
|
|
209
|
+
line-height: var(--gse-semantic-body-sm-regular-lineHeight);
|
|
210
|
+
font-weight: var(--gse-semantic-body-sm-bold-fontWeight);
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
.gux-ui-button {
|
|
214
|
-
font-family: var(--gse-
|
|
215
|
-
font-size: var(--gse-
|
|
214
|
+
font-family: var(--gse-semantic-body-md-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
215
|
+
font-size: var(--gse-semantic-body-md-regular-fontSize);
|
|
216
216
|
font-weight: var(--gse-core-fontWeight-semiBold);
|
|
217
|
-
line-height: var(--gse-
|
|
217
|
+
line-height: var(--gse-semantic-body-md-regular-lineHeight);
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
.gux-ui-link {
|
|
221
|
-
font-family: var(--gse-
|
|
222
|
-
font-size: var(--gse-
|
|
221
|
+
font-family: var(--gse-semantic-body-md-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
222
|
+
font-size: var(--gse-semantic-body-md-regular-fontSize);
|
|
223
223
|
font-weight: var(--gse-core-fontWeight-regular);
|
|
224
|
-
line-height: var(--gse-
|
|
224
|
+
line-height: var(--gse-semantic-body-md-regular-lineHeight);
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
.gux-ui-label {
|
|
228
|
-
font-family: var(--gse-
|
|
229
|
-
font-size: var(--gse-
|
|
228
|
+
font-family: var(--gse-semantic-body-sm-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
229
|
+
font-size: var(--gse-semantic-body-sm-regular-fontSize);
|
|
230
230
|
font-weight: var(--gse-core-fontWeight-bold);
|
|
231
|
-
line-height: var(--gse-
|
|
231
|
+
line-height: var(--gse-semantic-body-sm-regular-lineHeight);
|
|
232
232
|
}
|
|
233
233
|
|
|
234
234
|
.gux-ui-placeholder {
|
|
235
|
-
font-family: var(--gse-
|
|
236
|
-
font-size: var(--gse-
|
|
235
|
+
font-family: var(--gse-semantic-body-sm-regular-fontFamily), var(--gse-semantic-theme-fontFamily-body), sans-serif;
|
|
236
|
+
font-size: var(--gse-semantic-body-sm-regular-fontSize);
|
|
237
237
|
font-weight: var(--gse-core-fontWeight-regular);
|
|
238
|
-
line-height: var(--gse-
|
|
238
|
+
line-height: var(--gse-semantic-body-sm-regular-lineHeight);
|
|
239
239
|
}
|
|
240
240
|
|
|
241
241
|
a {
|
|
242
|
-
color: var(--gse-ui-
|
|
242
|
+
color: var(--gse-ui-links-default-foregroundColor);
|
|
243
243
|
text-decoration: underline;
|
|
244
244
|
border-radius: var(--gse-ui-links-borderRadius);
|
|
245
245
|
}
|
|
246
246
|
a:hover {
|
|
247
|
-
color: var(--gse-ui-
|
|
247
|
+
color: var(--gse-ui-links-hover-foregroundColor);
|
|
248
248
|
}
|
|
249
249
|
a:active {
|
|
250
|
-
color: var(--gse-ui-
|
|
250
|
+
color: var(--gse-ui-links-active-foregroundColor);
|
|
251
251
|
}
|
|
252
252
|
a:visited {
|
|
253
|
-
color: var(--gse-ui-
|
|
253
|
+
color: var(--gse-ui-links-visited-foregroundColor);
|
|
254
254
|
}
|
|
255
255
|
a:focus-visible {
|
|
256
|
-
outline: var(--gse-semantic-
|
|
257
|
-
outline-offset: var(--gse-semantic-
|
|
256
|
+
outline: var(--gse-semantic-border-focus) solid var(--gse-semantic-focusOutline-md-borderWidth);
|
|
257
|
+
outline-offset: var(--gse-semantic-focusOutline-offset);
|
|
258
258
|
}
|
|
259
259
|
|
|
260
260
|
table a {
|
|
261
|
-
color: var(--gse-ui-
|
|
261
|
+
color: var(--gse-ui-links-default-foregroundColor);
|
|
262
262
|
text-decoration: underline;
|
|
263
263
|
border-radius: var(--gse-ui-links-borderRadius);
|
|
264
264
|
}
|
|
265
265
|
table a:hover {
|
|
266
|
-
color: var(--gse-ui-
|
|
266
|
+
color: var(--gse-ui-links-hover-foregroundColor);
|
|
267
267
|
}
|
|
268
268
|
table a:active {
|
|
269
|
-
color: var(--gse-ui-
|
|
269
|
+
color: var(--gse-ui-links-active-foregroundColor);
|
|
270
270
|
}
|
|
271
271
|
table a:visited {
|
|
272
|
-
color: var(--gse-ui-
|
|
272
|
+
color: var(--gse-ui-links-visited-foregroundColor);
|
|
273
273
|
}
|
|
274
274
|
table a:focus-visible {
|
|
275
|
-
outline: var(--gse-semantic-
|
|
276
|
-
outline-offset: var(--gse-semantic-
|
|
275
|
+
outline: var(--gse-semantic-border-focus) solid var(--gse-semantic-focusOutline-md-borderWidth);
|
|
276
|
+
outline-offset: var(--gse-semantic-focusOutline-offset);
|
|
277
277
|
}
|
|
278
278
|
table a {
|
|
279
279
|
text-decoration: none;
|
|
280
280
|
}
|
|
281
281
|
|
|
282
282
|
.gux-ui-anchor {
|
|
283
|
-
color: var(--gse-ui-
|
|
283
|
+
color: var(--gse-ui-links-default-foregroundColor);
|
|
284
284
|
text-decoration: underline;
|
|
285
285
|
border-radius: var(--gse-ui-links-borderRadius);
|
|
286
286
|
}
|
|
287
287
|
.gux-ui-anchor:hover {
|
|
288
|
-
color: var(--gse-ui-
|
|
288
|
+
color: var(--gse-ui-links-hover-foregroundColor);
|
|
289
289
|
}
|
|
290
290
|
.gux-ui-anchor:active {
|
|
291
|
-
color: var(--gse-ui-
|
|
291
|
+
color: var(--gse-ui-links-active-foregroundColor);
|
|
292
292
|
}
|
|
293
293
|
.gux-ui-anchor:visited {
|
|
294
|
-
color: var(--gse-ui-
|
|
294
|
+
color: var(--gse-ui-links-visited-foregroundColor);
|
|
295
295
|
}
|
|
296
296
|
.gux-ui-anchor:focus-visible {
|
|
297
|
-
outline: var(--gse-semantic-
|
|
298
|
-
outline-offset: var(--gse-semantic-
|
|
297
|
+
outline: var(--gse-semantic-border-focus) solid var(--gse-semantic-focusOutline-md-borderWidth);
|
|
298
|
+
outline-offset: var(--gse-semantic-focusOutline-offset);
|
|
299
299
|
}
|
|
300
300
|
|
|
301
301
|
.gux-anchor-table {
|
|
302
|
-
color: var(--gse-ui-
|
|
302
|
+
color: var(--gse-ui-links-default-foregroundColor);
|
|
303
303
|
text-decoration: underline;
|
|
304
304
|
border-radius: var(--gse-ui-links-borderRadius);
|
|
305
305
|
}
|
|
306
306
|
.gux-anchor-table:hover {
|
|
307
|
-
color: var(--gse-ui-
|
|
307
|
+
color: var(--gse-ui-links-hover-foregroundColor);
|
|
308
308
|
}
|
|
309
309
|
.gux-anchor-table:active {
|
|
310
|
-
color: var(--gse-ui-
|
|
310
|
+
color: var(--gse-ui-links-active-foregroundColor);
|
|
311
311
|
}
|
|
312
312
|
.gux-anchor-table:visited {
|
|
313
|
-
color: var(--gse-ui-
|
|
313
|
+
color: var(--gse-ui-links-visited-foregroundColor);
|
|
314
314
|
}
|
|
315
315
|
.gux-anchor-table:focus-visible {
|
|
316
|
-
outline: var(--gse-semantic-
|
|
317
|
-
outline-offset: var(--gse-semantic-
|
|
316
|
+
outline: var(--gse-semantic-border-focus) solid var(--gse-semantic-focusOutline-md-borderWidth);
|
|
317
|
+
outline-offset: var(--gse-semantic-focusOutline-offset);
|
|
318
318
|
}
|
|
319
319
|
.gux-anchor-table {
|
|
320
320
|
text-decoration: none;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/style/_typography.scss","../../src/style/global-typography.scss","../../src/style/_focus.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;AAIA;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/style/_typography.scss","../../src/style/global-typography.scss","../../src/style/_focus.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;AAIA;AAkKA;AA4GA;AChRA;EDIE;EAEA;EACA;EAkDA;;;ACrDF;EDOE;EAEA;EACA;EA2DA;;;ACjEF;EDUE;EAEA;EACA;EAoEA;;;AC7EF;AAAA;AAAA;EDaE;EAEA;EACA;EA6EA;;;ACvFF;AAAA;EDdE;EAEA;EACA;EAkDA;;;AClCF;EDnBE;EAEA;EACA;EAwDA;;;ACpCF;AAAA;EDhBE;EAEA;EACA;EA2DA;;;ACzCF;EDrBE;EAEA;EACA;EAiEA;;;AC3CF;AAAA;EDlBE;EAEA;EACA;EAoEA;;;AChDF;EDvBE;EAEA;EACA;EA0EA;;;AClDF;AAAA;EDpBE;EAEA;EACA;EA6EA;;;ACvDF;EDzBE;EAEA;EACA;EAmFA;;;ACzDF;AAAA;EDtBE;EAEA;EACA;EAsFA;;;AC9DF;ED3BE;EAEA;EACA;EA4FA;;;AChEF;EDxBE;EAEA;EACA;EA2GA;;;AClFF;AAAA;ED5BE;EAEA;EACA;EA+FA;;;ACjEF;EDjCE;EAEA;EACA;EAqGA;;;ACnEF;ED9BE;EAEA;EACA;EACA;EACA;EA4GA;;;AC7EF;EDkGE;EAEA;EACA;EA0CA;;;AC3IF;EDgFE;EAEA;EACA;EAoBA;;;ACnGF;ED4EE;EAEA;EACA;EA0BA;;;ACrGF;EDwEE;EAEA;EACA;EAgCA;;;ACvGF;ED2EE;EAEA;EACA;EA+BA;;;ACzGF;EDuEE;EAEA;EACA;EAqCA;;;AC3GF;EDmEE;EAEA;EACA;EA2CA;;;AC7GF;EDsEE;EAEA;EACA;EA0CA;;;AC/GF;EDkEE;EAEA;EACA;EAgDA;;;ACjHF;ED8DE;EAEA;EACA;EAsDA;;;ACjHF;EDqHE;EAEA;EACA;EACA;;;ACrHF;EDyHE;EAEA;EACA;EACA;;;ACzHF;ED6HE;EAEA;EACA;EACA;;;AC7HF;EDiIE;EAEA;EACA;EACA;;;AC/HF;EDoIE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EErSA;EAEA;;;ADmJF;EDgIE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EErSA;EAEA;;AF4SA;EACE;;;ACtJJ;ED4HE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EErSA;EAEA;;;AD2JF;EDwHE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EErSA;EAEA;;AF4SA;EACE;;;AC7IF;EACE","file":"global-typography.css"}
|