@spectrum-web-components/styles 0.41.1 → 0.41.2
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/express/spectrum-core-global.css +127 -244
- package/express/spectrum-scale-large.css +2 -2
- package/express/spectrum-scale-medium.css +2 -2
- package/express/spectrum-theme-dark.css +19 -50
- package/express/spectrum-theme-light.css +19 -50
- package/package.json +6 -6
- package/spectrum-core-global.css +129 -251
- package/spectrum-scale-large.css +2 -2
- package/spectrum-scale-medium.css +2 -2
- package/spectrum-theme-dark.css +14 -25
- package/spectrum-theme-darkest.css +14 -24
- package/spectrum-theme-light.css +14 -24
- package/spectrum-theme-lightest.css +14 -14
- package/src/spectrum-base.css.dev.js +1 -5
- package/src/spectrum-base.css.dev.js.map +2 -2
- package/src/spectrum-base.css.js +1 -5
- package/src/spectrum-base.css.js.map +2 -2
- package/src/spectrum-body.css +59 -35
- package/src/spectrum-body.css.dev.js +1 -71
- package/src/spectrum-body.css.dev.js.map +2 -2
- package/src/spectrum-body.css.js +1 -71
- package/src/spectrum-body.css.js.map +2 -2
- package/src/spectrum-code.css +42 -27
- package/src/spectrum-code.css.dev.js +1 -37
- package/src/spectrum-code.css.dev.js.map +2 -2
- package/src/spectrum-code.css.js +1 -37
- package/src/spectrum-code.css.js.map +2 -2
- package/src/spectrum-detail.css +86 -55
- package/src/spectrum-detail.css.dev.js +1 -119
- package/src/spectrum-detail.css.dev.js.map +2 -2
- package/src/spectrum-detail.css.js +1 -119
- package/src/spectrum-detail.css.js.map +2 -2
- package/src/spectrum-heading.css +146 -99
- package/src/spectrum-heading.css.dev.js +1 -169
- package/src/spectrum-heading.css.dev.js.map +2 -2
- package/src/spectrum-heading.css.js +1 -169
- package/src/spectrum-heading.css.js.map +2 -2
- package/src/spectrum-lang.css +146 -116
- package/src/spectrum-lang.css.dev.js +1 -137
- package/src/spectrum-lang.css.dev.js.map +2 -2
- package/src/spectrum-lang.css.js +1 -137
- package/src/spectrum-lang.css.js.map +2 -2
- package/src/spectrum-typography.css +11 -8
- package/src/spectrum-typography.css.dev.js +1 -9
- package/src/spectrum-typography.css.dev.js.map +2 -2
- package/src/spectrum-typography.css.js +1 -9
- package/src/spectrum-typography.css.js.map +2 -2
- package/tokens/global-vars.css +12 -0
- package/tokens/large-vars.css +0 -12
- package/tokens/medium-vars.css +0 -12
- package/tokens/spectrum/global-vars.css +2 -0
- package/tokens/spectrum/large-vars.css +0 -2
- package/tokens/spectrum/medium-vars.css +0 -2
- package/typography.css +335 -240
package/typography.css
CHANGED
|
@@ -9,8 +9,8 @@ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTA
|
|
|
9
9
|
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
10
|
governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
|
-
:
|
|
13
|
-
:
|
|
12
|
+
:root,
|
|
13
|
+
:host {
|
|
14
14
|
--spectrum-font-family-ar: myriad-arabic, adobe-clean, 'Source Sans Pro',
|
|
15
15
|
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu,
|
|
16
16
|
'Trebuchet MS', 'Lucida Grande', sans-serif;
|
|
@@ -21,15 +21,18 @@ governing permissions and limitations under the License.
|
|
|
21
21
|
--spectrum-font-style: var(--spectrum-default-font-style);
|
|
22
22
|
--spectrum-font-size: var(--spectrum-font-size-100);
|
|
23
23
|
font-family: var(--spectrum-font-family);
|
|
24
|
-
font-size: var(--spectrum-font-size);
|
|
25
24
|
font-style: var(--spectrum-font-style);
|
|
25
|
+
font-size: var(--spectrum-font-size);
|
|
26
26
|
}
|
|
27
|
+
|
|
27
28
|
.spectrum:lang(ar) {
|
|
28
29
|
font-family: var(--spectrum-font-family-ar);
|
|
29
30
|
}
|
|
31
|
+
|
|
30
32
|
.spectrum:lang(he) {
|
|
31
33
|
font-family: var(--spectrum-font-family-he);
|
|
32
34
|
}
|
|
35
|
+
|
|
33
36
|
.spectrum-Heading {
|
|
34
37
|
--spectrum-heading-sans-serif-font-family: var(
|
|
35
38
|
--spectrum-sans-font-family-stack
|
|
@@ -49,48 +52,52 @@ governing permissions and limitations under the License.
|
|
|
49
52
|
var(--spectrum-heading-margin-bottom-multiplier)
|
|
50
53
|
);
|
|
51
54
|
}
|
|
55
|
+
|
|
52
56
|
.spectrum-Heading--sizeXXS {
|
|
53
57
|
--spectrum-heading-font-size: var(--spectrum-heading-size-xxs);
|
|
54
58
|
--spectrum-heading-cjk-font-size: var(--spectrum-heading-cjk-size-xxs);
|
|
55
59
|
}
|
|
60
|
+
|
|
56
61
|
.spectrum-Heading--sizeXS {
|
|
57
62
|
--spectrum-heading-font-size: var(--spectrum-heading-size-xs);
|
|
58
63
|
--spectrum-heading-cjk-font-size: var(--spectrum-heading-cjk-size-xs);
|
|
59
64
|
}
|
|
65
|
+
|
|
60
66
|
.spectrum-Heading--sizeS {
|
|
61
67
|
--spectrum-heading-font-size: var(--spectrum-heading-size-s);
|
|
62
68
|
--spectrum-heading-cjk-font-size: var(--spectrum-heading-cjk-size-s);
|
|
63
69
|
}
|
|
70
|
+
|
|
64
71
|
.spectrum-Heading--sizeM {
|
|
65
72
|
--spectrum-heading-font-size: var(--spectrum-heading-size-m);
|
|
66
73
|
--spectrum-heading-cjk-font-size: var(--spectrum-heading-cjk-size-m);
|
|
67
74
|
}
|
|
75
|
+
|
|
68
76
|
.spectrum-Heading--sizeL {
|
|
69
77
|
--spectrum-heading-font-size: var(--spectrum-heading-size-l);
|
|
70
78
|
--spectrum-heading-cjk-font-size: var(--spectrum-heading-cjk-size-l);
|
|
71
79
|
}
|
|
80
|
+
|
|
72
81
|
.spectrum-Heading--sizeXL {
|
|
73
82
|
--spectrum-heading-font-size: var(--spectrum-heading-size-xl);
|
|
74
83
|
--spectrum-heading-cjk-font-size: var(--spectrum-heading-cjk-size-xl);
|
|
75
84
|
}
|
|
85
|
+
|
|
76
86
|
.spectrum-Heading--sizeXXL {
|
|
77
87
|
--spectrum-heading-font-size: var(--spectrum-heading-size-xxl);
|
|
78
88
|
--spectrum-heading-cjk-font-size: var(--spectrum-heading-cjk-size-xxl);
|
|
79
89
|
}
|
|
90
|
+
|
|
80
91
|
.spectrum-Heading--sizeXXXL {
|
|
81
92
|
--spectrum-heading-font-size: var(--spectrum-heading-size-xxxl);
|
|
82
93
|
--spectrum-heading-cjk-font-size: var(--spectrum-heading-cjk-size-xxxl);
|
|
83
94
|
}
|
|
95
|
+
|
|
84
96
|
.spectrum-Heading {
|
|
85
|
-
color: var(
|
|
86
|
-
--highcontrast-heading-font-color,
|
|
87
|
-
var(--mod-heading-font-color, var(--spectrum-heading-font-color))
|
|
88
|
-
);
|
|
89
97
|
font-family: var(
|
|
90
98
|
--mod-heading-sans-serif-font-family,
|
|
91
99
|
var(--spectrum-heading-sans-serif-font-family)
|
|
92
100
|
);
|
|
93
|
-
font-size: var(--mod-heading-font-size, var(--spectrum-heading-font-size));
|
|
94
101
|
font-style: var(
|
|
95
102
|
--mod-heading-sans-serif-font-style,
|
|
96
103
|
var(--spectrum-heading-sans-serif-font-style)
|
|
@@ -99,15 +106,20 @@ governing permissions and limitations under the License.
|
|
|
99
106
|
--mod-heading-sans-serif-font-weight,
|
|
100
107
|
var(--spectrum-heading-sans-serif-font-weight)
|
|
101
108
|
);
|
|
109
|
+
font-size: var(--mod-heading-font-size, var(--spectrum-heading-font-size));
|
|
110
|
+
color: var(
|
|
111
|
+
--highcontrast-heading-font-color,
|
|
112
|
+
var(--mod-heading-font-color, var(--spectrum-heading-font-color))
|
|
113
|
+
);
|
|
102
114
|
line-height: var(
|
|
103
115
|
--mod-heading-line-height,
|
|
104
116
|
var(--spectrum-heading-line-height)
|
|
105
117
|
);
|
|
106
|
-
margin-block
|
|
107
|
-
margin-block-start: 0;
|
|
118
|
+
margin-block: 0;
|
|
108
119
|
}
|
|
109
|
-
|
|
110
|
-
.spectrum-Heading strong
|
|
120
|
+
|
|
121
|
+
.spectrum-Heading strong,
|
|
122
|
+
.spectrum-Heading .spectrum-Heading-strong {
|
|
111
123
|
font-style: var(
|
|
112
124
|
--mod-heading-sans-serif-strong-font-style,
|
|
113
125
|
var(--spectrum-heading-sans-serif-strong-font-style)
|
|
@@ -117,8 +129,9 @@ governing permissions and limitations under the License.
|
|
|
117
129
|
var(--spectrum-heading-sans-serif-strong-font-weight)
|
|
118
130
|
);
|
|
119
131
|
}
|
|
120
|
-
|
|
121
|
-
.spectrum-Heading em
|
|
132
|
+
|
|
133
|
+
.spectrum-Heading em,
|
|
134
|
+
.spectrum-Heading .spectrum-Heading-emphasized {
|
|
122
135
|
font-style: var(
|
|
123
136
|
--mod-heading-sans-serif-emphasized-font-style,
|
|
124
137
|
var(--spectrum-heading-sans-serif-emphasized-font-style)
|
|
@@ -128,9 +141,10 @@ governing permissions and limitations under the License.
|
|
|
128
141
|
var(--spectrum-heading-sans-serif-emphasized-font-weight)
|
|
129
142
|
);
|
|
130
143
|
}
|
|
144
|
+
|
|
131
145
|
.spectrum-Heading .spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
132
|
-
.spectrum-Heading em
|
|
133
|
-
.spectrum-Heading strong
|
|
146
|
+
.spectrum-Heading strong em,
|
|
147
|
+
.spectrum-Heading em strong {
|
|
134
148
|
font-style: var(
|
|
135
149
|
--mod-heading-sans-serif-strong-emphasized-font-style,
|
|
136
150
|
var(--spectrum-heading-sans-serif-strong-emphasized-font-style)
|
|
@@ -140,17 +154,14 @@ governing permissions and limitations under the License.
|
|
|
140
154
|
var(--spectrum-heading-sans-serif-strong-emphasized-font-weight)
|
|
141
155
|
);
|
|
142
156
|
}
|
|
157
|
+
|
|
158
|
+
.spectrum-Heading:lang(zh),
|
|
143
159
|
.spectrum-Heading:lang(ja),
|
|
144
|
-
.spectrum-Heading:lang(ko)
|
|
145
|
-
.spectrum-Heading:lang(zh) {
|
|
160
|
+
.spectrum-Heading:lang(ko) {
|
|
146
161
|
font-family: var(
|
|
147
162
|
--mod-heading-cjk-font-family,
|
|
148
163
|
var(--spectrum-heading-cjk-font-family)
|
|
149
164
|
);
|
|
150
|
-
font-size: var(
|
|
151
|
-
--mod-heading-cjk-font-size,
|
|
152
|
-
var(--spectrum-heading-cjk-font-size)
|
|
153
|
-
);
|
|
154
165
|
font-style: var(
|
|
155
166
|
--mod-heading-cjk-font-style,
|
|
156
167
|
var(--spectrum-heading-cjk-font-style)
|
|
@@ -159,21 +170,26 @@ governing permissions and limitations under the License.
|
|
|
159
170
|
--mod-heading-cjk-font-weight,
|
|
160
171
|
var(--spectrum-heading-cjk-font-weight)
|
|
161
172
|
);
|
|
162
|
-
|
|
163
|
-
--mod-heading-cjk-
|
|
164
|
-
var(--spectrum-heading-cjk-
|
|
173
|
+
font-size: var(
|
|
174
|
+
--mod-heading-cjk-font-size,
|
|
175
|
+
var(--spectrum-heading-cjk-font-size)
|
|
165
176
|
);
|
|
166
177
|
line-height: var(
|
|
167
178
|
--mod-heading-cjk-line-height,
|
|
168
179
|
var(--spectrum-heading-cjk-line-height)
|
|
169
180
|
);
|
|
181
|
+
letter-spacing: var(
|
|
182
|
+
--mod-heading-cjk-letter-spacing,
|
|
183
|
+
var(--spectrum-heading-cjk-letter-spacing)
|
|
184
|
+
);
|
|
170
185
|
}
|
|
171
|
-
|
|
186
|
+
|
|
187
|
+
.spectrum-Heading:lang(zh) em,
|
|
188
|
+
.spectrum-Heading:lang(zh) .spectrum-Heading-emphasized,
|
|
172
189
|
.spectrum-Heading:lang(ja) em,
|
|
173
|
-
.spectrum-Heading:lang(
|
|
190
|
+
.spectrum-Heading:lang(ja) .spectrum-Heading-emphasized,
|
|
174
191
|
.spectrum-Heading:lang(ko) em,
|
|
175
|
-
.spectrum-Heading:lang(
|
|
176
|
-
.spectrum-Heading:lang(zh) em {
|
|
192
|
+
.spectrum-Heading:lang(ko) .spectrum-Heading-emphasized {
|
|
177
193
|
font-style: var(
|
|
178
194
|
--mod-heading-cjk-emphasized-font-style,
|
|
179
195
|
var(--spectrum-heading-cjk-emphasized-font-style)
|
|
@@ -183,12 +199,13 @@ governing permissions and limitations under the License.
|
|
|
183
199
|
var(--spectrum-heading-cjk-emphasized-font-weight)
|
|
184
200
|
);
|
|
185
201
|
}
|
|
186
|
-
|
|
202
|
+
|
|
203
|
+
.spectrum-Heading:lang(zh) strong,
|
|
204
|
+
.spectrum-Heading:lang(zh) .spectrum-Heading-strong,
|
|
187
205
|
.spectrum-Heading:lang(ja) strong,
|
|
188
|
-
.spectrum-Heading:lang(
|
|
206
|
+
.spectrum-Heading:lang(ja) .spectrum-Heading-strong,
|
|
189
207
|
.spectrum-Heading:lang(ko) strong,
|
|
190
|
-
.spectrum-Heading:lang(
|
|
191
|
-
.spectrum-Heading:lang(zh) strong {
|
|
208
|
+
.spectrum-Heading:lang(ko) .spectrum-Heading-strong {
|
|
192
209
|
font-style: var(
|
|
193
210
|
--mod-heading-cjk-strong-font-style,
|
|
194
211
|
var(--spectrum-heading-cjk-strong-font-style)
|
|
@@ -198,15 +215,16 @@ governing permissions and limitations under the License.
|
|
|
198
215
|
var(--spectrum-heading-cjk-strong-font-weight)
|
|
199
216
|
);
|
|
200
217
|
}
|
|
218
|
+
|
|
219
|
+
.spectrum-Heading:lang(zh) .spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
220
|
+
.spectrum-Heading:lang(zh) strong em,
|
|
221
|
+
.spectrum-Heading:lang(zh) em strong,
|
|
201
222
|
.spectrum-Heading:lang(ja) .spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
202
|
-
.spectrum-Heading:lang(ja) em strong,
|
|
203
223
|
.spectrum-Heading:lang(ja) strong em,
|
|
224
|
+
.spectrum-Heading:lang(ja) em strong,
|
|
204
225
|
.spectrum-Heading:lang(ko) .spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
205
|
-
.spectrum-Heading:lang(ko) em strong,
|
|
206
226
|
.spectrum-Heading:lang(ko) strong em,
|
|
207
|
-
.spectrum-Heading:lang(
|
|
208
|
-
.spectrum-Heading:lang(zh) em strong,
|
|
209
|
-
.spectrum-Heading:lang(zh) strong em {
|
|
227
|
+
.spectrum-Heading:lang(ko) em strong {
|
|
210
228
|
font-style: var(
|
|
211
229
|
--mod-heading-cjk-strong-emphasized-font-style,
|
|
212
230
|
var(--spectrum-heading-cjk-strong-emphasized-font-style)
|
|
@@ -216,6 +234,7 @@ governing permissions and limitations under the License.
|
|
|
216
234
|
var(--spectrum-heading-cjk-strong-emphasized-font-weight)
|
|
217
235
|
);
|
|
218
236
|
}
|
|
237
|
+
|
|
219
238
|
.spectrum-Heading--heavy {
|
|
220
239
|
font-style: var(
|
|
221
240
|
--mod-heading-sans-serif-heavy-font-style,
|
|
@@ -226,8 +245,9 @@ governing permissions and limitations under the License.
|
|
|
226
245
|
var(--spectrum-heading-sans-serif-heavy-font-weight)
|
|
227
246
|
);
|
|
228
247
|
}
|
|
229
|
-
|
|
230
|
-
.spectrum-Heading--heavy strong
|
|
248
|
+
|
|
249
|
+
.spectrum-Heading--heavy strong,
|
|
250
|
+
.spectrum-Heading--heavy .spectrum-Heading-strong {
|
|
231
251
|
font-style: var(
|
|
232
252
|
--mod-heading-sans-serif-heavy-strong-font-style,
|
|
233
253
|
var(--spectrum-heading-sans-serif-heavy-strong-font-style)
|
|
@@ -237,8 +257,9 @@ governing permissions and limitations under the License.
|
|
|
237
257
|
var(--spectrum-heading-sans-serif-heavy-strong-font-weight)
|
|
238
258
|
);
|
|
239
259
|
}
|
|
240
|
-
|
|
241
|
-
.spectrum-Heading--heavy em
|
|
260
|
+
|
|
261
|
+
.spectrum-Heading--heavy em,
|
|
262
|
+
.spectrum-Heading--heavy .spectrum-Heading-emphasized {
|
|
242
263
|
font-style: var(
|
|
243
264
|
--mod-heading-sans-serif-heavy-emphasized-font-style,
|
|
244
265
|
var(--spectrum-heading-sans-serif-heavy-emphasized-font-style)
|
|
@@ -248,9 +269,10 @@ governing permissions and limitations under the License.
|
|
|
248
269
|
var(--spectrum-heading-sans-serif-heavy-emphasized-font-weight)
|
|
249
270
|
);
|
|
250
271
|
}
|
|
272
|
+
|
|
251
273
|
.spectrum-Heading--heavy .spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
252
|
-
.spectrum-Heading--heavy em
|
|
253
|
-
.spectrum-Heading--heavy strong
|
|
274
|
+
.spectrum-Heading--heavy strong em,
|
|
275
|
+
.spectrum-Heading--heavy em strong {
|
|
254
276
|
font-style: var(
|
|
255
277
|
--mod-heading-sans-serif-heavy-strong-emphasized-font-style,
|
|
256
278
|
var(--spectrum-heading-sans-serif-heavy-strong-emphasized-font-style)
|
|
@@ -260,9 +282,10 @@ governing permissions and limitations under the License.
|
|
|
260
282
|
var(--spectrum-heading-sans-serif-heavy-strong-emphasized-font-weight)
|
|
261
283
|
);
|
|
262
284
|
}
|
|
285
|
+
|
|
286
|
+
.spectrum-Heading--heavy:lang(zh),
|
|
263
287
|
.spectrum-Heading--heavy:lang(ja),
|
|
264
|
-
.spectrum-Heading--heavy:lang(ko)
|
|
265
|
-
.spectrum-Heading--heavy:lang(zh) {
|
|
288
|
+
.spectrum-Heading--heavy:lang(ko) {
|
|
266
289
|
font-style: var(
|
|
267
290
|
--mod-heading-cjk-heavy-font-style,
|
|
268
291
|
var(--spectrum-heading-cjk-heavy-font-style)
|
|
@@ -272,12 +295,13 @@ governing permissions and limitations under the License.
|
|
|
272
295
|
var(--spectrum-heading-cjk-heavy-font-weight)
|
|
273
296
|
);
|
|
274
297
|
}
|
|
275
|
-
|
|
298
|
+
|
|
299
|
+
.spectrum-Heading--heavy:lang(zh) em,
|
|
300
|
+
.spectrum-Heading--heavy:lang(zh) .spectrum-Heading-emphasized,
|
|
276
301
|
.spectrum-Heading--heavy:lang(ja) em,
|
|
277
|
-
.spectrum-Heading--heavy:lang(
|
|
302
|
+
.spectrum-Heading--heavy:lang(ja) .spectrum-Heading-emphasized,
|
|
278
303
|
.spectrum-Heading--heavy:lang(ko) em,
|
|
279
|
-
.spectrum-Heading--heavy:lang(
|
|
280
|
-
.spectrum-Heading--heavy:lang(zh) em {
|
|
304
|
+
.spectrum-Heading--heavy:lang(ko) .spectrum-Heading-emphasized {
|
|
281
305
|
font-style: var(
|
|
282
306
|
--mod-heading-cjk-heavy-emphasized-font-style,
|
|
283
307
|
var(--spectrum-heading-cjk-heavy-emphasized-font-style)
|
|
@@ -287,12 +311,13 @@ governing permissions and limitations under the License.
|
|
|
287
311
|
var(--spectrum-heading-cjk-heavy-emphasized-font-weight)
|
|
288
312
|
);
|
|
289
313
|
}
|
|
290
|
-
|
|
314
|
+
|
|
315
|
+
.spectrum-Heading--heavy:lang(zh) strong,
|
|
316
|
+
.spectrum-Heading--heavy:lang(zh) .spectrum-Heading-strong,
|
|
291
317
|
.spectrum-Heading--heavy:lang(ja) strong,
|
|
292
|
-
.spectrum-Heading--heavy:lang(
|
|
318
|
+
.spectrum-Heading--heavy:lang(ja) .spectrum-Heading-strong,
|
|
293
319
|
.spectrum-Heading--heavy:lang(ko) strong,
|
|
294
|
-
.spectrum-Heading--heavy:lang(
|
|
295
|
-
.spectrum-Heading--heavy:lang(zh) strong {
|
|
320
|
+
.spectrum-Heading--heavy:lang(ko) .spectrum-Heading-strong {
|
|
296
321
|
font-style: var(
|
|
297
322
|
--mod-heading-cjk-heavy-strong-font-style,
|
|
298
323
|
var(--spectrum-heading-cjk-heavy-strong-font-style)
|
|
@@ -302,18 +327,19 @@ governing permissions and limitations under the License.
|
|
|
302
327
|
var(--spectrum-heading-cjk-heavy-strong-font-weight)
|
|
303
328
|
);
|
|
304
329
|
}
|
|
330
|
+
|
|
331
|
+
.spectrum-Heading--heavy:lang(zh)
|
|
332
|
+
.spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
333
|
+
.spectrum-Heading--heavy:lang(zh) strong em,
|
|
334
|
+
.spectrum-Heading--heavy:lang(zh) em strong,
|
|
305
335
|
.spectrum-Heading--heavy:lang(ja)
|
|
306
336
|
.spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
307
|
-
.spectrum-Heading--heavy:lang(ja) em strong,
|
|
308
337
|
.spectrum-Heading--heavy:lang(ja) strong em,
|
|
338
|
+
.spectrum-Heading--heavy:lang(ja) em strong,
|
|
309
339
|
.spectrum-Heading--heavy:lang(ko)
|
|
310
340
|
.spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
311
|
-
.spectrum-Heading--heavy:lang(ko) em strong,
|
|
312
341
|
.spectrum-Heading--heavy:lang(ko) strong em,
|
|
313
|
-
.spectrum-Heading--heavy:lang(
|
|
314
|
-
.spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
315
|
-
.spectrum-Heading--heavy:lang(zh) em strong,
|
|
316
|
-
.spectrum-Heading--heavy:lang(zh) strong em {
|
|
342
|
+
.spectrum-Heading--heavy:lang(ko) em strong {
|
|
317
343
|
font-style: var(
|
|
318
344
|
--mod-heading-cjk-heavy-strong-emphasized-font-style,
|
|
319
345
|
var(--spectrum-heading-cjk-heavy-strong-emphasized-font-style)
|
|
@@ -323,6 +349,7 @@ governing permissions and limitations under the License.
|
|
|
323
349
|
var(--spectrum-heading-cjk-heavy-strong-emphasized-font-weight)
|
|
324
350
|
);
|
|
325
351
|
}
|
|
352
|
+
|
|
326
353
|
.spectrum-Heading--light {
|
|
327
354
|
font-style: var(
|
|
328
355
|
--mod-heading-sans-serif-light-font-style,
|
|
@@ -333,8 +360,9 @@ governing permissions and limitations under the License.
|
|
|
333
360
|
var(--spectrum-heading-sans-serif-light-font-weight)
|
|
334
361
|
);
|
|
335
362
|
}
|
|
336
|
-
|
|
337
|
-
.spectrum-Heading--light em
|
|
363
|
+
|
|
364
|
+
.spectrum-Heading--light em,
|
|
365
|
+
.spectrum-Heading--light .spectrum-Heading-emphasized {
|
|
338
366
|
font-style: var(
|
|
339
367
|
--mod-heading-sans-serif-light-emphasized-font-style,
|
|
340
368
|
var(--spectrum-heading-sans-serif-light-emphasized-font-style)
|
|
@@ -344,8 +372,9 @@ governing permissions and limitations under the License.
|
|
|
344
372
|
var(--spectrum-heading-sans-serif-light-emphasized-font-weight)
|
|
345
373
|
);
|
|
346
374
|
}
|
|
347
|
-
|
|
348
|
-
.spectrum-Heading--light strong
|
|
375
|
+
|
|
376
|
+
.spectrum-Heading--light strong,
|
|
377
|
+
.spectrum-Heading--light .spectrum-Heading-strong {
|
|
349
378
|
font-style: var(
|
|
350
379
|
--mod-heading-sans-serif-light-strong-font-style,
|
|
351
380
|
var(--spectrum-heading-sans-serif-light-strong-font-style)
|
|
@@ -355,9 +384,10 @@ governing permissions and limitations under the License.
|
|
|
355
384
|
var(--spectrum-heading-sans-serif-light-strong-font-weight)
|
|
356
385
|
);
|
|
357
386
|
}
|
|
387
|
+
|
|
358
388
|
.spectrum-Heading--light .spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
359
|
-
.spectrum-Heading--light em
|
|
360
|
-
.spectrum-Heading--light strong
|
|
389
|
+
.spectrum-Heading--light strong em,
|
|
390
|
+
.spectrum-Heading--light em strong {
|
|
361
391
|
font-style: var(
|
|
362
392
|
--mod-heading-sans-serif-light-strong-emphasized-font-style,
|
|
363
393
|
var(--spectrum-heading-sans-serif-light-strong-emphasized-font-style)
|
|
@@ -367,9 +397,10 @@ governing permissions and limitations under the License.
|
|
|
367
397
|
var(--spectrum-heading-sans-serif-light-strong-emphasized-font-weight)
|
|
368
398
|
);
|
|
369
399
|
}
|
|
400
|
+
|
|
401
|
+
.spectrum-Heading--light:lang(zh),
|
|
370
402
|
.spectrum-Heading--light:lang(ja),
|
|
371
|
-
.spectrum-Heading--light:lang(ko)
|
|
372
|
-
.spectrum-Heading--light:lang(zh) {
|
|
403
|
+
.spectrum-Heading--light:lang(ko) {
|
|
373
404
|
font-style: var(
|
|
374
405
|
--mod-heading-cjk-light-font-style,
|
|
375
406
|
var(--spectrum-heading-cjk-light-font-style)
|
|
@@ -379,12 +410,13 @@ governing permissions and limitations under the License.
|
|
|
379
410
|
var(--spectrum-heading-cjk-light-font-weight)
|
|
380
411
|
);
|
|
381
412
|
}
|
|
382
|
-
|
|
413
|
+
|
|
414
|
+
.spectrum-Heading--light:lang(zh) strong,
|
|
415
|
+
.spectrum-Heading--light:lang(zh) .spectrum-Heading-strong,
|
|
383
416
|
.spectrum-Heading--light:lang(ja) strong,
|
|
384
|
-
.spectrum-Heading--light:lang(
|
|
417
|
+
.spectrum-Heading--light:lang(ja) .spectrum-Heading-strong,
|
|
385
418
|
.spectrum-Heading--light:lang(ko) strong,
|
|
386
|
-
.spectrum-Heading--light:lang(
|
|
387
|
-
.spectrum-Heading--light:lang(zh) strong {
|
|
419
|
+
.spectrum-Heading--light:lang(ko) .spectrum-Heading-strong {
|
|
388
420
|
font-style: var(
|
|
389
421
|
--mod-heading-cjk-light-strong-font-style,
|
|
390
422
|
var(--spectrum-heading-cjk-light-strong-font-style)
|
|
@@ -394,12 +426,13 @@ governing permissions and limitations under the License.
|
|
|
394
426
|
var(--spectrum-heading-cjk-light-strong-font-weight)
|
|
395
427
|
);
|
|
396
428
|
}
|
|
397
|
-
|
|
429
|
+
|
|
430
|
+
.spectrum-Heading--light:lang(zh) em,
|
|
431
|
+
.spectrum-Heading--light:lang(zh) .spectrum-Heading-emphasized,
|
|
398
432
|
.spectrum-Heading--light:lang(ja) em,
|
|
399
|
-
.spectrum-Heading--light:lang(
|
|
433
|
+
.spectrum-Heading--light:lang(ja) .spectrum-Heading-emphasized,
|
|
400
434
|
.spectrum-Heading--light:lang(ko) em,
|
|
401
|
-
.spectrum-Heading--light:lang(
|
|
402
|
-
.spectrum-Heading--light:lang(zh) em {
|
|
435
|
+
.spectrum-Heading--light:lang(ko) .spectrum-Heading-emphasized {
|
|
403
436
|
font-style: var(
|
|
404
437
|
--mod-heading-cjk-light-emphasized-font-style,
|
|
405
438
|
var(--spectrum-heading-cjk-light-emphasized-font-style)
|
|
@@ -409,18 +442,19 @@ governing permissions and limitations under the License.
|
|
|
409
442
|
var(--spectrum-heading-cjk-light-emphasized-font-weight)
|
|
410
443
|
);
|
|
411
444
|
}
|
|
445
|
+
|
|
446
|
+
.spectrum-Heading--light:lang(zh)
|
|
447
|
+
.spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
448
|
+
.spectrum-Heading--light:lang(zh) strong em,
|
|
449
|
+
.spectrum-Heading--light:lang(zh) em strong,
|
|
412
450
|
.spectrum-Heading--light:lang(ja)
|
|
413
451
|
.spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
414
|
-
.spectrum-Heading--light:lang(ja) em strong,
|
|
415
452
|
.spectrum-Heading--light:lang(ja) strong em,
|
|
453
|
+
.spectrum-Heading--light:lang(ja) em strong,
|
|
416
454
|
.spectrum-Heading--light:lang(ko)
|
|
417
455
|
.spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
418
|
-
.spectrum-Heading--light:lang(ko) em strong,
|
|
419
456
|
.spectrum-Heading--light:lang(ko) strong em,
|
|
420
|
-
.spectrum-Heading--light:lang(
|
|
421
|
-
.spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
422
|
-
.spectrum-Heading--light:lang(zh) em strong,
|
|
423
|
-
.spectrum-Heading--light:lang(zh) strong em {
|
|
457
|
+
.spectrum-Heading--light:lang(ko) em strong {
|
|
424
458
|
font-style: var(
|
|
425
459
|
--mod-heading-cjk-light-strong-emphasized-font-style,
|
|
426
460
|
var(--spectrum-heading-cjk-light-strong-emphasized-font-style)
|
|
@@ -430,6 +464,7 @@ governing permissions and limitations under the License.
|
|
|
430
464
|
var(--spectrum-heading-cjk-light-strong-emphasized-font-weight)
|
|
431
465
|
);
|
|
432
466
|
}
|
|
467
|
+
|
|
433
468
|
.spectrum-Heading--serif {
|
|
434
469
|
font-family: var(
|
|
435
470
|
--mod-heading-serif-font-family,
|
|
@@ -444,8 +479,9 @@ governing permissions and limitations under the License.
|
|
|
444
479
|
var(--spectrum-heading-serif-font-weight)
|
|
445
480
|
);
|
|
446
481
|
}
|
|
447
|
-
|
|
448
|
-
.spectrum-Heading--serif em
|
|
482
|
+
|
|
483
|
+
.spectrum-Heading--serif em,
|
|
484
|
+
.spectrum-Heading--serif .spectrum-Heading-emphasized {
|
|
449
485
|
font-style: var(
|
|
450
486
|
--mod-heading-serif-emphasized-font-style,
|
|
451
487
|
var(--spectrum-heading-serif-emphasized-font-style)
|
|
@@ -455,8 +491,9 @@ governing permissions and limitations under the License.
|
|
|
455
491
|
var(--spectrum-heading-serif-emphasized-font-weight)
|
|
456
492
|
);
|
|
457
493
|
}
|
|
458
|
-
|
|
459
|
-
.spectrum-Heading--serif strong
|
|
494
|
+
|
|
495
|
+
.spectrum-Heading--serif strong,
|
|
496
|
+
.spectrum-Heading--serif .spectrum-Heading-strong {
|
|
460
497
|
font-style: var(
|
|
461
498
|
--mod-heading-serif-strong-font-style,
|
|
462
499
|
var(--spectrum-heading-serif-strong-font-style)
|
|
@@ -466,9 +503,10 @@ governing permissions and limitations under the License.
|
|
|
466
503
|
var(--spectrum-heading-serif-strong-font-weight)
|
|
467
504
|
);
|
|
468
505
|
}
|
|
506
|
+
|
|
469
507
|
.spectrum-Heading--serif .spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
470
|
-
.spectrum-Heading--serif em
|
|
471
|
-
.spectrum-Heading--serif strong
|
|
508
|
+
.spectrum-Heading--serif strong em,
|
|
509
|
+
.spectrum-Heading--serif em strong {
|
|
472
510
|
font-style: var(
|
|
473
511
|
--mod-heading-serif-strong-emphasized-font-style,
|
|
474
512
|
var(--spectrum-heading-serif-strong-emphasized-font-style)
|
|
@@ -478,6 +516,7 @@ governing permissions and limitations under the License.
|
|
|
478
516
|
var(--spectrum-heading-serif-strong-emphasized-font-weight)
|
|
479
517
|
);
|
|
480
518
|
}
|
|
519
|
+
|
|
481
520
|
.spectrum-Heading--serif.spectrum-Heading--heavy {
|
|
482
521
|
font-style: var(
|
|
483
522
|
--mod-heading-serif-heavy-font-style,
|
|
@@ -488,8 +527,9 @@ governing permissions and limitations under the License.
|
|
|
488
527
|
var(--spectrum-heading-serif-heavy-font-weight)
|
|
489
528
|
);
|
|
490
529
|
}
|
|
491
|
-
|
|
492
|
-
.spectrum-Heading--serif.spectrum-Heading--heavy strong
|
|
530
|
+
|
|
531
|
+
.spectrum-Heading--serif.spectrum-Heading--heavy strong,
|
|
532
|
+
.spectrum-Heading--serif.spectrum-Heading--heavy .spectrum-Heading-strong {
|
|
493
533
|
font-style: var(
|
|
494
534
|
--mod-heading-serif-heavy-strong-font-style,
|
|
495
535
|
var(--spectrum-heading-serif-heavy-strong-font-style)
|
|
@@ -499,8 +539,9 @@ governing permissions and limitations under the License.
|
|
|
499
539
|
var(--spectrum-heading-serif-heavy-strong-font-weight)
|
|
500
540
|
);
|
|
501
541
|
}
|
|
502
|
-
|
|
503
|
-
.spectrum-Heading--serif.spectrum-Heading--heavy em
|
|
542
|
+
|
|
543
|
+
.spectrum-Heading--serif.spectrum-Heading--heavy em,
|
|
544
|
+
.spectrum-Heading--serif.spectrum-Heading--heavy .spectrum-Heading-emphasized {
|
|
504
545
|
font-style: var(
|
|
505
546
|
--mod-heading-serif-heavy-emphasized-font-style,
|
|
506
547
|
var(--spectrum-heading-serif-heavy-emphasized-font-style)
|
|
@@ -510,10 +551,11 @@ governing permissions and limitations under the License.
|
|
|
510
551
|
var(--spectrum-heading-serif-heavy-emphasized-font-weight)
|
|
511
552
|
);
|
|
512
553
|
}
|
|
554
|
+
|
|
513
555
|
.spectrum-Heading--serif.spectrum-Heading--heavy
|
|
514
556
|
.spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
515
|
-
.spectrum-Heading--serif.spectrum-Heading--heavy em
|
|
516
|
-
.spectrum-Heading--serif.spectrum-Heading--heavy strong
|
|
557
|
+
.spectrum-Heading--serif.spectrum-Heading--heavy strong em,
|
|
558
|
+
.spectrum-Heading--serif.spectrum-Heading--heavy em strong {
|
|
517
559
|
font-style: var(
|
|
518
560
|
--mod-heading-serif-heavy-strong-emphasized-font-style,
|
|
519
561
|
var(--spectrum-heading-serif-heavy-strong-emphasized-font-style)
|
|
@@ -523,6 +565,7 @@ governing permissions and limitations under the License.
|
|
|
523
565
|
var(--spectrum-heading-serif-heavy-strong-emphasized-font-weight)
|
|
524
566
|
);
|
|
525
567
|
}
|
|
568
|
+
|
|
526
569
|
.spectrum-Heading--serif.spectrum-Heading--light {
|
|
527
570
|
font-style: var(
|
|
528
571
|
--mod-heading-serif-light-font-style,
|
|
@@ -533,8 +576,9 @@ governing permissions and limitations under the License.
|
|
|
533
576
|
var(--spectrum-heading-serif-light-font-weight)
|
|
534
577
|
);
|
|
535
578
|
}
|
|
536
|
-
|
|
537
|
-
.spectrum-Heading--serif.spectrum-Heading--light em
|
|
579
|
+
|
|
580
|
+
.spectrum-Heading--serif.spectrum-Heading--light em,
|
|
581
|
+
.spectrum-Heading--serif.spectrum-Heading--light .spectrum-Heading-emphasized {
|
|
538
582
|
font-style: var(
|
|
539
583
|
--mod-heading-serif-light-emphasized-font-style,
|
|
540
584
|
var(--spectrum-heading-serif-light-emphasized-font-style)
|
|
@@ -544,8 +588,9 @@ governing permissions and limitations under the License.
|
|
|
544
588
|
var(--spectrum-heading-serif-light-emphasized-font-weight)
|
|
545
589
|
);
|
|
546
590
|
}
|
|
547
|
-
|
|
548
|
-
.spectrum-Heading--serif.spectrum-Heading--light strong
|
|
591
|
+
|
|
592
|
+
.spectrum-Heading--serif.spectrum-Heading--light strong,
|
|
593
|
+
.spectrum-Heading--serif.spectrum-Heading--light .spectrum-Heading-strong {
|
|
549
594
|
font-style: var(
|
|
550
595
|
--mod-heading-serif-light-strong-font-style,
|
|
551
596
|
var(--spectrum-heading-serif-light-strong-font-style)
|
|
@@ -555,10 +600,11 @@ governing permissions and limitations under the License.
|
|
|
555
600
|
var(--spectrum-heading-serif-light-strong-font-weight)
|
|
556
601
|
);
|
|
557
602
|
}
|
|
603
|
+
|
|
558
604
|
.spectrum-Heading--serif.spectrum-Heading--light
|
|
559
605
|
.spectrum-Heading-strong.spectrum-Heading-emphasized,
|
|
560
|
-
.spectrum-Heading--serif.spectrum-Heading--light em
|
|
561
|
-
.spectrum-Heading--serif.spectrum-Heading--light strong
|
|
606
|
+
.spectrum-Heading--serif.spectrum-Heading--light strong em,
|
|
607
|
+
.spectrum-Heading--serif.spectrum-Heading--light em strong {
|
|
562
608
|
font-style: var(
|
|
563
609
|
--mod-heading-serif-light-strong-emphasized-font-style,
|
|
564
610
|
var(--spectrum-heading-serif-light-strong-emphasized-font-style)
|
|
@@ -568,16 +614,18 @@ governing permissions and limitations under the License.
|
|
|
568
614
|
var(--spectrum-heading-serif-light-strong-emphasized-font-weight)
|
|
569
615
|
);
|
|
570
616
|
}
|
|
617
|
+
|
|
571
618
|
.spectrum-Typography .spectrum-Heading {
|
|
572
|
-
margin-block-end: var(
|
|
573
|
-
--mod-heading-margin-end,
|
|
574
|
-
var(--spectrum-heading-margin-end)
|
|
575
|
-
);
|
|
576
619
|
margin-block-start: var(
|
|
577
620
|
--mod-heading-margin-start,
|
|
578
621
|
var(--spectrum-heading-margin-start)
|
|
579
622
|
);
|
|
623
|
+
margin-block-end: var(
|
|
624
|
+
--mod-heading-margin-end,
|
|
625
|
+
var(--spectrum-heading-margin-end)
|
|
626
|
+
);
|
|
580
627
|
}
|
|
628
|
+
|
|
581
629
|
.spectrum-Body {
|
|
582
630
|
--spectrum-body-sans-serif-font-family: var(
|
|
583
631
|
--spectrum-sans-font-family-stack
|
|
@@ -591,37 +639,40 @@ governing permissions and limitations under the License.
|
|
|
591
639
|
);
|
|
592
640
|
--spectrum-body-font-color: var(--spectrum-body-color);
|
|
593
641
|
}
|
|
642
|
+
|
|
594
643
|
.spectrum-Body--sizeXS {
|
|
595
644
|
--spectrum-body-font-size: var(--spectrum-body-size-xs);
|
|
596
645
|
}
|
|
646
|
+
|
|
597
647
|
.spectrum-Body--sizeS {
|
|
598
648
|
--spectrum-body-font-size: var(--spectrum-body-size-s);
|
|
599
649
|
}
|
|
650
|
+
|
|
600
651
|
.spectrum-Body--sizeM {
|
|
601
652
|
--spectrum-body-font-size: var(--spectrum-body-size-m);
|
|
602
653
|
}
|
|
654
|
+
|
|
603
655
|
.spectrum-Body--sizeL {
|
|
604
656
|
--spectrum-body-font-size: var(--spectrum-body-size-l);
|
|
605
657
|
}
|
|
658
|
+
|
|
606
659
|
.spectrum-Body--sizeXL {
|
|
607
660
|
--spectrum-body-font-size: var(--spectrum-body-size-xl);
|
|
608
661
|
}
|
|
662
|
+
|
|
609
663
|
.spectrum-Body--sizeXXL {
|
|
610
664
|
--spectrum-body-font-size: var(--spectrum-body-size-xxl);
|
|
611
665
|
}
|
|
666
|
+
|
|
612
667
|
.spectrum-Body--sizeXXXL {
|
|
613
668
|
--spectrum-body-font-size: var(--spectrum-body-size-xxxl);
|
|
614
669
|
}
|
|
670
|
+
|
|
615
671
|
.spectrum-Body {
|
|
616
|
-
color: var(
|
|
617
|
-
--highcontrast-body-font-color,
|
|
618
|
-
var(--mod-body-font-color, var(--spectrum-body-font-color))
|
|
619
|
-
);
|
|
620
672
|
font-family: var(
|
|
621
673
|
--mod-body-sans-serif-font-family,
|
|
622
674
|
var(--spectrum-body-sans-serif-font-family)
|
|
623
675
|
);
|
|
624
|
-
font-size: var(--mod-body-font-size, var(--spectrum-body-font-size));
|
|
625
676
|
font-style: var(
|
|
626
677
|
--mod-body-sans-serif-font-style,
|
|
627
678
|
var(--spectrum-body-sans-serif-font-style)
|
|
@@ -630,12 +681,17 @@ governing permissions and limitations under the License.
|
|
|
630
681
|
--mod-body-sans-serif-font-weight,
|
|
631
682
|
var(--spectrum-body-sans-serif-font-weight)
|
|
632
683
|
);
|
|
684
|
+
font-size: var(--mod-body-font-size, var(--spectrum-body-font-size));
|
|
685
|
+
color: var(
|
|
686
|
+
--highcontrast-body-font-color,
|
|
687
|
+
var(--mod-body-font-color, var(--spectrum-body-font-color))
|
|
688
|
+
);
|
|
633
689
|
line-height: var(--mod-body-line-height, var(--spectrum-body-line-height));
|
|
634
|
-
margin-block
|
|
635
|
-
margin-block-start: 0;
|
|
690
|
+
margin-block: 0;
|
|
636
691
|
}
|
|
637
|
-
|
|
638
|
-
.spectrum-Body strong
|
|
692
|
+
|
|
693
|
+
.spectrum-Body strong,
|
|
694
|
+
.spectrum-Body .spectrum-Body-strong {
|
|
639
695
|
font-style: var(
|
|
640
696
|
--mod-body-sans-serif-strong-font-style,
|
|
641
697
|
var(--spectrum-body-sans-serif-strong-font-style)
|
|
@@ -645,8 +701,9 @@ governing permissions and limitations under the License.
|
|
|
645
701
|
var(--spectrum-body-sans-serif-strong-font-weight)
|
|
646
702
|
);
|
|
647
703
|
}
|
|
648
|
-
|
|
649
|
-
.spectrum-Body em
|
|
704
|
+
|
|
705
|
+
.spectrum-Body em,
|
|
706
|
+
.spectrum-Body .spectrum-Body-emphasized {
|
|
650
707
|
font-style: var(
|
|
651
708
|
--mod-body-sans-serif-emphasized-font-style,
|
|
652
709
|
var(--spectrum-body-sans-serif-emphasized-font-style)
|
|
@@ -656,6 +713,7 @@ governing permissions and limitations under the License.
|
|
|
656
713
|
var(--spectrum-body-sans-serif-emphasized-font-weight)
|
|
657
714
|
);
|
|
658
715
|
}
|
|
716
|
+
|
|
659
717
|
.spectrum-Body .spectrum-Body-strong.spectrum-Body-emphasized,
|
|
660
718
|
.spectrum-Body em strong,
|
|
661
719
|
.spectrum-Body strong em {
|
|
@@ -668,9 +726,10 @@ governing permissions and limitations under the License.
|
|
|
668
726
|
var(--spectrum-body-sans-serif-strong-emphasized-font-weight)
|
|
669
727
|
);
|
|
670
728
|
}
|
|
729
|
+
|
|
730
|
+
.spectrum-Body:lang(zh),
|
|
671
731
|
.spectrum-Body:lang(ja),
|
|
672
|
-
.spectrum-Body:lang(ko)
|
|
673
|
-
.spectrum-Body:lang(zh) {
|
|
732
|
+
.spectrum-Body:lang(ko) {
|
|
674
733
|
font-family: var(
|
|
675
734
|
--mod-body-cjk-font-family,
|
|
676
735
|
var(--spectrum-body-cjk-font-family)
|
|
@@ -683,21 +742,22 @@ governing permissions and limitations under the License.
|
|
|
683
742
|
--mod-body-cjk-font-weight,
|
|
684
743
|
var(--spectrum-body-cjk-font-weight)
|
|
685
744
|
);
|
|
686
|
-
letter-spacing: var(
|
|
687
|
-
--mod-body-cjk-letter-spacing,
|
|
688
|
-
var(--spectrum-body-cjk-letter-spacing)
|
|
689
|
-
);
|
|
690
745
|
line-height: var(
|
|
691
746
|
--mod-body-cjk-line-height,
|
|
692
747
|
var(--spectrum-body-cjk-line-height)
|
|
693
748
|
);
|
|
749
|
+
letter-spacing: var(
|
|
750
|
+
--mod-body-cjk-letter-spacing,
|
|
751
|
+
var(--spectrum-body-cjk-letter-spacing)
|
|
752
|
+
);
|
|
694
753
|
}
|
|
695
|
-
|
|
754
|
+
|
|
755
|
+
.spectrum-Body:lang(zh) strong,
|
|
756
|
+
.spectrum-Body:lang(zh) .spectrum-Body-strong,
|
|
696
757
|
.spectrum-Body:lang(ja) strong,
|
|
697
|
-
.spectrum-Body:lang(
|
|
758
|
+
.spectrum-Body:lang(ja) .spectrum-Body-strong,
|
|
698
759
|
.spectrum-Body:lang(ko) strong,
|
|
699
|
-
.spectrum-Body:lang(
|
|
700
|
-
.spectrum-Body:lang(zh) strong {
|
|
760
|
+
.spectrum-Body:lang(ko) .spectrum-Body-strong {
|
|
701
761
|
font-style: var(
|
|
702
762
|
--mod-body-cjk-strong-font-style,
|
|
703
763
|
var(--spectrum-body-cjk-strong-font-style)
|
|
@@ -707,12 +767,13 @@ governing permissions and limitations under the License.
|
|
|
707
767
|
var(--spectrum-body-cjk-strong-font-weight)
|
|
708
768
|
);
|
|
709
769
|
}
|
|
710
|
-
|
|
770
|
+
|
|
771
|
+
.spectrum-Body:lang(zh) em,
|
|
772
|
+
.spectrum-Body:lang(zh) .spectrum-Body-emphasized,
|
|
711
773
|
.spectrum-Body:lang(ja) em,
|
|
712
|
-
.spectrum-Body:lang(
|
|
774
|
+
.spectrum-Body:lang(ja) .spectrum-Body-emphasized,
|
|
713
775
|
.spectrum-Body:lang(ko) em,
|
|
714
|
-
.spectrum-Body:lang(
|
|
715
|
-
.spectrum-Body:lang(zh) em {
|
|
776
|
+
.spectrum-Body:lang(ko) .spectrum-Body-emphasized {
|
|
716
777
|
font-style: var(
|
|
717
778
|
--mod-body-cjk-emphasized-font-style,
|
|
718
779
|
var(--spectrum-body-cjk-emphasized-font-style)
|
|
@@ -722,15 +783,16 @@ governing permissions and limitations under the License.
|
|
|
722
783
|
var(--spectrum-body-cjk-emphasized-font-weight)
|
|
723
784
|
);
|
|
724
785
|
}
|
|
786
|
+
|
|
787
|
+
.spectrum-Body:lang(zh) .spectrum-Body-strong.spectrum-Body-emphasized,
|
|
788
|
+
.spectrum-Body:lang(zh) em strong,
|
|
789
|
+
.spectrum-Body:lang(zh) strong em,
|
|
725
790
|
.spectrum-Body:lang(ja) .spectrum-Body-strong.spectrum-Body-emphasized,
|
|
726
791
|
.spectrum-Body:lang(ja) em strong,
|
|
727
792
|
.spectrum-Body:lang(ja) strong em,
|
|
728
793
|
.spectrum-Body:lang(ko) .spectrum-Body-strong.spectrum-Body-emphasized,
|
|
729
794
|
.spectrum-Body:lang(ko) em strong,
|
|
730
|
-
.spectrum-Body:lang(ko) strong em
|
|
731
|
-
.spectrum-Body:lang(zh) .spectrum-Body-strong.spectrum-Body-emphasized,
|
|
732
|
-
.spectrum-Body:lang(zh) em strong,
|
|
733
|
-
.spectrum-Body:lang(zh) strong em {
|
|
795
|
+
.spectrum-Body:lang(ko) strong em {
|
|
734
796
|
font-style: var(
|
|
735
797
|
--mod-body-cjk-strong-emphasized-font-style,
|
|
736
798
|
var(--spectrum-body-cjk-strong-emphasized-font-style)
|
|
@@ -740,22 +802,24 @@ governing permissions and limitations under the License.
|
|
|
740
802
|
var(--spectrum-body-cjk-strong-emphasized-font-weight)
|
|
741
803
|
);
|
|
742
804
|
}
|
|
805
|
+
|
|
743
806
|
.spectrum-Body--serif {
|
|
744
807
|
font-family: var(
|
|
745
808
|
--mod-body-serif-font-family,
|
|
746
809
|
var(--spectrum-body-serif-font-family)
|
|
747
810
|
);
|
|
748
|
-
font-style: var(
|
|
749
|
-
--mod-body-serif-font-style,
|
|
750
|
-
var(--spectrum-body-serif-font-style)
|
|
751
|
-
);
|
|
752
811
|
font-weight: var(
|
|
753
812
|
--mod-body-serif-font-weight,
|
|
754
813
|
var(--spectrum-body-serif-font-weight)
|
|
755
814
|
);
|
|
815
|
+
font-style: var(
|
|
816
|
+
--mod-body-serif-font-style,
|
|
817
|
+
var(--spectrum-body-serif-font-style)
|
|
818
|
+
);
|
|
756
819
|
}
|
|
757
|
-
|
|
758
|
-
.spectrum-Body--serif strong
|
|
820
|
+
|
|
821
|
+
.spectrum-Body--serif strong,
|
|
822
|
+
.spectrum-Body--serif .spectrum-Body-strong {
|
|
759
823
|
font-style: var(
|
|
760
824
|
--mod-body-serif-strong-font-style,
|
|
761
825
|
var(--spectrum-body-serif-strong-font-style)
|
|
@@ -765,8 +829,9 @@ governing permissions and limitations under the License.
|
|
|
765
829
|
var(--spectrum-body-serif-strong-font-weight)
|
|
766
830
|
);
|
|
767
831
|
}
|
|
768
|
-
|
|
769
|
-
.spectrum-Body--serif em
|
|
832
|
+
|
|
833
|
+
.spectrum-Body--serif em,
|
|
834
|
+
.spectrum-Body--serif .spectrum-Body-emphasized {
|
|
770
835
|
font-style: var(
|
|
771
836
|
--mod-body-serif-emphasized-font-style,
|
|
772
837
|
var(--spectrum-body-serif-emphasized-font-style)
|
|
@@ -776,6 +841,7 @@ governing permissions and limitations under the License.
|
|
|
776
841
|
var(--spectrum-body-serif-emphasized-font-weight)
|
|
777
842
|
);
|
|
778
843
|
}
|
|
844
|
+
|
|
779
845
|
.spectrum-Body--serif .spectrum-Body-strong.spectrum-Body-emphasized,
|
|
780
846
|
.spectrum-Body--serif em strong,
|
|
781
847
|
.spectrum-Body--serif strong em {
|
|
@@ -788,9 +854,11 @@ governing permissions and limitations under the License.
|
|
|
788
854
|
var(--spectrum-body-serif-strong-emphasized-font-weight)
|
|
789
855
|
);
|
|
790
856
|
}
|
|
857
|
+
|
|
791
858
|
.spectrum-Typography .spectrum-Body {
|
|
792
859
|
margin-block-end: var(--mod-body-margin, var(--spectrum-body-margin));
|
|
793
860
|
}
|
|
861
|
+
|
|
794
862
|
.spectrum-Detail {
|
|
795
863
|
--spectrum-detail-sans-serif-font-family: var(
|
|
796
864
|
--spectrum-sans-font-family-stack
|
|
@@ -809,28 +877,28 @@ governing permissions and limitations under the License.
|
|
|
809
877
|
);
|
|
810
878
|
--spectrum-detail-font-color: var(--spectrum-detail-color);
|
|
811
879
|
}
|
|
880
|
+
|
|
812
881
|
.spectrum-Detail--sizeS {
|
|
813
882
|
--spectrum-detail-font-size: var(--spectrum-detail-size-s);
|
|
814
883
|
}
|
|
884
|
+
|
|
815
885
|
.spectrum-Detail--sizeM {
|
|
816
886
|
--spectrum-detail-font-size: var(--spectrum-detail-size-m);
|
|
817
887
|
}
|
|
888
|
+
|
|
818
889
|
.spectrum-Detail--sizeL {
|
|
819
890
|
--spectrum-detail-font-size: var(--spectrum-detail-size-l);
|
|
820
891
|
}
|
|
892
|
+
|
|
821
893
|
.spectrum-Detail--sizeXL {
|
|
822
894
|
--spectrum-detail-font-size: var(--spectrum-detail-size-xl);
|
|
823
895
|
}
|
|
896
|
+
|
|
824
897
|
.spectrum-Detail {
|
|
825
|
-
color: var(
|
|
826
|
-
--highcontrast-detail-font-color,
|
|
827
|
-
var(--mod-detail-font-color, var(--spectrum-detail-font-color))
|
|
828
|
-
);
|
|
829
898
|
font-family: var(
|
|
830
899
|
--mod-detail-sans-serif-font-family,
|
|
831
900
|
var(--spectrum-detail-sans-serif-font-family)
|
|
832
901
|
);
|
|
833
|
-
font-size: var(--mod-detail-font-size, var(--spectrum-detail-font-size));
|
|
834
902
|
font-style: var(
|
|
835
903
|
--mod-detail-sans-serif-font-style,
|
|
836
904
|
var(--spectrum-detail-sans-serif-font-style)
|
|
@@ -839,20 +907,25 @@ governing permissions and limitations under the License.
|
|
|
839
907
|
--mod-detail-sans-serif-font-weight,
|
|
840
908
|
var(--spectrum-detail-sans-serif-font-weight)
|
|
841
909
|
);
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
910
|
+
font-size: var(--mod-detail-font-size, var(--spectrum-detail-font-size));
|
|
911
|
+
color: var(
|
|
912
|
+
--highcontrast-detail-font-color,
|
|
913
|
+
var(--mod-detail-font-color, var(--spectrum-detail-font-color))
|
|
845
914
|
);
|
|
846
915
|
line-height: var(
|
|
847
916
|
--mod-detail-line-height,
|
|
848
917
|
var(--spectrum-detail-line-height)
|
|
849
918
|
);
|
|
850
|
-
|
|
851
|
-
|
|
919
|
+
letter-spacing: var(
|
|
920
|
+
--mod-detail-letter-spacing,
|
|
921
|
+
var(--spectrum-detail-letter-spacing)
|
|
922
|
+
);
|
|
852
923
|
text-transform: uppercase;
|
|
924
|
+
margin-block: 0;
|
|
853
925
|
}
|
|
854
|
-
|
|
855
|
-
.spectrum-Detail strong
|
|
926
|
+
|
|
927
|
+
.spectrum-Detail strong,
|
|
928
|
+
.spectrum-Detail .spectrum-Detail-strong {
|
|
856
929
|
font-style: var(
|
|
857
930
|
--mod-detail-sans-serif-strong-font-style,
|
|
858
931
|
var(--spectrum-detail-sans-serif-strong-font-style)
|
|
@@ -862,8 +935,9 @@ governing permissions and limitations under the License.
|
|
|
862
935
|
var(--spectrum-detail-sans-serif-strong-font-weight)
|
|
863
936
|
);
|
|
864
937
|
}
|
|
865
|
-
|
|
866
|
-
.spectrum-Detail em
|
|
938
|
+
|
|
939
|
+
.spectrum-Detail em,
|
|
940
|
+
.spectrum-Detail .spectrum-Detail-emphasized {
|
|
867
941
|
font-style: var(
|
|
868
942
|
--mod-detail-sans-serif-emphasized-font-style,
|
|
869
943
|
var(--spectrum-detail-sans-serif-emphasized-font-style)
|
|
@@ -873,6 +947,7 @@ governing permissions and limitations under the License.
|
|
|
873
947
|
var(--spectrum-detail-sans-serif-emphasized-font-weight)
|
|
874
948
|
);
|
|
875
949
|
}
|
|
950
|
+
|
|
876
951
|
.spectrum-Detail .spectrum-Detail-strong.spectrum-Detail-emphasized,
|
|
877
952
|
.spectrum-Detail em strong,
|
|
878
953
|
.spectrum-Detail strong em {
|
|
@@ -885,9 +960,10 @@ governing permissions and limitations under the License.
|
|
|
885
960
|
var(--spectrum-detail-sans-serif-strong-emphasized-font-weight)
|
|
886
961
|
);
|
|
887
962
|
}
|
|
963
|
+
|
|
964
|
+
.spectrum-Detail:lang(zh),
|
|
888
965
|
.spectrum-Detail:lang(ja),
|
|
889
|
-
.spectrum-Detail:lang(ko)
|
|
890
|
-
.spectrum-Detail:lang(zh) {
|
|
966
|
+
.spectrum-Detail:lang(ko) {
|
|
891
967
|
font-family: var(
|
|
892
968
|
--mod-detail-cjk-font-family,
|
|
893
969
|
var(--spectrum-detail-cjk-font-family)
|
|
@@ -905,12 +981,13 @@ governing permissions and limitations under the License.
|
|
|
905
981
|
var(--spectrum-detail-cjk-line-height)
|
|
906
982
|
);
|
|
907
983
|
}
|
|
908
|
-
|
|
984
|
+
|
|
985
|
+
.spectrum-Detail:lang(zh) strong,
|
|
986
|
+
.spectrum-Detail:lang(zh) .spectrum-Detail-strong,
|
|
909
987
|
.spectrum-Detail:lang(ja) strong,
|
|
910
|
-
.spectrum-Detail:lang(
|
|
988
|
+
.spectrum-Detail:lang(ja) .spectrum-Detail-strong,
|
|
911
989
|
.spectrum-Detail:lang(ko) strong,
|
|
912
|
-
.spectrum-Detail:lang(
|
|
913
|
-
.spectrum-Detail:lang(zh) strong {
|
|
990
|
+
.spectrum-Detail:lang(ko) .spectrum-Detail-strong {
|
|
914
991
|
font-style: var(
|
|
915
992
|
--mod-detail-cjk-strong-font-style,
|
|
916
993
|
var(--spectrum-detail-cjk-strong-font-style)
|
|
@@ -920,12 +997,13 @@ governing permissions and limitations under the License.
|
|
|
920
997
|
var(--spectrum-detail-cjk-strong-font-weight)
|
|
921
998
|
);
|
|
922
999
|
}
|
|
923
|
-
|
|
1000
|
+
|
|
1001
|
+
.spectrum-Detail:lang(zh) em,
|
|
1002
|
+
.spectrum-Detail:lang(zh) .spectrum-Detail-emphasized,
|
|
924
1003
|
.spectrum-Detail:lang(ja) em,
|
|
925
|
-
.spectrum-Detail:lang(
|
|
1004
|
+
.spectrum-Detail:lang(ja) .spectrum-Detail-emphasized,
|
|
926
1005
|
.spectrum-Detail:lang(ko) em,
|
|
927
|
-
.spectrum-Detail:lang(
|
|
928
|
-
.spectrum-Detail:lang(zh) em {
|
|
1006
|
+
.spectrum-Detail:lang(ko) .spectrum-Detail-emphasized {
|
|
929
1007
|
font-style: var(
|
|
930
1008
|
--mod-detail-cjk-emphasized-font-style,
|
|
931
1009
|
var(--spectrum-detail-cjk-emphasized-font-style)
|
|
@@ -935,15 +1013,16 @@ governing permissions and limitations under the License.
|
|
|
935
1013
|
var(--spectrum-detail-cjk-emphasized-font-weight)
|
|
936
1014
|
);
|
|
937
1015
|
}
|
|
1016
|
+
|
|
1017
|
+
.spectrum-Detail:lang(zh) .spectrum-Detail-strong.spectrum-Detail-emphasized,
|
|
1018
|
+
.spectrum-Detail:lang(zh) em strong,
|
|
1019
|
+
.spectrum-Detail:lang(zh) strong em,
|
|
938
1020
|
.spectrum-Detail:lang(ja) .spectrum-Detail-strong.spectrum-Detail-emphasized,
|
|
939
1021
|
.spectrum-Detail:lang(ja) em strong,
|
|
940
1022
|
.spectrum-Detail:lang(ja) strong em,
|
|
941
1023
|
.spectrum-Detail:lang(ko) .spectrum-Detail-strong.spectrum-Detail-emphasized,
|
|
942
1024
|
.spectrum-Detail:lang(ko) em strong,
|
|
943
|
-
.spectrum-Detail:lang(ko) strong em
|
|
944
|
-
.spectrum-Detail:lang(zh) .spectrum-Detail-strong.spectrum-Detail-emphasized,
|
|
945
|
-
.spectrum-Detail:lang(zh) em strong,
|
|
946
|
-
.spectrum-Detail:lang(zh) strong em {
|
|
1025
|
+
.spectrum-Detail:lang(ko) strong em {
|
|
947
1026
|
font-style: var(
|
|
948
1027
|
--mod-detail-cjk-strong-emphasized-font-style,
|
|
949
1028
|
var(--spectrum-detail-cjk-strong-emphasized-font-style)
|
|
@@ -953,6 +1032,7 @@ governing permissions and limitations under the License.
|
|
|
953
1032
|
var(--spectrum-detail-cjk-strong-emphasized-font-weight)
|
|
954
1033
|
);
|
|
955
1034
|
}
|
|
1035
|
+
|
|
956
1036
|
.spectrum-Detail--serif {
|
|
957
1037
|
font-family: var(
|
|
958
1038
|
--mod-detail-serif-font-family,
|
|
@@ -967,8 +1047,9 @@ governing permissions and limitations under the License.
|
|
|
967
1047
|
var(--spectrum-detail-serif-font-weight)
|
|
968
1048
|
);
|
|
969
1049
|
}
|
|
970
|
-
|
|
971
|
-
.spectrum-Detail--serif strong
|
|
1050
|
+
|
|
1051
|
+
.spectrum-Detail--serif strong,
|
|
1052
|
+
.spectrum-Detail--serif .spectrum-Detail-strong {
|
|
972
1053
|
font-style: var(
|
|
973
1054
|
--mod-detail-serif-strong-font-style,
|
|
974
1055
|
var(--spectrum-detail-serif-strong-font-style)
|
|
@@ -978,8 +1059,9 @@ governing permissions and limitations under the License.
|
|
|
978
1059
|
var(--spectrum-detail-serif-strong-font-weight)
|
|
979
1060
|
);
|
|
980
1061
|
}
|
|
981
|
-
|
|
982
|
-
.spectrum-Detail--serif em
|
|
1062
|
+
|
|
1063
|
+
.spectrum-Detail--serif em,
|
|
1064
|
+
.spectrum-Detail--serif .spectrum-Detail-emphasized {
|
|
983
1065
|
font-style: var(
|
|
984
1066
|
--mod-detail-serif-emphasized-font-style,
|
|
985
1067
|
var(--spectrum-detail-serif-emphasized-font-style)
|
|
@@ -989,6 +1071,7 @@ governing permissions and limitations under the License.
|
|
|
989
1071
|
var(--spectrum-detail-serif-emphasized-font-weight)
|
|
990
1072
|
);
|
|
991
1073
|
}
|
|
1074
|
+
|
|
992
1075
|
.spectrum-Detail--serif .spectrum-Detail-strong.spectrum-Detail-emphasized,
|
|
993
1076
|
.spectrum-Detail--serif em strong,
|
|
994
1077
|
.spectrum-Detail--serif strong em {
|
|
@@ -1001,6 +1084,7 @@ governing permissions and limitations under the License.
|
|
|
1001
1084
|
var(--spectrum-detail-serif-strong-emphasized-font-weight)
|
|
1002
1085
|
);
|
|
1003
1086
|
}
|
|
1087
|
+
|
|
1004
1088
|
.spectrum-Detail--light {
|
|
1005
1089
|
font-style: var(
|
|
1006
1090
|
--mod-detail-sans-serif-light-font-style,
|
|
@@ -1011,8 +1095,9 @@ governing permissions and limitations under the License.
|
|
|
1011
1095
|
var(--spectrum-detail-sans-serif-light-font-weight)
|
|
1012
1096
|
);
|
|
1013
1097
|
}
|
|
1014
|
-
|
|
1015
|
-
.spectrum-Detail--light strong
|
|
1098
|
+
|
|
1099
|
+
.spectrum-Detail--light strong,
|
|
1100
|
+
.spectrum-Detail--light .spectrum-Detail-strong {
|
|
1016
1101
|
font-style: var(
|
|
1017
1102
|
--mod-detail-sans-serif-light-strong-font-style,
|
|
1018
1103
|
var(--spectrum-detail-sans-serif-light-strong-font-style)
|
|
@@ -1022,8 +1107,9 @@ governing permissions and limitations under the License.
|
|
|
1022
1107
|
var(--spectrum-detail-sans-serif-light-strong-font-weight)
|
|
1023
1108
|
);
|
|
1024
1109
|
}
|
|
1025
|
-
|
|
1026
|
-
.spectrum-Detail--light em
|
|
1110
|
+
|
|
1111
|
+
.spectrum-Detail--light em,
|
|
1112
|
+
.spectrum-Detail--light .spectrum-Detail-emphasized {
|
|
1027
1113
|
font-style: var(
|
|
1028
1114
|
--mod-detail-sans-serif-light-emphasized-font-style,
|
|
1029
1115
|
var(--spectrum-detail-sans-serif-light-emphasized-font-style)
|
|
@@ -1033,6 +1119,7 @@ governing permissions and limitations under the License.
|
|
|
1033
1119
|
var(--spectrum-detail-sans-serif-light-emphasized-font-weight)
|
|
1034
1120
|
);
|
|
1035
1121
|
}
|
|
1122
|
+
|
|
1036
1123
|
.spectrum-Detail--light .spectrum-Detail-strong.spectrum-Body-emphasized,
|
|
1037
1124
|
.spectrum-Detail--light em strong,
|
|
1038
1125
|
.spectrum-Detail--light strong em {
|
|
@@ -1045,9 +1132,10 @@ governing permissions and limitations under the License.
|
|
|
1045
1132
|
var(--spectrum-detail-sans-serif-light-strong-emphasized-font-weight)
|
|
1046
1133
|
);
|
|
1047
1134
|
}
|
|
1135
|
+
|
|
1136
|
+
.spectrum-Detail--light:lang(zh),
|
|
1048
1137
|
.spectrum-Detail--light:lang(ja),
|
|
1049
|
-
.spectrum-Detail--light:lang(ko)
|
|
1050
|
-
.spectrum-Detail--light:lang(zh) {
|
|
1138
|
+
.spectrum-Detail--light:lang(ko) {
|
|
1051
1139
|
font-style: var(
|
|
1052
1140
|
--mod-detail-cjk-light-font-style,
|
|
1053
1141
|
var(--spectrum-detail-cjk-light-font-style)
|
|
@@ -1057,12 +1145,13 @@ governing permissions and limitations under the License.
|
|
|
1057
1145
|
var(--spectrum-detail-cjk-light-font-weight)
|
|
1058
1146
|
);
|
|
1059
1147
|
}
|
|
1060
|
-
|
|
1148
|
+
|
|
1149
|
+
.spectrum-Detail--light:lang(zh) strong,
|
|
1150
|
+
.spectrum-Detail--light:lang(zh) .spectrum-Detail-strong,
|
|
1061
1151
|
.spectrum-Detail--light:lang(ja) strong,
|
|
1062
|
-
.spectrum-Detail--light:lang(
|
|
1152
|
+
.spectrum-Detail--light:lang(ja) .spectrum-Detail-strong,
|
|
1063
1153
|
.spectrum-Detail--light:lang(ko) strong,
|
|
1064
|
-
.spectrum-Detail--light:lang(
|
|
1065
|
-
.spectrum-Detail--light:lang(zh) strong {
|
|
1154
|
+
.spectrum-Detail--light:lang(ko) .spectrum-Detail-strong {
|
|
1066
1155
|
font-style: var(
|
|
1067
1156
|
--mod-detail-cjk-light-strong-font-style,
|
|
1068
1157
|
var(--spectrum-detail-cjk-light-strong-font-style)
|
|
@@ -1072,12 +1161,13 @@ governing permissions and limitations under the License.
|
|
|
1072
1161
|
var(--spectrum-detail-cjk-light-strong-font-weight)
|
|
1073
1162
|
);
|
|
1074
1163
|
}
|
|
1075
|
-
|
|
1164
|
+
|
|
1165
|
+
.spectrum-Detail--light:lang(zh) em,
|
|
1166
|
+
.spectrum-Detail--light:lang(zh) .spectrum-Detail-emphasized,
|
|
1076
1167
|
.spectrum-Detail--light:lang(ja) em,
|
|
1077
|
-
.spectrum-Detail--light:lang(
|
|
1168
|
+
.spectrum-Detail--light:lang(ja) .spectrum-Detail-emphasized,
|
|
1078
1169
|
.spectrum-Detail--light:lang(ko) em,
|
|
1079
|
-
.spectrum-Detail--light:lang(
|
|
1080
|
-
.spectrum-Detail--light:lang(zh) em {
|
|
1170
|
+
.spectrum-Detail--light:lang(ko) .spectrum-Detail-emphasized {
|
|
1081
1171
|
font-style: var(
|
|
1082
1172
|
--mod-detail-cjk-light-emphasized-font-style,
|
|
1083
1173
|
var(--spectrum-detail-cjk-light-emphasized-font-style)
|
|
@@ -1087,11 +1177,12 @@ governing permissions and limitations under the License.
|
|
|
1087
1177
|
var(--spectrum-detail-cjk-light-emphasized-font-weight)
|
|
1088
1178
|
);
|
|
1089
1179
|
}
|
|
1180
|
+
|
|
1181
|
+
.spectrum-Detail--light:lang(zh)
|
|
1182
|
+
.spectrum-Detail-strong.spectrum-Detail-emphasized,
|
|
1090
1183
|
.spectrum-Detail--light:lang(ja)
|
|
1091
1184
|
.spectrum-Detail-strong.spectrum-Detail-emphasized,
|
|
1092
1185
|
.spectrum-Detail--light:lang(ko)
|
|
1093
|
-
.spectrum-Detail-strong.spectrum-Detail-emphasized,
|
|
1094
|
-
.spectrum-Detail--light:lang(zh)
|
|
1095
1186
|
.spectrum-Detail-strong.spectrum-Detail-emphasized {
|
|
1096
1187
|
font-style: var(
|
|
1097
1188
|
--mod-detail-cjk-light-strong-emphasized-font-style,
|
|
@@ -1102,6 +1193,7 @@ governing permissions and limitations under the License.
|
|
|
1102
1193
|
var(--spectrum-detail-cjk-light-strong-emphasized-font-weight)
|
|
1103
1194
|
);
|
|
1104
1195
|
}
|
|
1196
|
+
|
|
1105
1197
|
.spectrum-Detail--serif.spectrum-Detail--light {
|
|
1106
1198
|
font-style: var(
|
|
1107
1199
|
--mod-detail-serif-light-font-style,
|
|
@@ -1112,8 +1204,9 @@ governing permissions and limitations under the License.
|
|
|
1112
1204
|
var(--spectrum-detail-serif-light-font-weight)
|
|
1113
1205
|
);
|
|
1114
1206
|
}
|
|
1115
|
-
|
|
1116
|
-
.spectrum-Detail--serif.spectrum-Detail--light strong
|
|
1207
|
+
|
|
1208
|
+
.spectrum-Detail--serif.spectrum-Detail--light strong,
|
|
1209
|
+
.spectrum-Detail--serif.spectrum-Detail--light .spectrum-Detail-strong {
|
|
1117
1210
|
font-style: var(
|
|
1118
1211
|
--mod-detail-serif-light-strong-font-style,
|
|
1119
1212
|
var(--spectrum-detail-serif-light-strong-font-style)
|
|
@@ -1123,8 +1216,9 @@ governing permissions and limitations under the License.
|
|
|
1123
1216
|
var(--spectrum-detail-serif-light-strong-font-weight)
|
|
1124
1217
|
);
|
|
1125
1218
|
}
|
|
1126
|
-
|
|
1127
|
-
.spectrum-Detail--serif.spectrum-Detail--light em
|
|
1219
|
+
|
|
1220
|
+
.spectrum-Detail--serif.spectrum-Detail--light em,
|
|
1221
|
+
.spectrum-Detail--serif.spectrum-Detail--light .spectrum-Detail-emphasized {
|
|
1128
1222
|
font-style: var(
|
|
1129
1223
|
--mod-detail-serif-light-emphasized-font-style,
|
|
1130
1224
|
var(--spectrum-detail-serif-light-emphasized-font-style)
|
|
@@ -1134,6 +1228,7 @@ governing permissions and limitations under the License.
|
|
|
1134
1228
|
var(--spectrum-detail-serif-light-emphasized-font-weight)
|
|
1135
1229
|
);
|
|
1136
1230
|
}
|
|
1231
|
+
|
|
1137
1232
|
.spectrum-Detail--serif.spectrum-Detail--light
|
|
1138
1233
|
.spectrum-Detail-strong.spectrum-Body-emphasized,
|
|
1139
1234
|
.spectrum-Detail--serif.spectrum-Detail--light em strong,
|
|
@@ -1147,65 +1242,59 @@ governing permissions and limitations under the License.
|
|
|
1147
1242
|
var(--spectrum-detail-serif-light-strong-emphasized-font-weight)
|
|
1148
1243
|
);
|
|
1149
1244
|
}
|
|
1245
|
+
|
|
1150
1246
|
.spectrum-Typography .spectrum-Detail {
|
|
1151
|
-
margin-block-end: var(
|
|
1152
|
-
--mod-detail-margin-end,
|
|
1153
|
-
var(--spectrum-detail-margin-end)
|
|
1154
|
-
);
|
|
1155
1247
|
margin-block-start: var(
|
|
1156
1248
|
--mod-detail-margin-start,
|
|
1157
1249
|
var(--spectrum-detail-margin-start)
|
|
1158
1250
|
);
|
|
1251
|
+
margin-block-end: var(
|
|
1252
|
+
--mod-detail-margin-end,
|
|
1253
|
+
var(--spectrum-detail-margin-end)
|
|
1254
|
+
);
|
|
1159
1255
|
}
|
|
1256
|
+
|
|
1160
1257
|
.spectrum-Code {
|
|
1161
1258
|
--spectrum-code-font-family: var(--spectrum-code-font-family-stack);
|
|
1162
1259
|
--spectrum-code-cjk-letter-spacing: var(--spectrum-cjk-letter-spacing);
|
|
1163
1260
|
--spectrum-code-font-color: var(--spectrum-code-color);
|
|
1164
1261
|
}
|
|
1165
|
-
|
|
1166
|
-
.spectrum-Heading {
|
|
1167
|
-
--highcontrast-heading-font-color: Text;
|
|
1168
|
-
}
|
|
1169
|
-
.spectrum-Body {
|
|
1170
|
-
--highcontrast-body-font-color: Text;
|
|
1171
|
-
}
|
|
1172
|
-
.spectrum-Detail {
|
|
1173
|
-
--highcontrast-detail-font-color: Text;
|
|
1174
|
-
}
|
|
1175
|
-
.spectrum-Code {
|
|
1176
|
-
--highcontrast-code-font-color: Text;
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1262
|
+
|
|
1179
1263
|
.spectrum-Code--sizeXS {
|
|
1180
1264
|
--spectrum-code-font-size: var(--spectrum-code-size-xs);
|
|
1181
1265
|
}
|
|
1266
|
+
|
|
1182
1267
|
.spectrum-Code--sizeS {
|
|
1183
1268
|
--spectrum-code-font-size: var(--spectrum-code-size-s);
|
|
1184
1269
|
}
|
|
1270
|
+
|
|
1185
1271
|
.spectrum-Code--sizeM {
|
|
1186
1272
|
--spectrum-code-font-size: var(--spectrum-code-size-m);
|
|
1187
1273
|
}
|
|
1274
|
+
|
|
1188
1275
|
.spectrum-Code--sizeL {
|
|
1189
1276
|
--spectrum-code-font-size: var(--spectrum-code-size-l);
|
|
1190
1277
|
}
|
|
1278
|
+
|
|
1191
1279
|
.spectrum-Code--sizeXL {
|
|
1192
1280
|
--spectrum-code-font-size: var(--spectrum-code-size-xl);
|
|
1193
1281
|
}
|
|
1282
|
+
|
|
1194
1283
|
.spectrum-Code {
|
|
1195
|
-
color: var(
|
|
1196
|
-
--highcontrast-code-font-color,
|
|
1197
|
-
var(--mod-code-font-color, var(--spectrum-code-font-color))
|
|
1198
|
-
);
|
|
1199
1284
|
font-family: var(--mod-code-font-family, var(--spectrum-code-font-family));
|
|
1200
|
-
font-size: var(--mod-code-font-size, var(--spectrum-code-font-size));
|
|
1201
1285
|
font-style: var(--mod-code-font-style, var(--spectrum-code-font-style));
|
|
1202
1286
|
font-weight: var(--mod-code-font-weight, var(--spectrum-code-font-weight));
|
|
1287
|
+
font-size: var(--mod-code-font-size, var(--spectrum-code-font-size));
|
|
1203
1288
|
line-height: var(--mod-code-line-height, var(--spectrum-code-line-height));
|
|
1204
|
-
|
|
1205
|
-
|
|
1289
|
+
color: var(
|
|
1290
|
+
--highcontrast-code-font-color,
|
|
1291
|
+
var(--mod-code-font-color, var(--spectrum-code-font-color))
|
|
1292
|
+
);
|
|
1293
|
+
margin-block: 0;
|
|
1206
1294
|
}
|
|
1207
|
-
|
|
1208
|
-
.spectrum-Code strong
|
|
1295
|
+
|
|
1296
|
+
.spectrum-Code strong,
|
|
1297
|
+
.spectrum-Code .spectrum-Code-strong {
|
|
1209
1298
|
font-style: var(
|
|
1210
1299
|
--mod-code-strong-font-style,
|
|
1211
1300
|
var(--spectrum-code-strong-font-style)
|
|
@@ -1215,8 +1304,9 @@ governing permissions and limitations under the License.
|
|
|
1215
1304
|
var(--spectrum-code-strong-font-weight)
|
|
1216
1305
|
);
|
|
1217
1306
|
}
|
|
1218
|
-
|
|
1219
|
-
.spectrum-Code em
|
|
1307
|
+
|
|
1308
|
+
.spectrum-Code em,
|
|
1309
|
+
.spectrum-Code .spectrum-Code-emphasized {
|
|
1220
1310
|
font-style: var(
|
|
1221
1311
|
--mod-code-emphasized-font-style,
|
|
1222
1312
|
var(--spectrum-code-emphasized-font-style)
|
|
@@ -1226,6 +1316,7 @@ governing permissions and limitations under the License.
|
|
|
1226
1316
|
var(--spectrum-code-emphasized-font-weight)
|
|
1227
1317
|
);
|
|
1228
1318
|
}
|
|
1319
|
+
|
|
1229
1320
|
.spectrum-Code .spectrum-Code-strong.spectrum-Code-emphasized,
|
|
1230
1321
|
.spectrum-Code em strong,
|
|
1231
1322
|
.spectrum-Code strong em {
|
|
@@ -1238,9 +1329,10 @@ governing permissions and limitations under the License.
|
|
|
1238
1329
|
var(--spectrum-code-strong-emphasized-font-weight)
|
|
1239
1330
|
);
|
|
1240
1331
|
}
|
|
1332
|
+
|
|
1333
|
+
.spectrum-Code:lang(zh),
|
|
1241
1334
|
.spectrum-Code:lang(ja),
|
|
1242
|
-
.spectrum-Code:lang(ko)
|
|
1243
|
-
.spectrum-Code:lang(zh) {
|
|
1335
|
+
.spectrum-Code:lang(ko) {
|
|
1244
1336
|
font-family: var(
|
|
1245
1337
|
--mod-code-cjk-font-family,
|
|
1246
1338
|
var(--spectrum-code-cjk-font-family)
|
|
@@ -1253,21 +1345,22 @@ governing permissions and limitations under the License.
|
|
|
1253
1345
|
--mod-code-cjk-font-weight,
|
|
1254
1346
|
var(--spectrum-code-cjk-font-weight)
|
|
1255
1347
|
);
|
|
1256
|
-
letter-spacing: var(
|
|
1257
|
-
--mod-code-cjk-letter-spacing,
|
|
1258
|
-
var(--spectrum-code-cjk-letter-spacing)
|
|
1259
|
-
);
|
|
1260
1348
|
line-height: var(
|
|
1261
1349
|
--mod-code-cjk-line-height,
|
|
1262
1350
|
var(--spectrum-code-cjk-line-height)
|
|
1263
1351
|
);
|
|
1352
|
+
letter-spacing: var(
|
|
1353
|
+
--mod-code-cjk-letter-spacing,
|
|
1354
|
+
var(--spectrum-code-cjk-letter-spacing)
|
|
1355
|
+
);
|
|
1264
1356
|
}
|
|
1265
|
-
|
|
1357
|
+
|
|
1358
|
+
.spectrum-Code:lang(zh) strong,
|
|
1359
|
+
.spectrum-Code:lang(zh) .spectrum-Code-strong,
|
|
1266
1360
|
.spectrum-Code:lang(ja) strong,
|
|
1267
|
-
.spectrum-Code:lang(
|
|
1361
|
+
.spectrum-Code:lang(ja) .spectrum-Code-strong,
|
|
1268
1362
|
.spectrum-Code:lang(ko) strong,
|
|
1269
|
-
.spectrum-Code:lang(
|
|
1270
|
-
.spectrum-Code:lang(zh) strong {
|
|
1363
|
+
.spectrum-Code:lang(ko) .spectrum-Code-strong {
|
|
1271
1364
|
font-style: var(
|
|
1272
1365
|
--mod-code-cjk-strong-font-style,
|
|
1273
1366
|
var(--spectrum-code-cjk-strong-font-style)
|
|
@@ -1277,12 +1370,13 @@ governing permissions and limitations under the License.
|
|
|
1277
1370
|
var(--spectrum-code-cjk-strong-font-weight)
|
|
1278
1371
|
);
|
|
1279
1372
|
}
|
|
1280
|
-
|
|
1373
|
+
|
|
1374
|
+
.spectrum-Code:lang(zh) em,
|
|
1375
|
+
.spectrum-Code:lang(zh) .spectrum-Code-emphasized,
|
|
1281
1376
|
.spectrum-Code:lang(ja) em,
|
|
1282
|
-
.spectrum-Code:lang(
|
|
1377
|
+
.spectrum-Code:lang(ja) .spectrum-Code-emphasized,
|
|
1283
1378
|
.spectrum-Code:lang(ko) em,
|
|
1284
|
-
.spectrum-Code:lang(
|
|
1285
|
-
.spectrum-Code:lang(zh) em {
|
|
1379
|
+
.spectrum-Code:lang(ko) .spectrum-Code-emphasized {
|
|
1286
1380
|
font-style: var(
|
|
1287
1381
|
--mod-code-cjk-emphasized-font-style,
|
|
1288
1382
|
var(--spectrum-code-cjk-emphasized-font-style)
|
|
@@ -1292,15 +1386,16 @@ governing permissions and limitations under the License.
|
|
|
1292
1386
|
var(--spectrum-code-cjk-emphasized-font-weight)
|
|
1293
1387
|
);
|
|
1294
1388
|
}
|
|
1389
|
+
|
|
1390
|
+
.spectrum-Code:lang(zh) .spectrum-Code-strong.spectrum-Code-emphasized,
|
|
1391
|
+
.spectrum-Code:lang(zh) em strong,
|
|
1392
|
+
.spectrum-Code:lang(zh) strong em,
|
|
1295
1393
|
.spectrum-Code:lang(ja) .spectrum-Code-strong.spectrum-Code-emphasized,
|
|
1296
1394
|
.spectrum-Code:lang(ja) em strong,
|
|
1297
1395
|
.spectrum-Code:lang(ja) strong em,
|
|
1298
1396
|
.spectrum-Code:lang(ko) .spectrum-Code-strong.spectrum-Code-emphasized,
|
|
1299
1397
|
.spectrum-Code:lang(ko) em strong,
|
|
1300
|
-
.spectrum-Code:lang(ko) strong em
|
|
1301
|
-
.spectrum-Code:lang(zh) .spectrum-Code-strong.spectrum-Code-emphasized,
|
|
1302
|
-
.spectrum-Code:lang(zh) em strong,
|
|
1303
|
-
.spectrum-Code:lang(zh) strong em {
|
|
1398
|
+
.spectrum-Code:lang(ko) strong em {
|
|
1304
1399
|
font-style: var(
|
|
1305
1400
|
--mod-code-cjk-strong-emphasized-font-style,
|
|
1306
1401
|
var(--spectrum-code-cjk-strong-emphasized-font-style)
|