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