@spectrum-web-components/styles 0.23.0 → 0.23.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/package.json +2 -2
- package/src/spectrum-body.css +68 -68
- package/src/spectrum-body.css.dev.js +16 -14
- package/src/spectrum-body.css.dev.js.map +2 -2
- package/src/spectrum-body.css.js +16 -14
- package/src/spectrum-body.css.js.map +2 -2
- package/src/spectrum-code.css +15 -50
- package/src/spectrum-code.css.dev.js +1 -11
- package/src/spectrum-code.css.dev.js.map +2 -2
- package/src/spectrum-code.css.js +1 -11
- package/src/spectrum-code.css.js.map +2 -2
- package/src/spectrum-config.js +43 -58
- package/src/spectrum-detail.css +22 -57
- package/src/spectrum-heading.css +119 -91
- package/src/spectrum-heading.css.dev.js +32 -0
- package/src/spectrum-heading.css.dev.js.map +2 -2
- package/src/spectrum-heading.css.js +32 -0
- package/src/spectrum-heading.css.js.map +2 -2
- package/src/spectrum-lang.css +85 -395
- package/src/spectrum-lang.css.dev.js +2 -14
- package/src/spectrum-lang.css.dev.js.map +2 -2
- package/src/spectrum-lang.css.js +2 -14
- package/src/spectrum-lang.css.js.map +2 -2
- package/src/spectrum-typography.css +16 -51
- package/src/spectrum-typography.css.dev.js +7 -21
- package/src/spectrum-typography.css.dev.js.map +2 -2
- package/src/spectrum-typography.css.js +7 -21
- package/src/spectrum-typography.css.js.map +2 -2
- package/tokens/express/custom-dark-vars.css +17 -0
- package/tokens/express/custom-darkest-vars.css +17 -0
- package/tokens/express/custom-large-vars.css +4 -2
- package/tokens/express/custom-light-vars.css +16 -0
- package/tokens/express/custom-medium-vars.css +4 -2
- package/tokens/express/global-vars.css +8 -9
- package/tokens/express/large-vars.css +2 -0
- package/tokens/express/medium-vars.css +0 -2
- package/tokens/global-vars.css +24 -0
- package/tokens/large-vars.css +4 -1
- package/tokens/medium-vars.css +4 -1
- package/tokens/spectrum/custom-dark-vars.css +31 -0
- package/tokens/spectrum/custom-darkest-vars.css +31 -0
- package/tokens/spectrum/custom-large-vars.css +22 -0
- package/tokens/spectrum/custom-light-vars.css +30 -0
- package/tokens/spectrum/custom-medium-vars.css +22 -0
- package/tokens/spectrum/global-vars.css +4 -1
- package/tokens/spectrum/medium-vars.css +0 -4
package/src/spectrum-lang.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright
|
|
2
|
+
Copyright 2023 Adobe. All rights reserved.
|
|
3
3
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
5
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
@@ -15,61 +15,51 @@ governing permissions and limitations under the License.
|
|
|
15
15
|
font-family: var(
|
|
16
16
|
--spectrum-alias-font-family-ar,
|
|
17
17
|
var(--spectrum-global-font-font-family-ar)
|
|
18
|
-
);
|
|
18
|
+
);
|
|
19
19
|
}
|
|
20
|
-
|
|
21
20
|
.spectrum:lang(he) {
|
|
22
21
|
font-family: var(
|
|
23
22
|
--spectrum-alias-font-family-he,
|
|
24
23
|
var(--spectrum-global-font-font-family-he)
|
|
25
|
-
);
|
|
24
|
+
);
|
|
26
25
|
}
|
|
27
|
-
|
|
28
26
|
.spectrum:lang(zh-Hans) {
|
|
29
27
|
font-family: var(
|
|
30
28
|
--spectrum-alias-font-family-zhhans,
|
|
31
29
|
var(--spectrum-global-font-font-family-zhhans)
|
|
32
|
-
);
|
|
30
|
+
);
|
|
33
31
|
}
|
|
34
|
-
|
|
35
32
|
.spectrum:lang(zh-Hant) {
|
|
36
33
|
font-family: var(
|
|
37
34
|
--spectrum-alias-font-family-zh,
|
|
38
35
|
var(--spectrum-global-font-font-family-zh)
|
|
39
|
-
);
|
|
36
|
+
);
|
|
40
37
|
}
|
|
41
|
-
|
|
42
38
|
.spectrum:lang(zh) {
|
|
43
39
|
font-family: var(
|
|
44
40
|
--spectrum-alias-font-family-zh,
|
|
45
41
|
var(--spectrum-global-font-font-family-zh)
|
|
46
|
-
);
|
|
42
|
+
);
|
|
47
43
|
}
|
|
48
|
-
|
|
49
44
|
.spectrum:lang(ko) {
|
|
50
45
|
font-family: var(
|
|
51
46
|
--spectrum-alias-font-family-ko,
|
|
52
47
|
var(--spectrum-global-font-font-family-ko)
|
|
53
|
-
);
|
|
48
|
+
);
|
|
54
49
|
}
|
|
55
|
-
|
|
56
50
|
.spectrum:lang(ja) {
|
|
57
51
|
font-family: var(
|
|
58
52
|
--spectrum-alias-font-family-ja,
|
|
59
53
|
var(--spectrum-global-font-font-family-ja)
|
|
60
|
-
);
|
|
54
|
+
);
|
|
61
55
|
}
|
|
62
|
-
|
|
63
56
|
.spectrum:lang(ja) .spectrum-Heading--sizeXXXL,
|
|
64
57
|
.spectrum:lang(ko) .spectrum-Heading--sizeXXXL,
|
|
65
58
|
.spectrum:lang(zh) .spectrum-Heading--sizeXXXL {
|
|
66
59
|
font-size: var(
|
|
67
60
|
--spectrum-heading-han-xxxl-text-size,
|
|
68
61
|
var(--spectrum-alias-heading-han-xxxl-text-size)
|
|
69
|
-
);
|
|
70
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeXXXL,
|
|
71
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeXXXL */
|
|
72
|
-
|
|
62
|
+
);
|
|
73
63
|
font-style: var(
|
|
74
64
|
--spectrum-heading-han-xxxl-text-font-style,
|
|
75
65
|
var(--spectrum-global-font-style-regular)
|
|
@@ -90,17 +80,13 @@ governing permissions and limitations under the License.
|
|
|
90
80
|
margin-top: 0;
|
|
91
81
|
text-transform: var(--spectrum-heading-han-xxxl-text-transform, none);
|
|
92
82
|
}
|
|
93
|
-
|
|
94
83
|
.spectrum:lang(ja) .spectrum-Heading--sizeXXL,
|
|
95
84
|
.spectrum:lang(ko) .spectrum-Heading--sizeXXL,
|
|
96
85
|
.spectrum:lang(zh) .spectrum-Heading--sizeXXL {
|
|
97
86
|
font-size: var(
|
|
98
87
|
--spectrum-heading-han-xxl-text-size,
|
|
99
88
|
var(--spectrum-alias-heading-han-xxl-text-size)
|
|
100
|
-
);
|
|
101
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeXXL,
|
|
102
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeXXL */
|
|
103
|
-
|
|
89
|
+
);
|
|
104
90
|
font-style: var(
|
|
105
91
|
--spectrum-heading-han-xxl-text-font-style,
|
|
106
92
|
var(--spectrum-global-font-style-regular)
|
|
@@ -121,17 +107,13 @@ governing permissions and limitations under the License.
|
|
|
121
107
|
margin-top: 0;
|
|
122
108
|
text-transform: var(--spectrum-heading-han-xxl-text-transform, none);
|
|
123
109
|
}
|
|
124
|
-
|
|
125
110
|
.spectrum:lang(ja) .spectrum-Heading--sizeXL,
|
|
126
111
|
.spectrum:lang(ko) .spectrum-Heading--sizeXL,
|
|
127
112
|
.spectrum:lang(zh) .spectrum-Heading--sizeXL {
|
|
128
113
|
font-size: var(
|
|
129
114
|
--spectrum-heading-han-xl-text-size,
|
|
130
115
|
var(--spectrum-alias-heading-han-xl-text-size)
|
|
131
|
-
);
|
|
132
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeXL,
|
|
133
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeXL */
|
|
134
|
-
|
|
116
|
+
);
|
|
135
117
|
font-style: var(
|
|
136
118
|
--spectrum-heading-han-xl-text-font-style,
|
|
137
119
|
var(--spectrum-global-font-style-regular)
|
|
@@ -152,17 +134,13 @@ governing permissions and limitations under the License.
|
|
|
152
134
|
margin-top: 0;
|
|
153
135
|
text-transform: var(--spectrum-heading-han-xl-text-transform, none);
|
|
154
136
|
}
|
|
155
|
-
|
|
156
137
|
.spectrum:lang(ja) .spectrum-Heading--sizeL,
|
|
157
138
|
.spectrum:lang(ko) .spectrum-Heading--sizeL,
|
|
158
139
|
.spectrum:lang(zh) .spectrum-Heading--sizeL {
|
|
159
140
|
font-size: var(
|
|
160
141
|
--spectrum-heading-han-l-text-size,
|
|
161
142
|
var(--spectrum-alias-heading-han-l-text-size)
|
|
162
|
-
);
|
|
163
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeL,
|
|
164
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeL */
|
|
165
|
-
|
|
143
|
+
);
|
|
166
144
|
font-style: var(
|
|
167
145
|
--spectrum-heading-han-l-text-font-style,
|
|
168
146
|
var(--spectrum-global-font-style-regular)
|
|
@@ -183,17 +161,13 @@ governing permissions and limitations under the License.
|
|
|
183
161
|
margin-top: 0;
|
|
184
162
|
text-transform: var(--spectrum-heading-han-l-text-transform, none);
|
|
185
163
|
}
|
|
186
|
-
|
|
187
164
|
.spectrum:lang(ja) .spectrum-Heading--sizeM,
|
|
188
165
|
.spectrum:lang(ko) .spectrum-Heading--sizeM,
|
|
189
166
|
.spectrum:lang(zh) .spectrum-Heading--sizeM {
|
|
190
167
|
font-size: var(
|
|
191
168
|
--spectrum-heading-han-m-text-size,
|
|
192
169
|
var(--spectrum-alias-heading-han-m-text-size)
|
|
193
|
-
);
|
|
194
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeM,
|
|
195
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeM */
|
|
196
|
-
|
|
170
|
+
);
|
|
197
171
|
font-style: var(
|
|
198
172
|
--spectrum-heading-han-m-text-font-style,
|
|
199
173
|
var(--spectrum-global-font-style-regular)
|
|
@@ -214,17 +188,13 @@ governing permissions and limitations under the License.
|
|
|
214
188
|
margin-top: 0;
|
|
215
189
|
text-transform: var(--spectrum-heading-han-m-text-transform, none);
|
|
216
190
|
}
|
|
217
|
-
|
|
218
191
|
.spectrum:lang(ja) .spectrum-Heading--sizeS,
|
|
219
192
|
.spectrum:lang(ko) .spectrum-Heading--sizeS,
|
|
220
193
|
.spectrum:lang(zh) .spectrum-Heading--sizeS {
|
|
221
194
|
font-size: var(
|
|
222
195
|
--spectrum-heading-han-s-text-size,
|
|
223
196
|
var(--spectrum-alias-heading-han-s-text-size)
|
|
224
|
-
);
|
|
225
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeS,
|
|
226
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeS */
|
|
227
|
-
|
|
197
|
+
);
|
|
228
198
|
font-style: var(
|
|
229
199
|
--spectrum-heading-han-s-text-font-style,
|
|
230
200
|
var(--spectrum-global-font-style-regular)
|
|
@@ -245,17 +215,13 @@ governing permissions and limitations under the License.
|
|
|
245
215
|
margin-top: 0;
|
|
246
216
|
text-transform: var(--spectrum-heading-han-s-text-transform, none);
|
|
247
217
|
}
|
|
248
|
-
|
|
249
218
|
.spectrum:lang(ja) .spectrum-Heading--sizeXS,
|
|
250
219
|
.spectrum:lang(ko) .spectrum-Heading--sizeXS,
|
|
251
220
|
.spectrum:lang(zh) .spectrum-Heading--sizeXS {
|
|
252
221
|
font-size: var(
|
|
253
222
|
--spectrum-heading-han-xs-text-size,
|
|
254
223
|
var(--spectrum-alias-heading-han-xs-text-size)
|
|
255
|
-
);
|
|
256
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeXS,
|
|
257
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeXS */
|
|
258
|
-
|
|
224
|
+
);
|
|
259
225
|
font-style: var(
|
|
260
226
|
--spectrum-heading-han-xs-text-font-style,
|
|
261
227
|
var(--spectrum-global-font-style-regular)
|
|
@@ -276,17 +242,13 @@ governing permissions and limitations under the License.
|
|
|
276
242
|
margin-top: 0;
|
|
277
243
|
text-transform: var(--spectrum-heading-han-xs-text-transform, none);
|
|
278
244
|
}
|
|
279
|
-
|
|
280
245
|
.spectrum:lang(ja) .spectrum-Heading--sizeXXS,
|
|
281
246
|
.spectrum:lang(ko) .spectrum-Heading--sizeXXS,
|
|
282
247
|
.spectrum:lang(zh) .spectrum-Heading--sizeXXS {
|
|
283
248
|
font-size: var(
|
|
284
249
|
--spectrum-heading-han-xxs-text-size,
|
|
285
250
|
var(--spectrum-alias-heading-han-xxs-text-size)
|
|
286
|
-
);
|
|
287
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeXXS,
|
|
288
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeXXS */
|
|
289
|
-
|
|
251
|
+
);
|
|
290
252
|
font-style: var(
|
|
291
253
|
--spectrum-heading-han-xxs-text-font-style,
|
|
292
254
|
var(--spectrum-global-font-style-regular)
|
|
@@ -307,38 +269,25 @@ governing permissions and limitations under the License.
|
|
|
307
269
|
margin-top: 0;
|
|
308
270
|
text-transform: var(--spectrum-heading-han-xxs-text-transform, none);
|
|
309
271
|
}
|
|
310
|
-
|
|
311
272
|
.spectrum:lang(ja) .spectrum-Heading--heavy,
|
|
312
273
|
.spectrum:lang(ko) .spectrum-Heading--heavy,
|
|
313
274
|
.spectrum:lang(zh) .spectrum-Heading--heavy {
|
|
314
275
|
font-weight: var(
|
|
315
276
|
--spectrum-heading-han-m-text-font-weight,
|
|
316
277
|
var(--spectrum-alias-han-heading-text-font-weight-regular)
|
|
317
|
-
);
|
|
318
|
-
* .spectrum:lang(ko) .spectrum-Heading--heavy,
|
|
319
|
-
* .spectrum:lang(zh) .spectrum-Heading--heavy */
|
|
278
|
+
);
|
|
320
279
|
}
|
|
321
|
-
|
|
322
280
|
.spectrum:lang(ja) .spectrum-Heading--heavy .spectrum-Heading--emphasized,
|
|
323
281
|
.spectrum:lang(ja) .spectrum-Heading--heavy em,
|
|
324
282
|
.spectrum:lang(ko) .spectrum-Heading--heavy .spectrum-Heading--emphasized,
|
|
325
283
|
.spectrum:lang(ko) .spectrum-Heading--heavy em,
|
|
326
284
|
.spectrum:lang(zh) .spectrum-Heading--heavy .spectrum-Heading--emphasized,
|
|
327
285
|
.spectrum:lang(zh) .spectrum-Heading--heavy em {
|
|
328
|
-
font-style: var(
|
|
329
|
-
--spectrum-heading-han-heavy-m-emphasized-text-font-style
|
|
330
|
-
); /* .spectrum:lang(ja) .spectrum-Heading--heavy em,
|
|
331
|
-
* .spectrum:lang(ja) .spectrum-Heading--heavy .spectrum-Heading--emphasized,
|
|
332
|
-
* .spectrum:lang(ko) .spectrum-Heading--heavy em,
|
|
333
|
-
* .spectrum:lang(ko) .spectrum-Heading--heavy .spectrum-Heading--emphasized,
|
|
334
|
-
* .spectrum:lang(zh) .spectrum-Heading--heavy em,
|
|
335
|
-
* .spectrum:lang(zh) .spectrum-Heading--heavy .spectrum-Heading--emphasized */
|
|
336
|
-
|
|
286
|
+
font-style: var(--spectrum-heading-han-heavy-m-emphasized-text-font-style);
|
|
337
287
|
font-weight: var(
|
|
338
288
|
--spectrum-heading-han-heavy-m-emphasized-text-font-weight
|
|
339
289
|
);
|
|
340
290
|
}
|
|
341
|
-
|
|
342
291
|
.spectrum:lang(ja) .spectrum-Heading--heavy .spectrum-Heading--strong,
|
|
343
292
|
.spectrum:lang(ja) .spectrum-Heading--heavy strong,
|
|
344
293
|
.spectrum:lang(ko) .spectrum-Heading--heavy .spectrum-Heading--strong,
|
|
@@ -348,30 +297,20 @@ governing permissions and limitations under the License.
|
|
|
348
297
|
font-style: var(
|
|
349
298
|
--spectrum-heading-m-heavy-strong-text-font-style,
|
|
350
299
|
var(--spectrum-global-font-style-regular)
|
|
351
|
-
);
|
|
352
|
-
* .spectrum:lang(ja) .spectrum-Heading--heavy .spectrum-Heading--strong,
|
|
353
|
-
* .spectrum:lang(ko) .spectrum-Heading--heavy strong,
|
|
354
|
-
* .spectrum:lang(ko) .spectrum-Heading--heavy .spectrum-Heading--strong,
|
|
355
|
-
* .spectrum:lang(zh) .spectrum-Heading--heavy strong,
|
|
356
|
-
* .spectrum:lang(zh) .spectrum-Heading--heavy .spectrum-Heading--strong */
|
|
357
|
-
|
|
300
|
+
);
|
|
358
301
|
font-weight: var(
|
|
359
302
|
--spectrum-heading-m-heavy-strong-text-font-weight,
|
|
360
303
|
var(--spectrum-alias-heading-text-font-weight-heavy-strong)
|
|
361
304
|
);
|
|
362
305
|
}
|
|
363
|
-
|
|
364
306
|
.spectrum:lang(ja) .spectrum-Heading--light,
|
|
365
307
|
.spectrum:lang(ko) .spectrum-Heading--light,
|
|
366
308
|
.spectrum:lang(zh) .spectrum-Heading--light {
|
|
367
309
|
font-weight: var(
|
|
368
310
|
--spectrum-heading-han-m-text-font-weight,
|
|
369
311
|
var(--spectrum-alias-han-heading-text-font-weight-regular)
|
|
370
|
-
);
|
|
371
|
-
* .spectrum:lang(ko) .spectrum-Heading--light,
|
|
372
|
-
* .spectrum:lang(zh) .spectrum-Heading--light */
|
|
312
|
+
);
|
|
373
313
|
}
|
|
374
|
-
|
|
375
314
|
.spectrum:lang(ja) .spectrum-Heading--light .spectrum-Heading--emphasized,
|
|
376
315
|
.spectrum:lang(ja) .spectrum-Heading--light em,
|
|
377
316
|
.spectrum:lang(ko) .spectrum-Heading--light .spectrum-Heading--emphasized,
|
|
@@ -381,19 +320,12 @@ governing permissions and limitations under the License.
|
|
|
381
320
|
font-style: var(
|
|
382
321
|
--spectrum-heading-han-m-light-emphasized-text-font-style,
|
|
383
322
|
var(--spectrum-global-font-style-regular)
|
|
384
|
-
);
|
|
385
|
-
* .spectrum:lang(ja) .spectrum-Heading--light .spectrum-Heading--emphasized,
|
|
386
|
-
* .spectrum:lang(ko) .spectrum-Heading--light em,
|
|
387
|
-
* .spectrum:lang(ko) .spectrum-Heading--light .spectrum-Heading--emphasized,
|
|
388
|
-
* .spectrum:lang(zh) .spectrum-Heading--light em,
|
|
389
|
-
* .spectrum:lang(zh) .spectrum-Heading--light .spectrum-Heading--emphasized */
|
|
390
|
-
|
|
323
|
+
);
|
|
391
324
|
font-weight: var(
|
|
392
325
|
--spectrum-heading-han-m-light-emphasized-text-font-weight,
|
|
393
326
|
var(--spectrum-alias-han-heading-text-font-weight-light-emphasis)
|
|
394
327
|
);
|
|
395
328
|
}
|
|
396
|
-
|
|
397
329
|
.spectrum:lang(ja) .spectrum-Heading--light .spectrum-Heading--strong,
|
|
398
330
|
.spectrum:lang(ja) .spectrum-Heading--light strong,
|
|
399
331
|
.spectrum:lang(ko) .spectrum-Heading--light .spectrum-Heading--strong,
|
|
@@ -403,29 +335,19 @@ governing permissions and limitations under the License.
|
|
|
403
335
|
font-style: var(
|
|
404
336
|
--spectrum-heading-han-m-light-strong-text-font-style,
|
|
405
337
|
var(--spectrum-global-font-style-regular)
|
|
406
|
-
);
|
|
407
|
-
* .spectrum:lang(ja) .spectrum-Heading--light .spectrum-Heading--strong,
|
|
408
|
-
* .spectrum:lang(ko) .spectrum-Heading--light strong,
|
|
409
|
-
* .spectrum:lang(ko) .spectrum-Heading--light .spectrum-Heading--strong,
|
|
410
|
-
* .spectrum:lang(zh) .spectrum-Heading--light strong,
|
|
411
|
-
* .spectrum:lang(zh) .spectrum-Heading--light .spectrum-Heading--strong */
|
|
412
|
-
|
|
338
|
+
);
|
|
413
339
|
font-weight: var(
|
|
414
340
|
--spectrum-heading-han-m-light-strong-text-font-weight,
|
|
415
341
|
var(--spectrum-alias-han-heading-text-font-weight-light-strong)
|
|
416
342
|
);
|
|
417
343
|
}
|
|
418
|
-
|
|
419
344
|
.spectrum:lang(ja) .spectrum-Body--sizeXXXL,
|
|
420
345
|
.spectrum:lang(ko) .spectrum-Body--sizeXXXL,
|
|
421
346
|
.spectrum:lang(zh) .spectrum-Body--sizeXXXL {
|
|
422
347
|
font-size: var(
|
|
423
348
|
--spectrum-body-han-xxxl-text-size,
|
|
424
349
|
var(--spectrum-global-dimension-font-size-600)
|
|
425
|
-
);
|
|
426
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeXXXL,
|
|
427
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeXXXL */
|
|
428
|
-
|
|
350
|
+
);
|
|
429
351
|
font-style: var(
|
|
430
352
|
--spectrum-body-han-xxxl-text-font-style,
|
|
431
353
|
var(--spectrum-global-font-style-regular)
|
|
@@ -446,17 +368,13 @@ governing permissions and limitations under the License.
|
|
|
446
368
|
margin-top: 0;
|
|
447
369
|
text-transform: var(--spectrum-body-han-xxxl-text-transform, none);
|
|
448
370
|
}
|
|
449
|
-
|
|
450
371
|
.spectrum:lang(ja) .spectrum-Body--sizeXXL,
|
|
451
372
|
.spectrum:lang(ko) .spectrum-Body--sizeXXL,
|
|
452
373
|
.spectrum:lang(zh) .spectrum-Body--sizeXXL {
|
|
453
374
|
font-size: var(
|
|
454
375
|
--spectrum-body-han-xxl-text-size,
|
|
455
376
|
var(--spectrum-global-dimension-font-size-500)
|
|
456
|
-
);
|
|
457
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeXXL,
|
|
458
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeXXL */
|
|
459
|
-
|
|
377
|
+
);
|
|
460
378
|
font-style: var(
|
|
461
379
|
--spectrum-body-han-xxl-text-font-style,
|
|
462
380
|
var(--spectrum-global-font-style-regular)
|
|
@@ -477,17 +395,13 @@ governing permissions and limitations under the License.
|
|
|
477
395
|
margin-top: 0;
|
|
478
396
|
text-transform: var(--spectrum-body-han-xxl-text-transform, none);
|
|
479
397
|
}
|
|
480
|
-
|
|
481
398
|
.spectrum:lang(ja) .spectrum-Body--sizeXL,
|
|
482
399
|
.spectrum:lang(ko) .spectrum-Body--sizeXL,
|
|
483
400
|
.spectrum:lang(zh) .spectrum-Body--sizeXL {
|
|
484
401
|
font-size: var(
|
|
485
402
|
--spectrum-body-han-xl-text-size,
|
|
486
403
|
var(--spectrum-global-dimension-font-size-400)
|
|
487
|
-
);
|
|
488
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeXL,
|
|
489
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeXL */
|
|
490
|
-
|
|
404
|
+
);
|
|
491
405
|
font-style: var(
|
|
492
406
|
--spectrum-body-han-xl-text-font-style,
|
|
493
407
|
var(--spectrum-global-font-style-regular)
|
|
@@ -508,17 +422,13 @@ governing permissions and limitations under the License.
|
|
|
508
422
|
margin-top: 0;
|
|
509
423
|
text-transform: var(--spectrum-body-han-xl-text-transform, none);
|
|
510
424
|
}
|
|
511
|
-
|
|
512
425
|
.spectrum:lang(ja) .spectrum-Body--sizeL,
|
|
513
426
|
.spectrum:lang(ko) .spectrum-Body--sizeL,
|
|
514
427
|
.spectrum:lang(zh) .spectrum-Body--sizeL {
|
|
515
428
|
font-size: var(
|
|
516
429
|
--spectrum-body-han-l-text-size,
|
|
517
430
|
var(--spectrum-global-dimension-font-size-300)
|
|
518
|
-
);
|
|
519
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeL,
|
|
520
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeL */
|
|
521
|
-
|
|
431
|
+
);
|
|
522
432
|
font-style: var(
|
|
523
433
|
--spectrum-body-han-l-text-font-style,
|
|
524
434
|
var(--spectrum-global-font-style-regular)
|
|
@@ -539,17 +449,13 @@ governing permissions and limitations under the License.
|
|
|
539
449
|
margin-top: 0;
|
|
540
450
|
text-transform: var(--spectrum-body-han-l-text-transform, none);
|
|
541
451
|
}
|
|
542
|
-
|
|
543
452
|
.spectrum:lang(ja) .spectrum-Body--sizeM,
|
|
544
453
|
.spectrum:lang(ko) .spectrum-Body--sizeM,
|
|
545
454
|
.spectrum:lang(zh) .spectrum-Body--sizeM {
|
|
546
455
|
font-size: var(
|
|
547
456
|
--spectrum-body-han-m-text-size,
|
|
548
457
|
var(--spectrum-global-dimension-font-size-200)
|
|
549
|
-
);
|
|
550
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeM,
|
|
551
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeM */
|
|
552
|
-
|
|
458
|
+
);
|
|
553
459
|
font-style: var(
|
|
554
460
|
--spectrum-body-han-m-text-font-style,
|
|
555
461
|
var(--spectrum-global-font-style-regular)
|
|
@@ -570,17 +476,13 @@ governing permissions and limitations under the License.
|
|
|
570
476
|
margin-top: 0;
|
|
571
477
|
text-transform: var(--spectrum-body-han-m-text-transform, none);
|
|
572
478
|
}
|
|
573
|
-
|
|
574
479
|
.spectrum:lang(ja) .spectrum-Body--sizeS,
|
|
575
480
|
.spectrum:lang(ko) .spectrum-Body--sizeS,
|
|
576
481
|
.spectrum:lang(zh) .spectrum-Body--sizeS {
|
|
577
482
|
font-size: var(
|
|
578
483
|
--spectrum-body-han-s-text-size,
|
|
579
484
|
var(--spectrum-global-dimension-font-size-100)
|
|
580
|
-
);
|
|
581
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeS,
|
|
582
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeS */
|
|
583
|
-
|
|
485
|
+
);
|
|
584
486
|
font-style: var(
|
|
585
487
|
--spectrum-body-han-s-text-font-style,
|
|
586
488
|
var(--spectrum-global-font-style-regular)
|
|
@@ -601,17 +503,13 @@ governing permissions and limitations under the License.
|
|
|
601
503
|
margin-top: 0;
|
|
602
504
|
text-transform: var(--spectrum-body-han-s-text-transform, none);
|
|
603
505
|
}
|
|
604
|
-
|
|
605
506
|
.spectrum:lang(ja) .spectrum-Body--sizeXS,
|
|
606
507
|
.spectrum:lang(ko) .spectrum-Body--sizeXS,
|
|
607
508
|
.spectrum:lang(zh) .spectrum-Body--sizeXS {
|
|
608
509
|
font-size: var(
|
|
609
510
|
--spectrum-body-han-xs-text-size,
|
|
610
511
|
var(--spectrum-global-dimension-font-size-75)
|
|
611
|
-
);
|
|
612
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeXS,
|
|
613
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeXS */
|
|
614
|
-
|
|
512
|
+
);
|
|
615
513
|
font-style: var(
|
|
616
514
|
--spectrum-body-han-xs-text-font-style,
|
|
617
515
|
var(--spectrum-global-font-style-regular)
|
|
@@ -632,17 +530,13 @@ governing permissions and limitations under the License.
|
|
|
632
530
|
margin-top: 0;
|
|
633
531
|
text-transform: var(--spectrum-body-han-xs-text-transform, none);
|
|
634
532
|
}
|
|
635
|
-
|
|
636
533
|
.spectrum:lang(ja) .spectrum-Detail--sizeXL,
|
|
637
534
|
.spectrum:lang(ko) .spectrum-Detail--sizeXL,
|
|
638
535
|
.spectrum:lang(zh) .spectrum-Detail--sizeXL {
|
|
639
536
|
font-size: var(
|
|
640
537
|
--spectrum-detail-han-xl-text-size,
|
|
641
538
|
var(--spectrum-global-dimension-font-size-200)
|
|
642
|
-
);
|
|
643
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeXL,
|
|
644
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeXL */
|
|
645
|
-
|
|
539
|
+
);
|
|
646
540
|
font-style: var(
|
|
647
541
|
--spectrum-detail-han-xl-text-font-style,
|
|
648
542
|
var(--spectrum-global-font-style-regular)
|
|
@@ -663,17 +557,13 @@ governing permissions and limitations under the License.
|
|
|
663
557
|
margin-top: 0;
|
|
664
558
|
text-transform: var(--spectrum-detail-han-xl-text-transform, uppercase);
|
|
665
559
|
}
|
|
666
|
-
|
|
667
560
|
.spectrum:lang(ja) .spectrum-Detail--sizeXL em,
|
|
668
561
|
.spectrum:lang(ko) .spectrum-Detail--sizeXL em,
|
|
669
562
|
.spectrum:lang(zh) .spectrum-Detail--sizeXL em {
|
|
670
563
|
font-size: var(
|
|
671
564
|
--spectrum-detail-han-xl-emphasized-text-size,
|
|
672
565
|
var(--spectrum-global-dimension-font-size-200)
|
|
673
|
-
);
|
|
674
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeXL em,
|
|
675
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeXL em */
|
|
676
|
-
|
|
566
|
+
);
|
|
677
567
|
font-style: var(
|
|
678
568
|
--spectrum-detail-han-xl-emphasized-text-font-style,
|
|
679
569
|
var(--spectrum-global-font-style-regular)
|
|
@@ -697,17 +587,13 @@ governing permissions and limitations under the License.
|
|
|
697
587
|
uppercase
|
|
698
588
|
);
|
|
699
589
|
}
|
|
700
|
-
|
|
701
590
|
.spectrum:lang(ja) .spectrum-Detail--sizeXL strong,
|
|
702
591
|
.spectrum:lang(ko) .spectrum-Detail--sizeXL strong,
|
|
703
592
|
.spectrum:lang(zh) .spectrum-Detail--sizeXL strong {
|
|
704
593
|
font-size: var(
|
|
705
594
|
--spectrum-detail-han-xl-strong-text-size,
|
|
706
595
|
var(--spectrum-global-dimension-font-size-200)
|
|
707
|
-
);
|
|
708
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeXL strong,
|
|
709
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeXL strong */
|
|
710
|
-
|
|
596
|
+
);
|
|
711
597
|
font-style: var(
|
|
712
598
|
--spectrum-detail-han-xl-strong-text-font-style,
|
|
713
599
|
var(--spectrum-global-font-style-regular)
|
|
@@ -731,17 +617,13 @@ governing permissions and limitations under the License.
|
|
|
731
617
|
uppercase
|
|
732
618
|
);
|
|
733
619
|
}
|
|
734
|
-
|
|
735
620
|
.spectrum:lang(ja) .spectrum-Detail--sizeL,
|
|
736
621
|
.spectrum:lang(ko) .spectrum-Detail--sizeL,
|
|
737
622
|
.spectrum:lang(zh) .spectrum-Detail--sizeL {
|
|
738
623
|
font-size: var(
|
|
739
624
|
--spectrum-detail-han-l-text-size,
|
|
740
625
|
var(--spectrum-global-dimension-font-size-100)
|
|
741
|
-
);
|
|
742
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeL,
|
|
743
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeL */
|
|
744
|
-
|
|
626
|
+
);
|
|
745
627
|
font-style: var(
|
|
746
628
|
--spectrum-detail-han-l-text-font-style,
|
|
747
629
|
var(--spectrum-global-font-style-regular)
|
|
@@ -762,17 +644,13 @@ governing permissions and limitations under the License.
|
|
|
762
644
|
margin-top: 0;
|
|
763
645
|
text-transform: var(--spectrum-detail-han-l-text-transform, uppercase);
|
|
764
646
|
}
|
|
765
|
-
|
|
766
647
|
.spectrum:lang(ja) .spectrum-Detail--sizeL em,
|
|
767
648
|
.spectrum:lang(ko) .spectrum-Detail--sizeL em,
|
|
768
649
|
.spectrum:lang(zh) .spectrum-Detail--sizeL em {
|
|
769
650
|
font-size: var(
|
|
770
651
|
--spectrum-detail-han-l-emphasized-text-size,
|
|
771
652
|
var(--spectrum-global-dimension-font-size-100)
|
|
772
|
-
);
|
|
773
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeL em,
|
|
774
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeL em */
|
|
775
|
-
|
|
653
|
+
);
|
|
776
654
|
font-style: var(
|
|
777
655
|
--spectrum-detail-han-l-emphasized-text-font-style,
|
|
778
656
|
var(--spectrum-global-font-style-regular)
|
|
@@ -796,17 +674,13 @@ governing permissions and limitations under the License.
|
|
|
796
674
|
uppercase
|
|
797
675
|
);
|
|
798
676
|
}
|
|
799
|
-
|
|
800
677
|
.spectrum:lang(ja) .spectrum-Detail--sizeL strong,
|
|
801
678
|
.spectrum:lang(ko) .spectrum-Detail--sizeL strong,
|
|
802
679
|
.spectrum:lang(zh) .spectrum-Detail--sizeL strong {
|
|
803
680
|
font-size: var(
|
|
804
681
|
--spectrum-detail-han-l-strong-text-size,
|
|
805
682
|
var(--spectrum-global-dimension-font-size-100)
|
|
806
|
-
);
|
|
807
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeL strong,
|
|
808
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeL strong */
|
|
809
|
-
|
|
683
|
+
);
|
|
810
684
|
font-style: var(
|
|
811
685
|
--spectrum-detail-han-l-strong-text-font-style,
|
|
812
686
|
var(--spectrum-global-font-style-regular)
|
|
@@ -830,17 +704,13 @@ governing permissions and limitations under the License.
|
|
|
830
704
|
uppercase
|
|
831
705
|
);
|
|
832
706
|
}
|
|
833
|
-
|
|
834
707
|
.spectrum:lang(ja) .spectrum-Detail--sizeM,
|
|
835
708
|
.spectrum:lang(ko) .spectrum-Detail--sizeM,
|
|
836
709
|
.spectrum:lang(zh) .spectrum-Detail--sizeM {
|
|
837
710
|
font-size: var(
|
|
838
711
|
--spectrum-detail-han-m-text-size,
|
|
839
712
|
var(--spectrum-global-dimension-font-size-75)
|
|
840
|
-
);
|
|
841
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeM,
|
|
842
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeM */
|
|
843
|
-
|
|
713
|
+
);
|
|
844
714
|
font-style: var(
|
|
845
715
|
--spectrum-detail-han-m-text-font-style,
|
|
846
716
|
var(--spectrum-global-font-style-regular)
|
|
@@ -861,17 +731,13 @@ governing permissions and limitations under the License.
|
|
|
861
731
|
margin-top: 0;
|
|
862
732
|
text-transform: var(--spectrum-detail-han-m-text-transform, uppercase);
|
|
863
733
|
}
|
|
864
|
-
|
|
865
734
|
.spectrum:lang(ja) .spectrum-Detail--sizeM em,
|
|
866
735
|
.spectrum:lang(ko) .spectrum-Detail--sizeM em,
|
|
867
736
|
.spectrum:lang(zh) .spectrum-Detail--sizeM em {
|
|
868
737
|
font-size: var(
|
|
869
738
|
--spectrum-detail-han-m-emphasized-text-size,
|
|
870
739
|
var(--spectrum-global-dimension-font-size-75)
|
|
871
|
-
);
|
|
872
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeM em,
|
|
873
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeM em */
|
|
874
|
-
|
|
740
|
+
);
|
|
875
741
|
font-style: var(
|
|
876
742
|
--spectrum-detail-han-m-emphasized-text-font-style,
|
|
877
743
|
var(--spectrum-global-font-style-regular)
|
|
@@ -895,17 +761,13 @@ governing permissions and limitations under the License.
|
|
|
895
761
|
uppercase
|
|
896
762
|
);
|
|
897
763
|
}
|
|
898
|
-
|
|
899
764
|
.spectrum:lang(ja) .spectrum-Detail--sizeM strong,
|
|
900
765
|
.spectrum:lang(ko) .spectrum-Detail--sizeM strong,
|
|
901
766
|
.spectrum:lang(zh) .spectrum-Detail--sizeM strong {
|
|
902
767
|
font-size: var(
|
|
903
768
|
--spectrum-detail-han-m-strong-text-size,
|
|
904
769
|
var(--spectrum-global-dimension-font-size-75)
|
|
905
|
-
);
|
|
906
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeM strong,
|
|
907
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeM strong */
|
|
908
|
-
|
|
770
|
+
);
|
|
909
771
|
font-style: var(
|
|
910
772
|
--spectrum-detail-han-m-strong-text-font-style,
|
|
911
773
|
var(--spectrum-global-font-style-regular)
|
|
@@ -929,17 +791,13 @@ governing permissions and limitations under the License.
|
|
|
929
791
|
uppercase
|
|
930
792
|
);
|
|
931
793
|
}
|
|
932
|
-
|
|
933
794
|
.spectrum:lang(ja) .spectrum-Detail--sizeS,
|
|
934
795
|
.spectrum:lang(ko) .spectrum-Detail--sizeS,
|
|
935
796
|
.spectrum:lang(zh) .spectrum-Detail--sizeS {
|
|
936
797
|
font-size: var(
|
|
937
798
|
--spectrum-detail-han-s-text-size,
|
|
938
799
|
var(--spectrum-global-dimension-font-size-50)
|
|
939
|
-
);
|
|
940
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeS,
|
|
941
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeS */
|
|
942
|
-
|
|
800
|
+
);
|
|
943
801
|
font-style: var(
|
|
944
802
|
--spectrum-detail-han-s-text-font-style,
|
|
945
803
|
var(--spectrum-global-font-style-regular)
|
|
@@ -960,17 +818,13 @@ governing permissions and limitations under the License.
|
|
|
960
818
|
margin-top: 0;
|
|
961
819
|
text-transform: var(--spectrum-detail-han-s-text-transform, uppercase);
|
|
962
820
|
}
|
|
963
|
-
|
|
964
821
|
.spectrum:lang(ja) .spectrum-Detail--sizeS em,
|
|
965
822
|
.spectrum:lang(ko) .spectrum-Detail--sizeS em,
|
|
966
823
|
.spectrum:lang(zh) .spectrum-Detail--sizeS em {
|
|
967
824
|
font-size: var(
|
|
968
825
|
--spectrum-detail-han-s-emphasized-text-size,
|
|
969
826
|
var(--spectrum-global-dimension-font-size-50)
|
|
970
|
-
);
|
|
971
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeS em,
|
|
972
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeS em */
|
|
973
|
-
|
|
827
|
+
);
|
|
974
828
|
font-style: var(
|
|
975
829
|
--spectrum-detail-han-s-emphasized-text-font-style,
|
|
976
830
|
var(--spectrum-global-font-style-regular)
|
|
@@ -994,17 +848,13 @@ governing permissions and limitations under the License.
|
|
|
994
848
|
uppercase
|
|
995
849
|
);
|
|
996
850
|
}
|
|
997
|
-
|
|
998
851
|
.spectrum:lang(ja) .spectrum-Detail--sizeS strong,
|
|
999
852
|
.spectrum:lang(ko) .spectrum-Detail--sizeS strong,
|
|
1000
853
|
.spectrum:lang(zh) .spectrum-Detail--sizeS strong {
|
|
1001
854
|
font-size: var(
|
|
1002
855
|
--spectrum-detail-han-s-strong-text-size,
|
|
1003
856
|
var(--spectrum-global-dimension-font-size-50)
|
|
1004
|
-
);
|
|
1005
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeS strong,
|
|
1006
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeS strong */
|
|
1007
|
-
|
|
857
|
+
);
|
|
1008
858
|
font-style: var(
|
|
1009
859
|
--spectrum-detail-han-s-strong-text-font-style,
|
|
1010
860
|
var(--spectrum-global-font-style-regular)
|
|
@@ -1028,18 +878,14 @@ governing permissions and limitations under the License.
|
|
|
1028
878
|
uppercase
|
|
1029
879
|
);
|
|
1030
880
|
}
|
|
1031
|
-
|
|
1032
881
|
.spectrum:lang(ja) .spectrum-Detail--light,
|
|
1033
882
|
.spectrum:lang(ko) .spectrum-Detail--light,
|
|
1034
883
|
.spectrum:lang(zh) .spectrum-Detail--light {
|
|
1035
884
|
font-weight: var(
|
|
1036
885
|
--spectrum-detail-han-m-text-font-weight,
|
|
1037
886
|
var(--spectrum-alias-han-heading-text-font-weight-regular)
|
|
1038
|
-
);
|
|
1039
|
-
* .spectrum:lang(ko) .spectrum-Detail--light,
|
|
1040
|
-
* .spectrum:lang(zh) .spectrum-Detail--light */
|
|
887
|
+
);
|
|
1041
888
|
}
|
|
1042
|
-
|
|
1043
889
|
.spectrum:lang(ja) .spectrum-Detail--light .spectrum-Detail--emphasized,
|
|
1044
890
|
.spectrum:lang(ja) .spectrum-Detail--light em,
|
|
1045
891
|
.spectrum:lang(ko) .spectrum-Detail--light .spectrum-Detail--emphasized,
|
|
@@ -1049,19 +895,12 @@ governing permissions and limitations under the License.
|
|
|
1049
895
|
font-style: var(
|
|
1050
896
|
--spectrum-detail-han-m-light-emphasized-text-font-style,
|
|
1051
897
|
var(--spectrum-global-font-style-regular)
|
|
1052
|
-
);
|
|
1053
|
-
* .spectrum:lang(ja) .spectrum-Detail--light .spectrum-Detail--emphasized,
|
|
1054
|
-
* .spectrum:lang(ko) .spectrum-Detail--light em,
|
|
1055
|
-
* .spectrum:lang(ko) .spectrum-Detail--light .spectrum-Detail--emphasized,
|
|
1056
|
-
* .spectrum:lang(zh) .spectrum-Detail--light em,
|
|
1057
|
-
* .spectrum:lang(zh) .spectrum-Detail--light .spectrum-Detail--emphasized */
|
|
1058
|
-
|
|
898
|
+
);
|
|
1059
899
|
font-weight: var(
|
|
1060
900
|
--spectrum-detail-han-m-light-emphasized-text-font-weight,
|
|
1061
901
|
var(--spectrum-alias-han-heading-text-font-weight-light-emphasis)
|
|
1062
902
|
);
|
|
1063
903
|
}
|
|
1064
|
-
|
|
1065
904
|
.spectrum:lang(ja) .spectrum-Detail--light .spectrum-Detail--strong,
|
|
1066
905
|
.spectrum:lang(ja) .spectrum-Detail--light strong,
|
|
1067
906
|
.spectrum:lang(ko) .spectrum-Detail--light .spectrum-Detail--strong,
|
|
@@ -1071,19 +910,12 @@ governing permissions and limitations under the License.
|
|
|
1071
910
|
font-style: var(
|
|
1072
911
|
--spectrum-detail-han-m-light-strong-text-font-style,
|
|
1073
912
|
var(--spectrum-global-font-style-regular)
|
|
1074
|
-
);
|
|
1075
|
-
* .spectrum:lang(ja) .spectrum-Detail--light .spectrum-Detail--strong,
|
|
1076
|
-
* .spectrum:lang(ko) .spectrum-Detail--light strong,
|
|
1077
|
-
* .spectrum:lang(ko) .spectrum-Detail--light .spectrum-Detail--strong,
|
|
1078
|
-
* .spectrum:lang(zh) .spectrum-Detail--light strong,
|
|
1079
|
-
* .spectrum:lang(zh) .spectrum-Detail--light .spectrum-Detail--strong */
|
|
1080
|
-
|
|
913
|
+
);
|
|
1081
914
|
font-weight: var(
|
|
1082
915
|
--spectrum-detail-han-m-light-strong-text-font-weight,
|
|
1083
916
|
var(--spectrum-alias-han-heading-text-font-weight-light-strong)
|
|
1084
917
|
);
|
|
1085
918
|
}
|
|
1086
|
-
|
|
1087
919
|
.spectrum:lang(ja) .spectrum-Code--sizeXL,
|
|
1088
920
|
.spectrum:lang(ko) .spectrum-Code--sizeXL,
|
|
1089
921
|
.spectrum:lang(zh) .spectrum-Code--sizeXL {
|
|
@@ -1094,10 +926,7 @@ governing permissions and limitations under the License.
|
|
|
1094
926
|
font-size: var(
|
|
1095
927
|
--spectrum-code-han-xl-text-size,
|
|
1096
928
|
var(--spectrum-global-dimension-font-size-400)
|
|
1097
|
-
);
|
|
1098
|
-
* .spectrum:lang(ko) .spectrum-Code--sizeXL,
|
|
1099
|
-
* .spectrum:lang(zh) .spectrum-Code--sizeXL */
|
|
1100
|
-
|
|
929
|
+
);
|
|
1101
930
|
font-style: var(
|
|
1102
931
|
--spectrum-code-han-xl-text-font-style,
|
|
1103
932
|
var(--spectrum-global-font-style-regular)
|
|
@@ -1117,7 +946,6 @@ governing permissions and limitations under the License.
|
|
|
1117
946
|
margin-bottom: 0;
|
|
1118
947
|
margin-top: 0;
|
|
1119
948
|
}
|
|
1120
|
-
|
|
1121
949
|
.spectrum:lang(ja) .spectrum-Code--sizeL,
|
|
1122
950
|
.spectrum:lang(ko) .spectrum-Code--sizeL,
|
|
1123
951
|
.spectrum:lang(zh) .spectrum-Code--sizeL {
|
|
@@ -1128,10 +956,7 @@ governing permissions and limitations under the License.
|
|
|
1128
956
|
font-size: var(
|
|
1129
957
|
--spectrum-code-han-l-text-size,
|
|
1130
958
|
var(--spectrum-global-dimension-font-size-300)
|
|
1131
|
-
);
|
|
1132
|
-
* .spectrum:lang(ko) .spectrum-Code--sizeL,
|
|
1133
|
-
* .spectrum:lang(zh) .spectrum-Code--sizeL */
|
|
1134
|
-
|
|
959
|
+
);
|
|
1135
960
|
font-style: var(
|
|
1136
961
|
--spectrum-code-han-l-text-font-style,
|
|
1137
962
|
var(--spectrum-global-font-style-regular)
|
|
@@ -1151,7 +976,6 @@ governing permissions and limitations under the License.
|
|
|
1151
976
|
margin-bottom: 0;
|
|
1152
977
|
margin-top: 0;
|
|
1153
978
|
}
|
|
1154
|
-
|
|
1155
979
|
.spectrum:lang(ja) .spectrum-Code--sizeM,
|
|
1156
980
|
.spectrum:lang(ko) .spectrum-Code--sizeM,
|
|
1157
981
|
.spectrum:lang(zh) .spectrum-Code--sizeM {
|
|
@@ -1162,10 +986,7 @@ governing permissions and limitations under the License.
|
|
|
1162
986
|
font-size: var(
|
|
1163
987
|
--spectrum-code-han-m-text-size,
|
|
1164
988
|
var(--spectrum-global-dimension-font-size-200)
|
|
1165
|
-
);
|
|
1166
|
-
* .spectrum:lang(ko) .spectrum-Code--sizeM,
|
|
1167
|
-
* .spectrum:lang(zh) .spectrum-Code--sizeM */
|
|
1168
|
-
|
|
989
|
+
);
|
|
1169
990
|
font-style: var(
|
|
1170
991
|
--spectrum-code-han-m-text-font-style,
|
|
1171
992
|
var(--spectrum-global-font-style-regular)
|
|
@@ -1185,7 +1006,6 @@ governing permissions and limitations under the License.
|
|
|
1185
1006
|
margin-bottom: 0;
|
|
1186
1007
|
margin-top: 0;
|
|
1187
1008
|
}
|
|
1188
|
-
|
|
1189
1009
|
.spectrum:lang(ja) .spectrum-Code--sizeS,
|
|
1190
1010
|
.spectrum:lang(ko) .spectrum-Code--sizeS,
|
|
1191
1011
|
.spectrum:lang(zh) .spectrum-Code--sizeS {
|
|
@@ -1196,10 +1016,7 @@ governing permissions and limitations under the License.
|
|
|
1196
1016
|
font-size: var(
|
|
1197
1017
|
--spectrum-code-han-s-text-size,
|
|
1198
1018
|
var(--spectrum-global-dimension-font-size-100)
|
|
1199
|
-
);
|
|
1200
|
-
* .spectrum:lang(ko) .spectrum-Code--sizeS,
|
|
1201
|
-
* .spectrum:lang(zh) .spectrum-Code--sizeS */
|
|
1202
|
-
|
|
1019
|
+
);
|
|
1203
1020
|
font-style: var(
|
|
1204
1021
|
--spectrum-code-han-s-text-font-style,
|
|
1205
1022
|
var(--spectrum-global-font-style-regular)
|
|
@@ -1219,7 +1036,6 @@ governing permissions and limitations under the License.
|
|
|
1219
1036
|
margin-bottom: 0;
|
|
1220
1037
|
margin-top: 0;
|
|
1221
1038
|
}
|
|
1222
|
-
|
|
1223
1039
|
.spectrum:lang(ja) .spectrum-Code--sizeXS,
|
|
1224
1040
|
.spectrum:lang(ko) .spectrum-Code--sizeXS,
|
|
1225
1041
|
.spectrum:lang(zh) .spectrum-Code--sizeXS {
|
|
@@ -1230,10 +1046,7 @@ governing permissions and limitations under the License.
|
|
|
1230
1046
|
font-size: var(
|
|
1231
1047
|
--spectrum-code-han-xs-text-size,
|
|
1232
1048
|
var(--spectrum-global-dimension-font-size-75)
|
|
1233
|
-
);
|
|
1234
|
-
* .spectrum:lang(ko) .spectrum-Code--sizeXS,
|
|
1235
|
-
* .spectrum:lang(zh) .spectrum-Code--sizeXS */
|
|
1236
|
-
|
|
1049
|
+
);
|
|
1237
1050
|
font-style: var(
|
|
1238
1051
|
--spectrum-code-han-xs-text-font-style,
|
|
1239
1052
|
var(--spectrum-global-font-style-regular)
|
|
@@ -1253,399 +1066,276 @@ governing permissions and limitations under the License.
|
|
|
1253
1066
|
margin-bottom: 0;
|
|
1254
1067
|
margin-top: 0;
|
|
1255
1068
|
}
|
|
1256
|
-
|
|
1257
1069
|
.spectrum:lang(ja) .spectrum-Body--sizeXXXL,
|
|
1258
1070
|
.spectrum:lang(ko) .spectrum-Body--sizeXXXL,
|
|
1259
1071
|
.spectrum:lang(zh) .spectrum-Body--sizeXXXL {
|
|
1260
1072
|
color: var(
|
|
1261
1073
|
--spectrum-body-han-xxxl-text-color,
|
|
1262
1074
|
var(--spectrum-alias-text-color)
|
|
1263
|
-
);
|
|
1264
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeXXXL,
|
|
1265
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeXXXL */
|
|
1075
|
+
);
|
|
1266
1076
|
}
|
|
1267
|
-
|
|
1268
1077
|
.spectrum:lang(ja) .spectrum-Body--sizeXXL,
|
|
1269
1078
|
.spectrum:lang(ko) .spectrum-Body--sizeXXL,
|
|
1270
1079
|
.spectrum:lang(zh) .spectrum-Body--sizeXXL {
|
|
1271
1080
|
color: var(
|
|
1272
1081
|
--spectrum-body-han-xxl-text-color,
|
|
1273
1082
|
var(--spectrum-alias-text-color)
|
|
1274
|
-
);
|
|
1275
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeXXL,
|
|
1276
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeXXL */
|
|
1083
|
+
);
|
|
1277
1084
|
}
|
|
1278
|
-
|
|
1279
1085
|
.spectrum:lang(ja) .spectrum-Body--sizeXL,
|
|
1280
1086
|
.spectrum:lang(ko) .spectrum-Body--sizeXL,
|
|
1281
1087
|
.spectrum:lang(zh) .spectrum-Body--sizeXL {
|
|
1282
1088
|
color: var(
|
|
1283
1089
|
--spectrum-body-han-xl-text-color,
|
|
1284
1090
|
var(--spectrum-alias-text-color)
|
|
1285
|
-
);
|
|
1286
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeXL,
|
|
1287
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeXL */
|
|
1091
|
+
);
|
|
1288
1092
|
}
|
|
1289
|
-
|
|
1290
1093
|
.spectrum:lang(ja) .spectrum-Body--sizeL,
|
|
1291
1094
|
.spectrum:lang(ko) .spectrum-Body--sizeL,
|
|
1292
1095
|
.spectrum:lang(zh) .spectrum-Body--sizeL {
|
|
1293
1096
|
color: var(
|
|
1294
1097
|
--spectrum-body-han-l-text-color,
|
|
1295
1098
|
var(--spectrum-alias-text-color)
|
|
1296
|
-
);
|
|
1297
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeL,
|
|
1298
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeL */
|
|
1099
|
+
);
|
|
1299
1100
|
}
|
|
1300
|
-
|
|
1301
1101
|
.spectrum:lang(ja) .spectrum-Body--sizeM,
|
|
1302
1102
|
.spectrum:lang(ko) .spectrum-Body--sizeM,
|
|
1303
1103
|
.spectrum:lang(zh) .spectrum-Body--sizeM {
|
|
1304
1104
|
color: var(
|
|
1305
1105
|
--spectrum-body-han-m-text-color,
|
|
1306
1106
|
var(--spectrum-alias-text-color)
|
|
1307
|
-
);
|
|
1308
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeM,
|
|
1309
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeM */
|
|
1107
|
+
);
|
|
1310
1108
|
}
|
|
1311
|
-
|
|
1312
1109
|
.spectrum:lang(ja) .spectrum-Body--sizeS,
|
|
1313
1110
|
.spectrum:lang(ko) .spectrum-Body--sizeS,
|
|
1314
1111
|
.spectrum:lang(zh) .spectrum-Body--sizeS {
|
|
1315
1112
|
color: var(
|
|
1316
1113
|
--spectrum-body-han-s-text-color,
|
|
1317
1114
|
var(--spectrum-alias-text-color)
|
|
1318
|
-
);
|
|
1319
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeS,
|
|
1320
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeS */
|
|
1115
|
+
);
|
|
1321
1116
|
}
|
|
1322
|
-
|
|
1323
1117
|
.spectrum:lang(ja) .spectrum-Body--sizeXS,
|
|
1324
1118
|
.spectrum:lang(ko) .spectrum-Body--sizeXS,
|
|
1325
1119
|
.spectrum:lang(zh) .spectrum-Body--sizeXS {
|
|
1326
1120
|
color: var(
|
|
1327
1121
|
--spectrum-body-han-xs-text-color,
|
|
1328
1122
|
var(--spectrum-alias-text-color)
|
|
1329
|
-
);
|
|
1330
|
-
* .spectrum:lang(ko) .spectrum-Body--sizeXS,
|
|
1331
|
-
* .spectrum:lang(zh) .spectrum-Body--sizeXS */
|
|
1123
|
+
);
|
|
1332
1124
|
}
|
|
1333
|
-
|
|
1334
1125
|
.spectrum:lang(ja) .spectrum-Heading--sizeXXXL,
|
|
1335
1126
|
.spectrum:lang(ko) .spectrum-Heading--sizeXXXL,
|
|
1336
1127
|
.spectrum:lang(zh) .spectrum-Heading--sizeXXXL {
|
|
1337
1128
|
color: var(
|
|
1338
1129
|
--spectrum-heading-xxxl-text-color,
|
|
1339
1130
|
var(--spectrum-alias-heading-text-color)
|
|
1340
|
-
);
|
|
1341
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeXXXL,
|
|
1342
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeXXXL */
|
|
1131
|
+
);
|
|
1343
1132
|
}
|
|
1344
|
-
|
|
1345
1133
|
.spectrum:lang(ja) .spectrum-Heading--sizeXXL,
|
|
1346
1134
|
.spectrum:lang(ko) .spectrum-Heading--sizeXXL,
|
|
1347
1135
|
.spectrum:lang(zh) .spectrum-Heading--sizeXXL {
|
|
1348
1136
|
color: var(
|
|
1349
1137
|
--spectrum-heading-xxl-text-color,
|
|
1350
1138
|
var(--spectrum-alias-heading-text-color)
|
|
1351
|
-
);
|
|
1352
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeXXL,
|
|
1353
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeXXL */
|
|
1139
|
+
);
|
|
1354
1140
|
}
|
|
1355
|
-
|
|
1356
1141
|
.spectrum:lang(ja) .spectrum-Heading--sizeXL,
|
|
1357
1142
|
.spectrum:lang(ko) .spectrum-Heading--sizeXL,
|
|
1358
1143
|
.spectrum:lang(zh) .spectrum-Heading--sizeXL {
|
|
1359
1144
|
color: var(
|
|
1360
1145
|
--spectrum-heading-xl-text-color,
|
|
1361
1146
|
var(--spectrum-alias-heading-text-color)
|
|
1362
|
-
);
|
|
1363
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeXL,
|
|
1364
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeXL */
|
|
1147
|
+
);
|
|
1365
1148
|
}
|
|
1366
|
-
|
|
1367
1149
|
.spectrum:lang(ja) .spectrum-Heading--sizeL,
|
|
1368
1150
|
.spectrum:lang(ko) .spectrum-Heading--sizeL,
|
|
1369
1151
|
.spectrum:lang(zh) .spectrum-Heading--sizeL {
|
|
1370
1152
|
color: var(
|
|
1371
1153
|
--spectrum-heading-l-text-color,
|
|
1372
1154
|
var(--spectrum-alias-heading-text-color)
|
|
1373
|
-
);
|
|
1374
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeL,
|
|
1375
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeL */
|
|
1155
|
+
);
|
|
1376
1156
|
}
|
|
1377
|
-
|
|
1378
1157
|
.spectrum:lang(ja) .spectrum-Heading--sizeM,
|
|
1379
1158
|
.spectrum:lang(ko) .spectrum-Heading--sizeM,
|
|
1380
1159
|
.spectrum:lang(zh) .spectrum-Heading--sizeM {
|
|
1381
1160
|
color: var(
|
|
1382
1161
|
--spectrum-heading-m-text-color,
|
|
1383
1162
|
var(--spectrum-alias-heading-text-color)
|
|
1384
|
-
);
|
|
1385
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeM,
|
|
1386
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeM */
|
|
1163
|
+
);
|
|
1387
1164
|
}
|
|
1388
|
-
|
|
1389
1165
|
.spectrum:lang(ja) .spectrum-Heading--sizeS,
|
|
1390
1166
|
.spectrum:lang(ko) .spectrum-Heading--sizeS,
|
|
1391
1167
|
.spectrum:lang(zh) .spectrum-Heading--sizeS {
|
|
1392
1168
|
color: var(
|
|
1393
1169
|
--spectrum-heading-s-text-color,
|
|
1394
1170
|
var(--spectrum-alias-heading-text-color)
|
|
1395
|
-
);
|
|
1396
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeS,
|
|
1397
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeS */
|
|
1171
|
+
);
|
|
1398
1172
|
}
|
|
1399
|
-
|
|
1400
1173
|
.spectrum:lang(ja) .spectrum-Heading--sizeXS,
|
|
1401
1174
|
.spectrum:lang(ko) .spectrum-Heading--sizeXS,
|
|
1402
1175
|
.spectrum:lang(zh) .spectrum-Heading--sizeXS {
|
|
1403
1176
|
color: var(
|
|
1404
1177
|
--spectrum-heading-xs-text-color,
|
|
1405
1178
|
var(--spectrum-alias-heading-text-color)
|
|
1406
|
-
);
|
|
1407
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeXS,
|
|
1408
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeXS */
|
|
1179
|
+
);
|
|
1409
1180
|
}
|
|
1410
|
-
|
|
1411
1181
|
.spectrum:lang(ja) .spectrum-Heading--sizeXXS,
|
|
1412
1182
|
.spectrum:lang(ko) .spectrum-Heading--sizeXXS,
|
|
1413
1183
|
.spectrum:lang(zh) .spectrum-Heading--sizeXXS {
|
|
1414
1184
|
color: var(
|
|
1415
1185
|
--spectrum-heading-xxs-text-color,
|
|
1416
1186
|
var(--spectrum-alias-heading-text-color)
|
|
1417
|
-
);
|
|
1418
|
-
* .spectrum:lang(ko) .spectrum-Heading--sizeXXS,
|
|
1419
|
-
* .spectrum:lang(zh) .spectrum-Heading--sizeXXS */
|
|
1187
|
+
);
|
|
1420
1188
|
}
|
|
1421
|
-
|
|
1422
1189
|
.spectrum:lang(ja) .spectrum-Heading-sizeXXXL--light,
|
|
1423
1190
|
.spectrum:lang(ko) .spectrum-Heading-sizeXXXL--light,
|
|
1424
1191
|
.spectrum:lang(zh) .spectrum-Heading-sizeXXXL--light {
|
|
1425
1192
|
color: var(
|
|
1426
1193
|
--spectrum-heading-xxxl-light-text-color,
|
|
1427
1194
|
var(--spectrum-alias-heading-text-color)
|
|
1428
|
-
);
|
|
1429
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeXXXL--light,
|
|
1430
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeXXXL--light */
|
|
1195
|
+
);
|
|
1431
1196
|
}
|
|
1432
|
-
|
|
1433
1197
|
.spectrum:lang(ja) .spectrum-Heading-sizeXXL--light,
|
|
1434
1198
|
.spectrum:lang(ko) .spectrum-Heading-sizeXXL--light,
|
|
1435
1199
|
.spectrum:lang(zh) .spectrum-Heading-sizeXXL--light {
|
|
1436
1200
|
color: var(
|
|
1437
1201
|
--spectrum-heading-xxl-light-text-color,
|
|
1438
1202
|
var(--spectrum-alias-heading-text-color)
|
|
1439
|
-
);
|
|
1440
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeXXL--light,
|
|
1441
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeXXL--light */
|
|
1203
|
+
);
|
|
1442
1204
|
}
|
|
1443
|
-
|
|
1444
1205
|
.spectrum:lang(ja) .spectrum-Heading-sizeXL--light,
|
|
1445
1206
|
.spectrum:lang(ko) .spectrum-Heading-sizeXL--light,
|
|
1446
1207
|
.spectrum:lang(zh) .spectrum-Heading-sizeXL--light {
|
|
1447
1208
|
color: var(
|
|
1448
1209
|
--spectrum-heading-xl-light-text-color,
|
|
1449
1210
|
var(--spectrum-alias-heading-text-color)
|
|
1450
|
-
);
|
|
1451
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeXL--light,
|
|
1452
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeXL--light */
|
|
1211
|
+
);
|
|
1453
1212
|
}
|
|
1454
|
-
|
|
1455
1213
|
.spectrum:lang(ja) .spectrum-Heading-sizeL--light,
|
|
1456
1214
|
.spectrum:lang(ko) .spectrum-Heading-sizeL--light,
|
|
1457
1215
|
.spectrum:lang(zh) .spectrum-Heading-sizeL--light {
|
|
1458
1216
|
color: var(
|
|
1459
1217
|
--spectrum-heading-l-light-text-color,
|
|
1460
1218
|
var(--spectrum-alias-heading-text-color)
|
|
1461
|
-
);
|
|
1462
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeL--light,
|
|
1463
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeL--light */
|
|
1219
|
+
);
|
|
1464
1220
|
}
|
|
1465
|
-
|
|
1466
1221
|
.spectrum:lang(ja) .spectrum-Heading-sizeXXXL--heavy,
|
|
1467
1222
|
.spectrum:lang(ko) .spectrum-Heading-sizeXXXL--heavy,
|
|
1468
1223
|
.spectrum:lang(zh) .spectrum-Heading-sizeXXXL--heavy {
|
|
1469
1224
|
color: var(
|
|
1470
1225
|
--spectrum-heading-xxxl-heavy-text-color,
|
|
1471
1226
|
var(--spectrum-alias-heading-text-color)
|
|
1472
|
-
);
|
|
1473
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeXXXL--heavy,
|
|
1474
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeXXXL--heavy */
|
|
1227
|
+
);
|
|
1475
1228
|
}
|
|
1476
|
-
|
|
1477
1229
|
.spectrum:lang(ja) .spectrum-Heading-sizeXXL--heavy,
|
|
1478
1230
|
.spectrum:lang(ko) .spectrum-Heading-sizeXXL--heavy,
|
|
1479
1231
|
.spectrum:lang(zh) .spectrum-Heading-sizeXXL--heavy {
|
|
1480
1232
|
color: var(
|
|
1481
1233
|
--spectrum-heading-xxl-heavy-text-color,
|
|
1482
1234
|
var(--spectrum-alias-heading-text-color)
|
|
1483
|
-
);
|
|
1484
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeXXL--heavy,
|
|
1485
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeXXL--heavy */
|
|
1235
|
+
);
|
|
1486
1236
|
}
|
|
1487
|
-
|
|
1488
1237
|
.spectrum:lang(ja) .spectrum-Heading-sizeXL--heavy,
|
|
1489
1238
|
.spectrum:lang(ko) .spectrum-Heading-sizeXL--heavy,
|
|
1490
1239
|
.spectrum:lang(zh) .spectrum-Heading-sizeXL--heavy {
|
|
1491
1240
|
color: var(
|
|
1492
1241
|
--spectrum-heading-xl-heavy-text-color,
|
|
1493
1242
|
var(--spectrum-alias-heading-text-color)
|
|
1494
|
-
);
|
|
1495
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeXL--heavy,
|
|
1496
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeXL--heavy */
|
|
1243
|
+
);
|
|
1497
1244
|
}
|
|
1498
|
-
|
|
1499
1245
|
.spectrum:lang(ja) .spectrum-Heading-sizeL--heavy,
|
|
1500
1246
|
.spectrum:lang(ko) .spectrum-Heading-sizeL--heavy,
|
|
1501
1247
|
.spectrum:lang(zh) .spectrum-Heading-sizeL--heavy {
|
|
1502
1248
|
color: var(
|
|
1503
1249
|
--spectrum-heading-l-heavy-text-color,
|
|
1504
1250
|
var(--spectrum-alias-heading-text-color)
|
|
1505
|
-
);
|
|
1506
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeL--heavy,
|
|
1507
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeL--heavy */
|
|
1251
|
+
);
|
|
1508
1252
|
}
|
|
1509
|
-
|
|
1510
1253
|
.spectrum:lang(ja) .spectrum-Heading-sizeXXXL--heading,
|
|
1511
1254
|
.spectrum:lang(ko) .spectrum-Heading-sizeXXXL--heading,
|
|
1512
1255
|
.spectrum:lang(zh) .spectrum-Heading-sizeXXXL--heading {
|
|
1513
1256
|
color: var(
|
|
1514
1257
|
--spectrum-heading-xxxl-text-color,
|
|
1515
1258
|
var(--spectrum-alias-heading-text-color)
|
|
1516
|
-
);
|
|
1517
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeXXXL--heading,
|
|
1518
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeXXXL--heading */
|
|
1259
|
+
);
|
|
1519
1260
|
}
|
|
1520
|
-
|
|
1521
1261
|
.spectrum:lang(ja) .spectrum-Heading-sizeXXL--heading,
|
|
1522
1262
|
.spectrum:lang(ko) .spectrum-Heading-sizeXXL--heading,
|
|
1523
1263
|
.spectrum:lang(zh) .spectrum-Heading-sizeXXL--heading {
|
|
1524
1264
|
color: var(
|
|
1525
1265
|
--spectrum-heading-xxl-text-color,
|
|
1526
1266
|
var(--spectrum-alias-heading-text-color)
|
|
1527
|
-
);
|
|
1528
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeXXL--heading,
|
|
1529
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeXXL--heading */
|
|
1267
|
+
);
|
|
1530
1268
|
}
|
|
1531
|
-
|
|
1532
1269
|
.spectrum:lang(ja) .spectrum-Heading-sizeXL--heading,
|
|
1533
1270
|
.spectrum:lang(ko) .spectrum-Heading-sizeXL--heading,
|
|
1534
1271
|
.spectrum:lang(zh) .spectrum-Heading-sizeXL--heading {
|
|
1535
1272
|
color: var(
|
|
1536
1273
|
--spectrum-heading-xl-text-color,
|
|
1537
1274
|
var(--spectrum-alias-heading-text-color)
|
|
1538
|
-
);
|
|
1539
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeXL--heading,
|
|
1540
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeXL--heading */
|
|
1275
|
+
);
|
|
1541
1276
|
}
|
|
1542
|
-
|
|
1543
1277
|
.spectrum:lang(ja) .spectrum-Heading-sizeL--heading,
|
|
1544
1278
|
.spectrum:lang(ko) .spectrum-Heading-sizeL--heading,
|
|
1545
1279
|
.spectrum:lang(zh) .spectrum-Heading-sizeL--heading {
|
|
1546
1280
|
color: var(
|
|
1547
1281
|
--spectrum-heading-l-text-color,
|
|
1548
1282
|
var(--spectrum-alias-heading-text-color)
|
|
1549
|
-
);
|
|
1550
|
-
* .spectrum:lang(ko) .spectrum-Heading-sizeL--heading,
|
|
1551
|
-
* .spectrum:lang(zh) .spectrum-Heading-sizeL--heading */
|
|
1283
|
+
);
|
|
1552
1284
|
}
|
|
1553
|
-
|
|
1554
1285
|
.spectrum:lang(ja) .spectrum-Detail--sizeXL,
|
|
1555
1286
|
.spectrum:lang(ko) .spectrum-Detail--sizeXL,
|
|
1556
1287
|
.spectrum:lang(zh) .spectrum-Detail--sizeXL {
|
|
1557
1288
|
color: var(
|
|
1558
1289
|
--spectrum-detail-xl-text-color,
|
|
1559
1290
|
var(--spectrum-alias-heading-text-color)
|
|
1560
|
-
);
|
|
1561
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeXL,
|
|
1562
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeXL */
|
|
1291
|
+
);
|
|
1563
1292
|
}
|
|
1564
|
-
|
|
1565
1293
|
.spectrum:lang(ja) .spectrum-Detail--sizeL,
|
|
1566
1294
|
.spectrum:lang(ko) .spectrum-Detail--sizeL,
|
|
1567
1295
|
.spectrum:lang(zh) .spectrum-Detail--sizeL {
|
|
1568
1296
|
color: var(
|
|
1569
1297
|
--spectrum-detail-l-text-color,
|
|
1570
1298
|
var(--spectrum-alias-heading-text-color)
|
|
1571
|
-
);
|
|
1572
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeL,
|
|
1573
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeL */
|
|
1299
|
+
);
|
|
1574
1300
|
}
|
|
1575
|
-
|
|
1576
1301
|
.spectrum:lang(ja) .spectrum-Detail--sizeM,
|
|
1577
1302
|
.spectrum:lang(ko) .spectrum-Detail--sizeM,
|
|
1578
1303
|
.spectrum:lang(zh) .spectrum-Detail--sizeM {
|
|
1579
1304
|
color: var(
|
|
1580
1305
|
--spectrum-detail-m-text-color,
|
|
1581
1306
|
var(--spectrum-alias-heading-text-color)
|
|
1582
|
-
);
|
|
1583
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeM,
|
|
1584
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeM */
|
|
1307
|
+
);
|
|
1585
1308
|
}
|
|
1586
|
-
|
|
1587
1309
|
.spectrum:lang(ja) .spectrum-Detail--sizeS,
|
|
1588
1310
|
.spectrum:lang(ko) .spectrum-Detail--sizeS,
|
|
1589
1311
|
.spectrum:lang(zh) .spectrum-Detail--sizeS {
|
|
1590
1312
|
color: var(
|
|
1591
1313
|
--spectrum-detail-s-text-color,
|
|
1592
1314
|
var(--spectrum-alias-heading-text-color)
|
|
1593
|
-
);
|
|
1594
|
-
* .spectrum:lang(ko) .spectrum-Detail--sizeS,
|
|
1595
|
-
* .spectrum:lang(zh) .spectrum-Detail--sizeS */
|
|
1315
|
+
);
|
|
1596
1316
|
}
|
|
1597
|
-
|
|
1598
1317
|
.spectrum:lang(ja) .spectrum-Code--sizeXL,
|
|
1599
1318
|
.spectrum:lang(ko) .spectrum-Code--sizeXL,
|
|
1600
1319
|
.spectrum:lang(zh) .spectrum-Code--sizeXL {
|
|
1601
|
-
color: var(
|
|
1602
|
-
--spectrum-code-xl-text-color,
|
|
1603
|
-
var(--spectrum-alias-text-color)
|
|
1604
|
-
); /* .spectrum:lang(ja) .spectrum-Code--sizeXL,
|
|
1605
|
-
* .spectrum:lang(ko) .spectrum-Code--sizeXL,
|
|
1606
|
-
* .spectrum:lang(zh) .spectrum-Code--sizeXL */
|
|
1320
|
+
color: var(--spectrum-code-xl-text-color, var(--spectrum-alias-text-color));
|
|
1607
1321
|
}
|
|
1608
|
-
|
|
1609
1322
|
.spectrum:lang(ja) .spectrum-Code--sizeL,
|
|
1610
1323
|
.spectrum:lang(ko) .spectrum-Code--sizeL,
|
|
1611
1324
|
.spectrum:lang(zh) .spectrum-Code--sizeL {
|
|
1612
|
-
color: var(
|
|
1613
|
-
--spectrum-code-l-text-color,
|
|
1614
|
-
var(--spectrum-alias-text-color)
|
|
1615
|
-
); /* .spectrum:lang(ja) .spectrum-Code--sizeL,
|
|
1616
|
-
* .spectrum:lang(ko) .spectrum-Code--sizeL,
|
|
1617
|
-
* .spectrum:lang(zh) .spectrum-Code--sizeL */
|
|
1325
|
+
color: var(--spectrum-code-l-text-color, var(--spectrum-alias-text-color));
|
|
1618
1326
|
}
|
|
1619
|
-
|
|
1620
1327
|
.spectrum:lang(ja) .spectrum-Code--sizeM,
|
|
1621
1328
|
.spectrum:lang(ko) .spectrum-Code--sizeM,
|
|
1622
1329
|
.spectrum:lang(zh) .spectrum-Code--sizeM {
|
|
1623
|
-
color: var(
|
|
1624
|
-
--spectrum-code-m-text-color,
|
|
1625
|
-
var(--spectrum-alias-text-color)
|
|
1626
|
-
); /* .spectrum:lang(ja) .spectrum-Code--sizeM,
|
|
1627
|
-
* .spectrum:lang(ko) .spectrum-Code--sizeM,
|
|
1628
|
-
* .spectrum:lang(zh) .spectrum-Code--sizeM */
|
|
1330
|
+
color: var(--spectrum-code-m-text-color, var(--spectrum-alias-text-color));
|
|
1629
1331
|
}
|
|
1630
|
-
|
|
1631
1332
|
.spectrum:lang(ja) .spectrum-Code--sizeS,
|
|
1632
1333
|
.spectrum:lang(ko) .spectrum-Code--sizeS,
|
|
1633
1334
|
.spectrum:lang(zh) .spectrum-Code--sizeS {
|
|
1634
|
-
color: var(
|
|
1635
|
-
--spectrum-code-s-text-color,
|
|
1636
|
-
var(--spectrum-alias-text-color)
|
|
1637
|
-
); /* .spectrum:lang(ja) .spectrum-Code--sizeS,
|
|
1638
|
-
* .spectrum:lang(ko) .spectrum-Code--sizeS,
|
|
1639
|
-
* .spectrum:lang(zh) .spectrum-Code--sizeS */
|
|
1335
|
+
color: var(--spectrum-code-s-text-color, var(--spectrum-alias-text-color));
|
|
1640
1336
|
}
|
|
1641
|
-
|
|
1642
1337
|
.spectrum:lang(ja) .spectrum-Code--sizeXS,
|
|
1643
1338
|
.spectrum:lang(ko) .spectrum-Code--sizeXS,
|
|
1644
1339
|
.spectrum:lang(zh) .spectrum-Code--sizeXS {
|
|
1645
|
-
color: var(
|
|
1646
|
-
--spectrum-code-xs-text-color,
|
|
1647
|
-
var(--spectrum-alias-text-color)
|
|
1648
|
-
); /* .spectrum:lang(ja) .spectrum-Code--sizeXS,
|
|
1649
|
-
* .spectrum:lang(ko) .spectrum-Code--sizeXS,
|
|
1650
|
-
* .spectrum:lang(zh) .spectrum-Code--sizeXS */
|
|
1340
|
+
color: var(--spectrum-code-xs-text-color, var(--spectrum-alias-text-color));
|
|
1651
1341
|
}
|