@salesforcedevs/dx-components 1.3.83 → 1.3.85
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/lwc.config.json +3 -6
- package/package.json +2 -3
- package/src/modules/dx/breadcrumbs/breadcrumbs.ts +10 -8
- package/src/modules/dx/cardCallout/cardCallout.css +2 -2
- package/src/modules/dx/cardCallout/cardCallout.html +1 -1
- package/src/modules/dx/cardContent/cardContent.html +1 -4
- package/src/modules/dx/cardDocs/cardDocs.css +3 -3
- package/src/modules/dx/cardDocs/cardDocs.html +1 -4
- package/src/modules/dx/cardEvent/cardEvent.css +1 -6
- package/src/modules/dx/cardEvent/cardEvent.html +2 -2
- package/src/modules/dx/cardNews/cardNews.css +5 -5
- package/src/modules/dx/cardNews/cardNews.html +1 -1
- package/src/modules/dx/cardTitle/cardTitle.css +2 -2
- package/src/modules/dx/cardTitle/cardTitle.html +1 -1
- package/src/modules/dx/codeBlock/codeBlock.css +7 -23
- package/src/modules/dx/codeBlock/codeBlock.html +20 -1
- package/src/modules/dx/codeBlock/codeBlock.ts +110 -70
- package/src/modules/dx/dropdown/dropdown.ts +3 -2
- package/src/modules/dx/emptyState/emptyState.html +1 -1
- package/src/modules/dx/feature/feature.html +2 -2
- package/src/modules/dx/featuredContentHeader/featuredContentHeader.css +3 -3
- package/src/modules/dx/featuredContentHeader/featuredContentHeader.html +4 -4
- package/src/modules/dx/featuresList/featuresList.css +2 -2
- package/src/modules/dx/featuresList/featuresList.html +2 -2
- package/src/modules/dx/filterMenu/filterMenu.html +2 -7
- package/src/modules/dx/filterMenu/filterMenu.ts +3 -4
- package/src/modules/dx/footer/footer.html +1 -1
- package/src/modules/dx/footer/links.ts +4 -2
- package/src/modules/dx/grid/grid.ts +1 -3
- package/src/modules/dx/groupText/groupText.css +3 -7
- package/src/modules/dx/groupText/groupText.html +2 -2
- package/src/modules/dx/groupText/groupText.ts +2 -11
- package/src/modules/dx/header/header.html +1 -1
- package/src/modules/dx/logo/logo.html +1 -1
- package/src/modules/dx/mainContentHeader/mainContentHeader.html +2 -2
- package/src/modules/dx/podcastHost/podcastHost.html +1 -1
- package/src/modules/dx/popover/popover.ts +3 -3
- package/src/modules/dx/searchResults/searchResults.ts +3 -1
- package/src/modules/dx/section/section.css +1 -1
- package/src/modules/dx/section/section.html +1 -1
- package/src/modules/dx/section/section.ts +1 -1
- package/src/modules/dx/select/select.ts +3 -2
- package/src/modules/dx/sidebar/sidebar.html +2 -2
- package/src/modules/dx/sidebar/sidebar.ts +5 -7
- package/src/modules/dx/sidebarOld/sidebarOld.html +1 -1
- package/src/modules/dx/sidebarSearch/sidebarSearch.ts +5 -2
- package/src/modules/dx/tabPanelList/tabPanelList.ts +2 -2
- package/src/modules/dx/toc/toc.css +1 -1
- package/src/modules/dx/toc/toc.ts +1 -1
- package/src/modules/dxBaseElements/matchMediaElement/matchMediaElement.ts +4 -2
- package/src/modules/dxHelpers/card/card.css +2 -6
- package/src/modules/dxHelpers/code/code.css +296 -0
- package/src/modules/dxHelpers/text/text.css +39 -41
- package/src/modules/dxUtils/prismjs/prismjs.html +3 -0
- package/src/modules/dxUtils/prismjs/prismjs.ts +167 -287
- package/src/assets/shiki/languages/amp.tmLanguage.json +0 -205
- package/src/assets/shiki/themes/codey-highnoon.json +0 -650
- package/src/assets/shiki/themes/codey-midnight.json +0 -622
- package/src/modules/dxUtils/shiki/languages.ts +0 -18
- package/src/modules/dxUtils/shiki/shiki.ts +0 -75
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
/* Custom prism.js stylesheet */
|
|
2
|
+
/* stylelint-disable selector-pseudo-element-no-unknown */
|
|
3
|
+
.dx-variant-block dx-button {
|
|
4
|
+
--dx-c-button-primary-color: var(--dx-g-gray-50);
|
|
5
|
+
--dx-c-button-primary-color-hover: var(--dx-g-gray-50);
|
|
6
|
+
--dx-c-button-secondary-color-hover: var(--dx-g-gray-95);
|
|
7
|
+
--dx-c-button-inline-color-hover: var(--dx-g-gray-50);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.dx-theme-dark.dx-variant-card dx-button {
|
|
11
|
+
--dx-c-button-primary-color: var(--dx-g-hot-orange-vibrant-95);
|
|
12
|
+
--dx-c-button-primary-color-hover: var(--dx-g-hot-orange-vibrant-95);
|
|
13
|
+
--dx-c-button-secondary-color-hover: var(--dx-g-blue-vibrant-10);
|
|
14
|
+
--dx-c-button-inline-color-hover: var(--dx-g-hot-orange-vibrant-95);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.dx-theme-light.dx-variant-card dx-button {
|
|
18
|
+
--dx-c-button-primary-color: var(--dx-g-blue-vibrant-20);
|
|
19
|
+
--dx-c-button-primary-color-hover: var(--dx-g-blue-vibrant-20);
|
|
20
|
+
--dx-c-button-secondary-color-hover: var(--dx-g-hot-orange-vibrant-95);
|
|
21
|
+
--dx-c-button-inline-color-hover: var(--dx-g-hot-orange-vibrant-95);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
pre[class*="language-"],
|
|
25
|
+
code[class*="language-"] {
|
|
26
|
+
font-size: 14px;
|
|
27
|
+
text-shadow: none;
|
|
28
|
+
font-family: var(--dx-g-font-mono);
|
|
29
|
+
direction: ltr;
|
|
30
|
+
text-align: left;
|
|
31
|
+
white-space: pre;
|
|
32
|
+
word-spacing: normal;
|
|
33
|
+
word-break: normal;
|
|
34
|
+
line-height: 20px;
|
|
35
|
+
-moz-tab-size: 4;
|
|
36
|
+
-o-tab-size: 4;
|
|
37
|
+
tab-size: 4;
|
|
38
|
+
-webkit-hyphens: none;
|
|
39
|
+
-moz-hyphens: none;
|
|
40
|
+
-ms-hyphens: none;
|
|
41
|
+
hyphens: none;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
pre[class*="language-"]::selection,
|
|
45
|
+
code[class*="language-"]::selection,
|
|
46
|
+
pre[class*="language-"]::mozselection,
|
|
47
|
+
code[class*="language-"]::mozselection {
|
|
48
|
+
text-shadow: none;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.dx-theme-dark code[class*="language-"] {
|
|
52
|
+
color: rgb(255, 255, 255);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.dx-theme-light code[class*="language-"] {
|
|
56
|
+
color: var(--dx-g-gray-10);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.dx-theme-dark code[class*="language-"]::mozselection {
|
|
60
|
+
background: rgb(255, 255, 255);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.dx-theme-light code[class*="language-"]::mozselection {
|
|
64
|
+
background: var(--dx-g-gray-95);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.dx-variant-card pre[class*="language-"] {
|
|
68
|
+
padding: 1em;
|
|
69
|
+
border-radius: 0 0 0.3em 0.3em;
|
|
70
|
+
overflow: auto;
|
|
71
|
+
word-wrap: normal;
|
|
72
|
+
white-space: pre;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.dx-variant-card :not(pre) > code[class*="language-"] {
|
|
76
|
+
padding: 0.1em 0.3em;
|
|
77
|
+
border-radius: 0.3em;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.dx-variant-block pre[class*="language-"] {
|
|
81
|
+
padding: 1em;
|
|
82
|
+
border-radius: 0.3em;
|
|
83
|
+
overflow: auto;
|
|
84
|
+
word-wrap: normal;
|
|
85
|
+
white-space: pre;
|
|
86
|
+
width: 94%;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.dx-variant-block :not(pre) > code[class*="language-"] {
|
|
90
|
+
padding: 0.1em 0.3em;
|
|
91
|
+
border-radius: 0.3em;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.dx-theme-dark pre[class*="language-"] {
|
|
95
|
+
color: rgb(255, 255, 255);
|
|
96
|
+
background: var(--dx-g-blue-vibrant-10);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.dx-theme-dark :not(pre) > code[class*="language-"] {
|
|
100
|
+
color: rgb(255, 255, 255);
|
|
101
|
+
background: var(--dx-g-blue-vibrant-10);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.dx-theme-light pre[class*="language-"] {
|
|
105
|
+
color: var(--dx-g-gray-10);
|
|
106
|
+
background: var(--dx-g-gray-95);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.dx-theme-light :not(pre) > code[class*="language-"] {
|
|
110
|
+
color: var(--dx-g-gray-10);
|
|
111
|
+
background: var(--dx-g-gray-95);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/*********************************************************
|
|
115
|
+
* Tokens
|
|
116
|
+
*/
|
|
117
|
+
.namespace {
|
|
118
|
+
opacity: 0.7;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.token.important,
|
|
122
|
+
.token.bold {
|
|
123
|
+
font-weight: bold;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.token.italic {
|
|
127
|
+
font-style: italic;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.token.entity {
|
|
131
|
+
cursor: help;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
/*********************************************************
|
|
135
|
+
* Line highlighting
|
|
136
|
+
*/
|
|
137
|
+
pre[data-line] {
|
|
138
|
+
position: relative;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
pre[class*="language-"] > code[class*="language-"] {
|
|
142
|
+
position: relative;
|
|
143
|
+
display: block;
|
|
144
|
+
z-index: 1;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.line-highlight {
|
|
148
|
+
position: absolute;
|
|
149
|
+
left: 0;
|
|
150
|
+
right: 0;
|
|
151
|
+
padding: inherit 0;
|
|
152
|
+
margin-top: 1em;
|
|
153
|
+
background: #1e2d50;
|
|
154
|
+
box-shadow: inset 5px 0 0 #0176d3;
|
|
155
|
+
z-index: 0;
|
|
156
|
+
pointer-events: none;
|
|
157
|
+
line-height: inherit;
|
|
158
|
+
white-space: pre;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.line-numbers .line-highlight::before,
|
|
162
|
+
.line-numbers .line-highlight::after {
|
|
163
|
+
content: none;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.line-numbers-rows > span::before {
|
|
167
|
+
content: counter(linenumber);
|
|
168
|
+
color: var(--dx-g-gray-50);
|
|
169
|
+
display: block;
|
|
170
|
+
padding-right: 0.4em;
|
|
171
|
+
text-align: right;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
pre[id].linkable-line-numbers span.line-numbers-rows {
|
|
175
|
+
pointer-events: all;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
pre[id].linkable-line-numbers span.line-numbers-rows > span::before {
|
|
179
|
+
cursor: pointer;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
pre[id].linkable-line-numbers span.line-numbers-rows > span:hover::before {
|
|
183
|
+
background-color: rgba(128, 128, 128, 0.2);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
pre[class*="language-"].line-numbers {
|
|
187
|
+
position: relative;
|
|
188
|
+
padding-left: 3.8em;
|
|
189
|
+
counter-reset: linenumber;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
pre[class*="language-"].line-numbers > code {
|
|
193
|
+
position: relative;
|
|
194
|
+
white-space: inherit;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.line-numbers .line-numbers-rows {
|
|
198
|
+
position: absolute;
|
|
199
|
+
pointer-events: none;
|
|
200
|
+
top: 0;
|
|
201
|
+
font-size: 100%;
|
|
202
|
+
left: -3.8em;
|
|
203
|
+
width: 3em; /* works for line-numbers below 1000 lines */
|
|
204
|
+
letter-spacing: -1px;
|
|
205
|
+
-webkit-user-select: none;
|
|
206
|
+
-moz-user-select: none;
|
|
207
|
+
-ms-user-select: none;
|
|
208
|
+
user-select: none;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.line-numbers-rows > span {
|
|
212
|
+
display: block;
|
|
213
|
+
counter-increment: linenumber;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.dx-variant-block.code-toolbar {
|
|
217
|
+
display: flex;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
/* for card variant */
|
|
221
|
+
div.code-toolbar.dx-variant-card {
|
|
222
|
+
display: flex;
|
|
223
|
+
flex-direction: column-reverse;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
div.code-toolbar:hover > .toolbar {
|
|
227
|
+
opacity: 1;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
div.code-toolbar:focus-within > .toolbar {
|
|
231
|
+
opacity: 1;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
div.code-toolbar.dx-variant-card > .toolbar {
|
|
235
|
+
border-radius: 0.3em 0.3em 0 0;
|
|
236
|
+
opacity: 1; /* card for base set to 0 */
|
|
237
|
+
display: flex;
|
|
238
|
+
align-items: center;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
div.code-toolbar.dx-variant-block > .toolbar {
|
|
242
|
+
transition: opacity 0.3s ease-in-out;
|
|
243
|
+
opacity: 0; /* card for base set to 0 */
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
div.code-toolbar.dx-theme-dark.dx-variant-card > .toolbar {
|
|
247
|
+
background-color: var(--dx-g-blue-natural-20);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
div.code-toolbar.dx-theme-light.dx-variant-card > .toolbar {
|
|
251
|
+
background-color: var(--dx-g-gray-90);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.dx-variant-block .toolbar-item {
|
|
255
|
+
padding-left: 4px;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.dx-variant-card .toolbar-item:first-child {
|
|
259
|
+
flex-basis: 95%;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.dx-variant-card .dx-code-block-heading {
|
|
263
|
+
transform: translateY(3px);
|
|
264
|
+
padding-left: 20px;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.dx-variant-card.dx-theme-dark .dx-code-block-heading {
|
|
268
|
+
color: white !important;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.dx-variant-card.dx-theme-light .dx-code-block-heading {
|
|
272
|
+
color: var(--dx-g-blue-vibrant-20);
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
/* Separate line b/c rules are thrown out if selector is invalid.
|
|
276
|
+
IE11 and old Edge versions don't support :focus-within. */
|
|
277
|
+
|
|
278
|
+
div.code-toolbar > .toolbar .toolbar-item {
|
|
279
|
+
display: inline-block;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
div.code-toolbar > .toolbar a {
|
|
283
|
+
cursor: pointer;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
div.code-toolbar > .toolbar a,
|
|
287
|
+
div.code-toolbar > .toolbar button,
|
|
288
|
+
div.code-toolbar > .toolbar a:hover,
|
|
289
|
+
div.code-toolbar > .toolbar a:focus,
|
|
290
|
+
div.code-toolbar > .toolbar button:hover,
|
|
291
|
+
div.code-toolbar > .toolbar button:focus,
|
|
292
|
+
div.code-toolbar > .toolbar span:hover,
|
|
293
|
+
div.code-toolbar > .toolbar span:focus {
|
|
294
|
+
color: inherit;
|
|
295
|
+
text-decoration: none;
|
|
296
|
+
}
|
|
@@ -1,52 +1,68 @@
|
|
|
1
|
-
|
|
1
|
+
/* WES Display 1 */
|
|
2
|
+
.dx-text-display-1 {
|
|
2
3
|
color: var(--dx-g-text-heading-color);
|
|
3
4
|
font-family: var(--dx-g-font-display);
|
|
4
|
-
font-size:
|
|
5
|
-
letter-spacing: -
|
|
5
|
+
font-size: var(--dx-g-text-6xl);
|
|
6
|
+
letter-spacing: -1.4px;
|
|
7
|
+
line-height: 88px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/* NO WES EQUIVALENT */
|
|
11
|
+
.dx-text-display-1b {
|
|
12
|
+
color: var(--dx-g-text-heading-color);
|
|
13
|
+
font-family: var(--dx-g-font-display);
|
|
14
|
+
font-size: 64px;
|
|
15
|
+
letter-spacing: -1.4px;
|
|
6
16
|
line-height: 64px;
|
|
7
17
|
}
|
|
8
18
|
|
|
9
|
-
|
|
19
|
+
/* WES Display 2 */
|
|
20
|
+
.dx-text-display-2 {
|
|
10
21
|
color: var(--dx-g-text-heading-color);
|
|
11
22
|
font-family: var(--dx-g-font-display);
|
|
12
23
|
font-size: var(--dx-g-text-5xl);
|
|
13
24
|
letter-spacing: -0.6px;
|
|
14
|
-
line-height:
|
|
25
|
+
line-height: 64px;
|
|
15
26
|
}
|
|
16
27
|
|
|
17
|
-
|
|
28
|
+
/* WES Display 3 */
|
|
29
|
+
.dx-text-display-3 {
|
|
18
30
|
color: var(--dx-g-text-heading-color);
|
|
19
31
|
font-family: var(--dx-g-font-display);
|
|
20
32
|
font-size: var(--dx-g-text-4xl);
|
|
21
|
-
letter-spacing: -0.
|
|
33
|
+
letter-spacing: -0.5px;
|
|
22
34
|
line-height: 56px;
|
|
23
35
|
}
|
|
24
36
|
|
|
25
|
-
|
|
37
|
+
/* WES Display 4 */
|
|
38
|
+
.dx-text-display-4 {
|
|
26
39
|
color: var(--dx-g-text-heading-color);
|
|
27
40
|
font-family: var(--dx-g-font-display);
|
|
28
41
|
font-size: var(--dx-g-text-3xl);
|
|
29
|
-
letter-spacing: -0.
|
|
30
|
-
line-height:
|
|
42
|
+
letter-spacing: -0.3px;
|
|
43
|
+
line-height: 48px;
|
|
31
44
|
}
|
|
32
45
|
|
|
33
|
-
|
|
46
|
+
/* Display 5 */
|
|
47
|
+
.dx-text-display-5 {
|
|
34
48
|
color: var(--dx-g-text-heading-color);
|
|
35
49
|
font-family: var(--dx-g-font-display);
|
|
36
50
|
font-size: var(--dx-g-text-2xl);
|
|
37
|
-
letter-spacing: -0.
|
|
51
|
+
letter-spacing: -0.1px;
|
|
38
52
|
line-height: 40px;
|
|
39
53
|
}
|
|
40
54
|
|
|
41
|
-
|
|
55
|
+
/* Display 6 */
|
|
56
|
+
.dx-text-display-6 {
|
|
42
57
|
color: var(--dx-g-text-heading-color);
|
|
43
58
|
font-family: var(--dx-g-font-display);
|
|
44
59
|
font-size: var(--dx-g-text-xl);
|
|
45
60
|
letter-spacing: -0.1px;
|
|
46
|
-
line-height:
|
|
61
|
+
line-height: 32px;
|
|
47
62
|
}
|
|
48
63
|
|
|
49
|
-
|
|
64
|
+
/* Display 7 */
|
|
65
|
+
.dx-text-display-7 {
|
|
50
66
|
color: var(--dx-g-text-heading-color);
|
|
51
67
|
font-family: var(--dx-g-font-display);
|
|
52
68
|
font-size: var(--dx-g-text-lg);
|
|
@@ -54,45 +70,25 @@
|
|
|
54
70
|
line-height: 28px;
|
|
55
71
|
}
|
|
56
72
|
|
|
57
|
-
|
|
73
|
+
/* Display 8 */
|
|
74
|
+
.dx-text-display-8 {
|
|
58
75
|
color: var(--dx-g-text-heading-color);
|
|
59
76
|
font-family: var(--dx-g-font-display);
|
|
60
|
-
font-size:
|
|
77
|
+
font-size: var(--dx-g-text-base);
|
|
61
78
|
letter-spacing: -0.1px;
|
|
62
79
|
line-height: 24px;
|
|
63
80
|
}
|
|
64
81
|
|
|
65
|
-
|
|
66
|
-
color: var(--dx-g-text-heading-color);
|
|
67
|
-
font-family: var(--dx-g-font-display);
|
|
68
|
-
font-size: var(--dx-g-text-base);
|
|
69
|
-
letter-spacing: 0;
|
|
70
|
-
line-height: 20px;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.dx-text-heading-7 {
|
|
74
|
-
color: var(--dx-g-text-heading-color);
|
|
75
|
-
font-family: var(--dx-g-font-display);
|
|
76
|
-
font-size: var(--dx-g-text-sm);
|
|
77
|
-
letter-spacing: 0;
|
|
78
|
-
line-height: 18px;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.dx-text-heading-alt-1 {
|
|
82
|
-
color: var(--dx-g-text-label-color);
|
|
83
|
-
font-family: var(--dx-g-font-sans);
|
|
84
|
-
font-size: var(--slds-text-lg);
|
|
85
|
-
line-height: 25px;
|
|
86
|
-
}
|
|
87
|
-
|
|
82
|
+
/* Body 1 */
|
|
88
83
|
.dx-text-body-1 {
|
|
89
84
|
color: var(--dx-g-text-body-color);
|
|
90
85
|
font-family: var(--dx-g-font-sans);
|
|
91
86
|
font-size: var(--dx-g-text-lg);
|
|
92
87
|
letter-spacing: 0;
|
|
93
|
-
line-height:
|
|
88
|
+
line-height: 30px;
|
|
94
89
|
}
|
|
95
90
|
|
|
91
|
+
/* Body 2 */
|
|
96
92
|
.dx-text-body-2 {
|
|
97
93
|
color: var(--dx-g-text-body-color);
|
|
98
94
|
font-family: var(--dx-g-font-sans);
|
|
@@ -101,6 +97,7 @@
|
|
|
101
97
|
line-height: 24px;
|
|
102
98
|
}
|
|
103
99
|
|
|
100
|
+
/* Body 3 */
|
|
104
101
|
.dx-text-body-3 {
|
|
105
102
|
color: var(--dx-g-text-body-color);
|
|
106
103
|
font-family: var(--dx-g-font-sans);
|
|
@@ -109,6 +106,7 @@
|
|
|
109
106
|
line-height: 20px;
|
|
110
107
|
}
|
|
111
108
|
|
|
109
|
+
/* Body Caption */
|
|
112
110
|
.dx-text-body-4 {
|
|
113
111
|
color: var(--dx-g-text-body-color);
|
|
114
112
|
font-family: var(--dx-g-font-sans);
|