@salesforcedevs/dx-components 1.3.84 → 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/package.json +2 -2
- package/src/modules/dx/cardCallout/cardCallout.css +2 -2
- package/src/modules/dx/cardCallout/cardCallout.html +1 -1
- package/src/modules/dx/cardDocs/cardDocs.css +3 -3
- 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.html +1 -1
- 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/footer/footer.html +1 -1
- 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/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/sidebar/sidebar.html +2 -2
- package/src/modules/dx/sidebarOld/sidebarOld.html +1 -1
- package/src/modules/dx/toc/toc.css +1 -1
- package/src/modules/dx/toc/toc.ts +1 -1
- package/src/modules/dxHelpers/card/card.css +2 -6
- package/src/modules/dxHelpers/text/text.css +39 -41
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforcedevs/dx-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.85",
|
|
4
4
|
"description": "DX Lightning web components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"eventsourcemock": "^2.0.0",
|
|
41
41
|
"luxon": "^3.1.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "6b738627c2fefd4e639f1def42cdc4d4a44c7171"
|
|
44
44
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
/* title */
|
|
18
18
|
|
|
19
|
-
.dx-text-
|
|
19
|
+
.dx-text-display-4 {
|
|
20
20
|
color: inherit;
|
|
21
21
|
margin-bottom: var(--dx-g-spacing-3xl);
|
|
22
22
|
overflow-wrap: hyphenate-word;
|
|
@@ -51,7 +51,7 @@ dx-icon::part(svg) {
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
@media screen and (max-width: 1024px) {
|
|
54
|
-
.dx-text-
|
|
54
|
+
.dx-text-display-4 {
|
|
55
55
|
margin-bottom: var(--dx-g-spacing-xl);
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
flex-grow: 1;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
.dx-text-
|
|
27
|
+
.dx-text-display-8 dx-button {
|
|
28
28
|
margin-left: var(--dx-g-spacing-xs);
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
.dx-text-
|
|
31
|
+
.dx-text-display-6 {
|
|
32
32
|
position: relative;
|
|
33
33
|
-webkit-line-clamp: var(--dx-c-heading-max-lines);
|
|
34
34
|
-webkit-box-orient: vertical;
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
overflow: hidden;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
.dx-text-
|
|
39
|
+
.dx-text-display-6 dx-icon {
|
|
40
40
|
display: inline-block;
|
|
41
41
|
transform: translateY(-3px);
|
|
42
42
|
}
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
if:true={featured}
|
|
21
21
|
>
|
|
22
22
|
<dx-formatted-date-time
|
|
23
|
-
class="dx-text-
|
|
23
|
+
class="dx-text-display-8 month"
|
|
24
24
|
value={startDatetime}
|
|
25
25
|
month="short"
|
|
26
26
|
></dx-formatted-date-time>
|
|
27
27
|
<dx-formatted-date-time
|
|
28
|
-
class="dx-text-
|
|
28
|
+
class="dx-text-display-1b day"
|
|
29
29
|
value={startDatetime}
|
|
30
30
|
day="2-digit"
|
|
31
31
|
></dx-formatted-date-time>
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
z-index: 1;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
.dx-text-
|
|
27
|
+
.dx-text-display-4 {
|
|
28
28
|
margin: 4px 0 4px 0;
|
|
29
29
|
color: inherit;
|
|
30
30
|
}
|
|
@@ -44,7 +44,7 @@ img {
|
|
|
44
44
|
margin: 0;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
.dx-card-size-large .dx-text-
|
|
47
|
+
.dx-card-size-large .dx-text-display-4 {
|
|
48
48
|
font-size: 30px;
|
|
49
49
|
letter-spacing: 0.3px;
|
|
50
50
|
line-height: 40px;
|
|
@@ -81,7 +81,7 @@ img {
|
|
|
81
81
|
box-shadow: var(--dx-g-box-shadow-sm);
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
.dx-text-
|
|
84
|
+
.dx-text-display-4 {
|
|
85
85
|
letter-spacing: 0.1px;
|
|
86
86
|
}
|
|
87
87
|
|
|
@@ -114,7 +114,7 @@ img {
|
|
|
114
114
|
max-width: 50%;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
-
.dx-card-size-normal .dx-text-
|
|
117
|
+
.dx-card-size-normal .dx-text-display-4 {
|
|
118
118
|
font-size: var(--dx-g-text-xl);
|
|
119
119
|
line-height: 28px;
|
|
120
120
|
}
|
|
@@ -128,7 +128,7 @@ img {
|
|
|
128
128
|
margin: 14px 0 -2px 0;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
.dx-card-size-large .dx-text-
|
|
131
|
+
.dx-card-size-large .dx-text-display-4 {
|
|
132
132
|
font-size: var(--dx-g-text-2xl);
|
|
133
133
|
line-height: 40px;
|
|
134
134
|
letter-spacing: 0.6px;
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
--dx-c-card-title-icon-size: 22px;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
h3.dx-text-
|
|
12
|
+
h3.dx-text-display-6 {
|
|
13
13
|
color: var(--dx-c-card-title-color);
|
|
14
14
|
transition: var(--dx-g-transition-hue-1x);
|
|
15
15
|
font-size: var(--dx-c-card-title-font-size);
|
|
@@ -32,7 +32,7 @@ dx-icon {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
@media screen and (max-width: 1024px) {
|
|
35
|
-
.dx-text-
|
|
35
|
+
.dx-text-display-6 {
|
|
36
36
|
font-size: 20px;
|
|
37
37
|
line-height: 24px;
|
|
38
38
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class={containerClassName} part="container">
|
|
3
3
|
<img src={imageAssetPath} alt="Mountains" />
|
|
4
4
|
<div class="text">
|
|
5
|
-
<h3 class="title dx-text-
|
|
5
|
+
<h3 class="title dx-text-display-4">{title}</h3>
|
|
6
6
|
<p class="subtitle dx-text-body-2" if:true={subtitle}>{subtitle}</p>
|
|
7
7
|
</div>
|
|
8
8
|
</div>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<section class={sectionClass}>
|
|
3
3
|
<div class="description">
|
|
4
|
-
<h2 if:true={hasLabel} class="dx-text-
|
|
5
|
-
<h3 class="dx-text-
|
|
4
|
+
<h2 if:true={hasLabel} class="dx-text-display-8 label">{label}</h2>
|
|
5
|
+
<h3 class="dx-text-display-4">{title}</h3>
|
|
6
6
|
<div class="body dx-text-body-2">
|
|
7
7
|
<slot></slot>
|
|
8
8
|
</div>
|
|
@@ -369,7 +369,7 @@ a.image-container > img {
|
|
|
369
369
|
padding-bottom: var(--dx-g-spacing-lg);
|
|
370
370
|
}
|
|
371
371
|
|
|
372
|
-
.dx-text-
|
|
372
|
+
.dx-text-display-2 {
|
|
373
373
|
padding-bottom: var(--dx-g-spacing-sm);
|
|
374
374
|
display: block;
|
|
375
375
|
}
|
|
@@ -480,11 +480,11 @@ dx-image-and-label {
|
|
|
480
480
|
margin-bottom: calc(var(--dx-c-bottom-image-height) * -0.72);
|
|
481
481
|
}
|
|
482
482
|
|
|
483
|
-
.dx-text-
|
|
483
|
+
.dx-text-display-6 {
|
|
484
484
|
font-size: var(--dx-g-text-xl);
|
|
485
485
|
}
|
|
486
486
|
|
|
487
|
-
.dx-text-
|
|
487
|
+
.dx-text-display-2 {
|
|
488
488
|
font-size: var(--dx-g-text-2xl);
|
|
489
489
|
line-height: var(--dx-g-spacing-2xl);
|
|
490
490
|
}
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
<div class={classname} part="container" style={style}>
|
|
3
3
|
<div class="container-layout">
|
|
4
4
|
<template if:true={labelAsPrimaryHeading}>
|
|
5
|
-
<h1 if:true={label} class="label dx-text-
|
|
5
|
+
<h1 if:true={label} class="label dx-text-display-6">{label}</h1>
|
|
6
6
|
</template>
|
|
7
7
|
<template if:false={labelAsPrimaryHeading}>
|
|
8
|
-
<p if:true={label} class="label dx-text-
|
|
8
|
+
<p if:true={label} class="label dx-text-display-6">{label}</p>
|
|
9
9
|
</template>
|
|
10
10
|
<div class="featured-content-main-content">
|
|
11
11
|
<template if:false={labelAsPrimaryHeading}>
|
|
12
|
-
<h1 class="title dx-text-
|
|
12
|
+
<h1 class="title dx-text-display-2">
|
|
13
13
|
<a
|
|
14
14
|
class="title-link"
|
|
15
15
|
if:true={href}
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
</h1>
|
|
25
25
|
</template>
|
|
26
26
|
<template if:true={labelAsPrimaryHeading}>
|
|
27
|
-
<h2 class="title dx-text-
|
|
27
|
+
<h2 class="title dx-text-display-2">
|
|
28
28
|
<a
|
|
29
29
|
class="title-link"
|
|
30
30
|
if:true={href}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="container">
|
|
3
|
-
<h2 if:true={title} class="dx-text-
|
|
3
|
+
<h2 if:true={title} class="dx-text-display-4">{title}</h2>
|
|
4
4
|
<ul>
|
|
5
5
|
<template for:each={options} for:item="option">
|
|
6
6
|
<li key={option.id} class="option">
|
|
7
|
-
<div class="dx-text-
|
|
7
|
+
<div class="dx-text-display-8">
|
|
8
8
|
<dx-icon
|
|
9
9
|
class="icon"
|
|
10
10
|
size="small"
|
|
@@ -76,12 +76,12 @@
|
|
|
76
76
|
/* breakpoints tablet */
|
|
77
77
|
|
|
78
78
|
@media screen and (max-width: 1024px) {
|
|
79
|
-
.title.dx-text-
|
|
79
|
+
.title.dx-text-display-2 {
|
|
80
80
|
font-size: var(--dx-g-text-3xl);
|
|
81
81
|
line-height: var(--dx-g-spacing-2xl);
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
.subtitle.dx-text-
|
|
84
|
+
.subtitle.dx-text-display-8 {
|
|
85
85
|
font-size: var(--dx-g-text-sm);
|
|
86
86
|
}
|
|
87
87
|
|
|
@@ -90,15 +90,11 @@
|
|
|
90
90
|
line-height: var(--dx-g-spacing-lg);
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
-
.title.dx-text-
|
|
93
|
+
.title.dx-text-display-4 {
|
|
94
94
|
font-size: var(--dx-g-text-2xl);
|
|
95
95
|
line-height: var(--dx-g-spacing-xl);
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
.subtitle.dx-text-heading-7 {
|
|
99
|
-
font-size: var(--dx-g-text-xs);
|
|
100
|
-
}
|
|
101
|
-
|
|
102
98
|
.body.dx-text-body-2 {
|
|
103
99
|
font-size: var(--dx-g-text-sm);
|
|
104
100
|
line-height: var(--dx-g-spacing-lg);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class={className}>
|
|
3
|
-
<span if:true={label} class="label dx-text-
|
|
3
|
+
<span if:true={label} class="label dx-text-display-8">{label}</span>
|
|
4
4
|
<div class={titleClassname} role="heading" aria-level={titleAriaLevel}>
|
|
5
5
|
{title}
|
|
6
6
|
</div>
|
|
7
|
-
<span class=
|
|
7
|
+
<span class="subtitle dx-text-display-8" if:true={hasSubtitle}>
|
|
8
8
|
<span if:true={owner}>{owner}</span>
|
|
9
9
|
<span if:true={attributionLink}>
|
|
10
10
|
By
|
|
@@ -11,13 +11,8 @@ const LARGE = "large";
|
|
|
11
11
|
const MEDIUM = "medium";
|
|
12
12
|
|
|
13
13
|
const titleClasses = {
|
|
14
|
-
[LARGE]: "dx-text-
|
|
15
|
-
[MEDIUM]: "dx-text-
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
const subtitleClasses = {
|
|
19
|
-
[LARGE]: "dx-text-heading-6",
|
|
20
|
-
[MEDIUM]: "dx-text-heading-7"
|
|
14
|
+
[LARGE]: "dx-text-display-2",
|
|
15
|
+
[MEDIUM]: "dx-text-display-4"
|
|
21
16
|
};
|
|
22
17
|
|
|
23
18
|
export default class GroupText extends LightningElement {
|
|
@@ -76,10 +71,6 @@ export default class GroupText extends LightningElement {
|
|
|
76
71
|
return cx("title", titleClasses[this.size]);
|
|
77
72
|
}
|
|
78
73
|
|
|
79
|
-
private get subtitleClassname() {
|
|
80
|
-
return cx("subtitle", subtitleClasses[this.size]);
|
|
81
|
-
}
|
|
82
|
-
|
|
83
74
|
private get hasButtonGroup(): boolean {
|
|
84
75
|
return !!(this.primaryLink || this.secondaryLink || this.tertiaryLink);
|
|
85
76
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="container" style={style}>
|
|
3
3
|
<div class={textStyle}>
|
|
4
|
-
<h1 class="heading dx-text-
|
|
4
|
+
<h1 class="heading dx-text-display-2">{title}</h1>
|
|
5
5
|
<span class="body dx-text-body-1">{body}</span>
|
|
6
|
-
<span if:true={subtitle} class="subtitle dx-text-
|
|
6
|
+
<span if:true={subtitle} class="subtitle dx-text-display-7">
|
|
7
7
|
{subtitle}
|
|
8
8
|
</span>
|
|
9
9
|
<div class="button-container">
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
max-width: 800px;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
.dx-text-
|
|
64
|
+
.dx-text-display-custom {
|
|
65
65
|
color: var(--dx-c-section-heading-font-color, --dx-g-text-heading-color);
|
|
66
66
|
font-family: var(--dx-c-section-heading-font-family, --dx-g-font-display);
|
|
67
67
|
font-size: var(--dx-c-section-heading-font-size, --dx-g-text-3xl);
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
</svg>
|
|
28
28
|
|
|
29
29
|
<div part="text" class="text" if:true={hasText}>
|
|
30
|
-
<span class="label dx-text-
|
|
30
|
+
<span class="label dx-text-display-8" if:true={label}>{label}</span>
|
|
31
31
|
<h2 class={headingClassName} if:true={title}>{title}</h2>
|
|
32
32
|
<span class="subtitle dx-text-body-1" if:true={subtitle}>
|
|
33
33
|
{subtitle}
|
|
@@ -37,7 +37,7 @@ export default class Section extends LightningElement {
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
private get headingClassName() {
|
|
40
|
-
return cx("heading", `dx-text-
|
|
40
|
+
return cx("heading", `dx-text-display-${this.headingLevel}`);
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
private get hasText(): boolean {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
></dx-button>
|
|
30
30
|
<div class="sidebar-header padding-horizontal">
|
|
31
31
|
<div class="header" if:false={mobile}>
|
|
32
|
-
<h2 class="dx-text-
|
|
32
|
+
<h2 class="dx-text-display-6 header-title">{header}</h2>
|
|
33
33
|
<slot name="header"></slot>
|
|
34
34
|
</div>
|
|
35
35
|
<div class="search">
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
></dx-sidebar-search>
|
|
44
44
|
</div>
|
|
45
45
|
<h2
|
|
46
|
-
class="results-heading dx-text-
|
|
46
|
+
class="results-heading dx-text-display-8"
|
|
47
47
|
if:true={showResultsHeading}
|
|
48
48
|
>
|
|
49
49
|
Results
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<template if:true={expanded}>
|
|
32
32
|
<div class="padding-horizontal">
|
|
33
33
|
<div class="header" if:false={mobile}>
|
|
34
|
-
<h2 class="dx-text-
|
|
34
|
+
<h2 class="dx-text-display-6 header-title">{header}</h2>
|
|
35
35
|
<slot name="header"></slot>
|
|
36
36
|
</div>
|
|
37
37
|
<div class="search">
|
|
@@ -246,16 +246,12 @@ a.dx-card-base:hover dx-card-title {
|
|
|
246
246
|
line-height: 16px;
|
|
247
247
|
}
|
|
248
248
|
|
|
249
|
-
.dx-text-
|
|
249
|
+
.dx-text-display-4:not(.static-font) {
|
|
250
250
|
font-size: 24px;
|
|
251
251
|
line-height: 28px;
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
-
.dx-text-
|
|
255
|
-
font-size: 12px;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.dx-text-heading-6:not(.static-font) {
|
|
254
|
+
.dx-text-display-8:not(.static-font) {
|
|
259
255
|
font-size: var(--dx-g-text-sm);
|
|
260
256
|
}
|
|
261
257
|
}
|
|
@@ -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);
|