@solid-design-system/styles 7.0.0-next.8 → 7.0.0
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/CHANGELOG.md +27 -0
- package/cdn/modules/chip.css +1 -1
- package/cdn/modules/container.css +1 -1
- package/cdn/modules/copyright.css +1 -1
- package/cdn/modules/display.css +1 -1
- package/cdn/modules/footnotes.css +1 -1
- package/cdn/modules/headline.css +1 -1
- package/cdn/modules/hidden-links.css +1 -1
- package/cdn/modules/interactive.css +1 -1
- package/cdn/modules/leadtext.css +1 -1
- package/cdn/modules/list.css +1 -1
- package/cdn/modules/mark.css +1 -1
- package/cdn/modules/media.css +1 -1
- package/cdn/modules/meta.css +1 -1
- package/cdn/modules/pagination.css +1 -1
- package/cdn/modules/paragraph.css +1 -1
- package/cdn/modules/prose.css +1 -1
- package/cdn/modules/status-badge.css +1 -1
- package/cdn/modules/table-cell.css +1 -1
- package/cdn/solid-styles.css +1 -1
- package/cdn-versioned/modules/chip.css +1 -1
- package/cdn-versioned/modules/container.css +1 -1
- package/cdn-versioned/modules/copyright.css +1 -1
- package/cdn-versioned/modules/display.css +1 -1
- package/cdn-versioned/modules/footnotes.css +1 -1
- package/cdn-versioned/modules/headline.css +1 -1
- package/cdn-versioned/modules/hidden-links.css +1 -1
- package/cdn-versioned/modules/interactive.css +1 -1
- package/cdn-versioned/modules/leadtext.css +1 -1
- package/cdn-versioned/modules/list.css +1 -1
- package/cdn-versioned/modules/mark.css +1 -1
- package/cdn-versioned/modules/media.css +1 -1
- package/cdn-versioned/modules/meta.css +1 -1
- package/cdn-versioned/modules/pagination.css +1 -1
- package/cdn-versioned/modules/paragraph.css +1 -1
- package/cdn-versioned/modules/prose.css +1 -1
- package/cdn-versioned/modules/status-badge.css +1 -1
- package/cdn-versioned/modules/table-cell.css +1 -1
- package/cdn-versioned/modules/table.css +1 -1
- package/cdn-versioned/solid-styles.css +1 -1
- package/dist/modules/chip.css +42 -42
- package/dist/modules/container.css +16 -16
- package/dist/modules/copyright.css +11 -11
- package/dist/modules/display.css +15 -15
- package/dist/modules/footnotes.css +30 -30
- package/dist/modules/headline.css +33 -33
- package/dist/modules/hidden-links.css +12 -12
- package/dist/modules/interactive.css +12 -12
- package/dist/modules/leadtext.css +9 -9
- package/dist/modules/list.css +12 -12
- package/dist/modules/mark.css +1 -1
- package/dist/modules/media.css +3 -3
- package/dist/modules/meta.css +10 -10
- package/dist/modules/pagination.css +33 -33
- package/dist/modules/paragraph.css +9 -9
- package/dist/modules/prose.css +113 -113
- package/dist/modules/status-badge.css +10 -10
- package/dist/modules/table-cell.css +12 -12
- package/dist/solid-styles.css +278 -278
- package/dist-versioned/modules/chip.css +63 -63
- package/dist-versioned/modules/container.css +44 -44
- package/dist-versioned/modules/copyright.css +17 -17
- package/dist-versioned/modules/display.css +21 -21
- package/dist-versioned/modules/footnotes.css +58 -58
- package/dist-versioned/modules/headline.css +63 -63
- package/dist-versioned/modules/hidden-links.css +16 -16
- package/dist-versioned/modules/interactive.css +28 -28
- package/dist-versioned/modules/leadtext.css +12 -12
- package/dist-versioned/modules/list.css +42 -42
- package/dist-versioned/modules/mark.css +2 -2
- package/dist-versioned/modules/media.css +7 -7
- package/dist-versioned/modules/meta.css +17 -17
- package/dist-versioned/modules/pagination.css +94 -94
- package/dist-versioned/modules/paragraph.css +12 -12
- package/dist-versioned/modules/prose.css +238 -238
- package/dist-versioned/modules/status-badge.css +16 -16
- package/dist-versioned/modules/table-cell.css +28 -28
- package/dist-versioned/modules/table.css +2 -2
- package/dist-versioned/solid-styles.css +565 -565
- package/package.json +1 -1
package/dist/modules/prose.css
CHANGED
|
@@ -2,79 +2,79 @@
|
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
.sd-display {
|
|
5
|
-
font-size: var(--sd-text-3xl);
|
|
5
|
+
font-size: var(--sd-text-3xl, 2rem);
|
|
6
6
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
7
7
|
--tw-leading: var(--leading-tight, 1.25);
|
|
8
8
|
line-height: var(--leading-tight, 1.25);
|
|
9
|
-
--tw-font-weight: var(--sd-font-weight-normal);
|
|
10
|
-
font-weight: var(--sd-font-weight-normal);
|
|
11
|
-
color: rgba(var(--sd-color-text-black));
|
|
9
|
+
--tw-font-weight: var(--sd-font-weight-normal, 400);
|
|
10
|
+
font-weight: var(--sd-font-weight-normal, 400);
|
|
11
|
+
color: rgba(var(--sd-color-text-black, 24 24 24));
|
|
12
12
|
}
|
|
13
13
|
@media (width >= 64rem) {
|
|
14
14
|
.sd-display {
|
|
15
|
-
font-size: var(--sd-text-4xl);
|
|
15
|
+
font-size: var(--sd-text-4xl, 2.5rem);
|
|
16
16
|
line-height: var(--tw-leading, var(--text-4xl--line-height, calc(2.5 / 2.25)))
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
.sd-display--size-xl {
|
|
20
|
-
font-size: var(--sd-text-xl);
|
|
20
|
+
font-size: var(--sd-text-xl, 1.5rem);
|
|
21
21
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
22
22
|
--tw-leading: var(--leading-tight, 1.25);
|
|
23
23
|
line-height: var(--leading-tight, 1.25);
|
|
24
|
-
--tw-font-weight: var(--sd-font-weight-normal);
|
|
25
|
-
font-weight: var(--sd-font-weight-normal);
|
|
26
|
-
color: rgba(var(--sd-color-text-black));
|
|
24
|
+
--tw-font-weight: var(--sd-font-weight-normal, 400);
|
|
25
|
+
font-weight: var(--sd-font-weight-normal, 400);
|
|
26
|
+
color: rgba(var(--sd-color-text-black, 24 24 24));
|
|
27
27
|
}
|
|
28
28
|
.sd-display--size-3xl {
|
|
29
|
-
font-size: var(--sd-text-2xl);
|
|
29
|
+
font-size: var(--sd-text-2xl, 1.75rem);
|
|
30
30
|
line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
|
|
31
31
|
--tw-leading: var(--leading-tight, 1.25);
|
|
32
32
|
line-height: var(--leading-tight, 1.25);
|
|
33
|
-
--tw-font-weight: var(--sd-font-weight-normal);
|
|
34
|
-
font-weight: var(--sd-font-weight-normal);
|
|
35
|
-
color: rgba(var(--sd-color-text-black));
|
|
33
|
+
--tw-font-weight: var(--sd-font-weight-normal, 400);
|
|
34
|
+
font-weight: var(--sd-font-weight-normal, 400);
|
|
35
|
+
color: rgba(var(--sd-color-text-black, 24 24 24));
|
|
36
36
|
}
|
|
37
37
|
@media (width >= 64rem) {
|
|
38
38
|
.sd-display--size-3xl {
|
|
39
|
-
font-size: var(--sd-text-3xl);
|
|
39
|
+
font-size: var(--sd-text-3xl, 2rem);
|
|
40
40
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)))
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
.sd-display--inverted {
|
|
44
|
-
color: rgba(var(--sd-color-text-white));
|
|
44
|
+
color: rgba(var(--sd-color-text-white, 255 255 255));
|
|
45
45
|
}
|
|
46
46
|
.sd-headline, .sd-prose :is(h1, h2, h3, h4, h5) {
|
|
47
47
|
display: flex;
|
|
48
|
-
--tw-font-weight: var(--sd-font-weight-bold);
|
|
49
|
-
font-weight: var(--sd-font-weight-bold);
|
|
50
|
-
color: rgba(var(--sd-color-text-primary));
|
|
48
|
+
--tw-font-weight: var(--sd-font-weight-bold, 600);
|
|
49
|
+
font-weight: var(--sd-font-weight-bold, 600);
|
|
50
|
+
color: rgba(var(--sd-color-text-primary, 0 53 142));
|
|
51
51
|
}
|
|
52
52
|
.sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5) sd-icon {
|
|
53
53
|
flex-shrink: 0;
|
|
54
54
|
font-size: 3rem;
|
|
55
|
-
color: rgba(var(--sd-color-text-primary));
|
|
55
|
+
color: rgba(var(--sd-color-text-primary, 0 53 142));
|
|
56
56
|
}
|
|
57
57
|
@media (width >= 40rem) {
|
|
58
58
|
.sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5) sd-icon {
|
|
59
|
-
margin-top: var(--sd-spacing-2)
|
|
59
|
+
margin-top: var(--sd-spacing-2, 0.5rem)
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
.sd-headline.sd-headline, .sd-headline:is(h1):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline, .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) {
|
|
63
|
-
gap: var(--sd-spacing-4);
|
|
64
|
-
font-size: var(--sd-text-3xl);
|
|
63
|
+
gap: var(--sd-spacing-4, 1rem);
|
|
64
|
+
font-size: var(--sd-text-3xl, 2rem);
|
|
65
65
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
66
66
|
--tw-leading: var(--leading-tight, 1.25);
|
|
67
67
|
line-height: var(--leading-tight, 1.25);
|
|
68
|
-
color: rgba(var(--sd-headline--3xl-onwards-color-text,
|
|
68
|
+
color: rgba(var(--sd-headline--3xl-onwards-color-text, 0 53 142));
|
|
69
69
|
}
|
|
70
70
|
@media (width >= 40rem) {
|
|
71
71
|
.sd-headline.sd-headline, .sd-headline:is(h1):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline, .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) {
|
|
72
|
-
font-size: var(--sd-text-4xl);
|
|
72
|
+
font-size: var(--sd-text-4xl, 2.5rem);
|
|
73
73
|
line-height: var(--tw-leading, var(--text-4xl--line-height, calc(2.5 / 2.25)))
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
.sd-headline.sd-headline sd-icon, .sd-headline:is(h1):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) sd-icon {
|
|
77
|
-
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
77
|
+
margin-top: calc(var(--sd-spacing-1, 0.25rem) * -1);
|
|
78
78
|
}
|
|
79
79
|
@media (width >= 40rem) {
|
|
80
80
|
.sd-headline.sd-headline sd-icon, .sd-headline:is(h1):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) sd-icon {
|
|
@@ -82,44 +82,44 @@
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
.sd-headline.sd-headline--size-3xl, .sd-headline:is(h2):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl, .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) {
|
|
85
|
-
gap: var(--sd-spacing-4);
|
|
86
|
-
font-size: var(--sd-text-2xl);
|
|
85
|
+
gap: var(--sd-spacing-4, 1rem);
|
|
86
|
+
font-size: var(--sd-text-2xl, 1.75rem);
|
|
87
87
|
line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
|
|
88
88
|
--tw-leading: var(--leading-tight, 1.25);
|
|
89
89
|
line-height: var(--leading-tight, 1.25);
|
|
90
|
-
color: rgba(var(--sd-headline--3xl-onwards-color-text,
|
|
90
|
+
color: rgba(var(--sd-headline--3xl-onwards-color-text, 0 53 142));
|
|
91
91
|
}
|
|
92
92
|
@media (width >= 40rem) {
|
|
93
93
|
.sd-headline.sd-headline--size-3xl, .sd-headline:is(h2):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl, .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) {
|
|
94
|
-
font-size: var(--sd-text-3xl);
|
|
94
|
+
font-size: var(--sd-text-3xl, 2rem);
|
|
95
95
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)))
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
.sd-headline.sd-headline--size-3xl sd-icon, .sd-headline:is(h2):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) sd-icon {
|
|
99
|
-
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
99
|
+
margin-top: calc(var(--sd-spacing-1, 0.25rem) * -1);
|
|
100
100
|
}
|
|
101
101
|
@media (width >= 40rem) {
|
|
102
102
|
.sd-headline.sd-headline--size-3xl sd-icon, .sd-headline:is(h2):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) sd-icon {
|
|
103
|
-
margin-top: calc(var(--sd-spacing-1) * -1)
|
|
103
|
+
margin-top: calc(var(--sd-spacing-1, 0.25rem) * -1)
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
.sd-headline.sd-headline--size-xl, .sd-headline.sd-headline--size-lg, .sd-headline.sd-headline--size-base, .sd-headline:is(h3, h4, h5):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base, .sd-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-headline) {
|
|
107
|
-
gap: var(--sd-spacing-2);
|
|
108
|
-
color: rgba(var(--sd-color-text-black));
|
|
107
|
+
gap: var(--sd-spacing-2, 0.5rem);
|
|
108
|
+
color: rgba(var(--sd-color-text-black, 24 24 24));
|
|
109
109
|
}
|
|
110
110
|
.sd-headline.sd-headline--size-xl sd-icon, .sd-headline.sd-headline--size-lg sd-icon, .sd-headline.sd-headline--size-base sd-icon, .sd-headline:is(h3, h4, h5):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-headline) sd-icon {
|
|
111
111
|
font-size: 2rem;
|
|
112
112
|
}
|
|
113
113
|
.sd-headline.sd-headline--size-xl, .sd-headline:is(h3):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl, .sd-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-headline) {
|
|
114
|
-
font-size: var(--sd-text-xl);
|
|
114
|
+
font-size: var(--sd-text-xl, 1.5rem);
|
|
115
115
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
116
116
|
}
|
|
117
117
|
.sd-headline.sd-headline--size-xl sd-icon, .sd-headline:is(h3):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-headline) sd-icon {
|
|
118
|
-
margin-top: calc(var(--sd-spacing-0\.5) * -1);
|
|
118
|
+
margin-top: calc(var(--sd-spacing-0\.5, 0.125rem) * -1);
|
|
119
119
|
}
|
|
120
120
|
@media (width >= 40rem) {
|
|
121
121
|
.sd-headline.sd-headline--size-xl sd-icon, .sd-headline:is(h3):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-headline) sd-icon {
|
|
122
|
-
margin-top: calc(var(--sd-spacing-0\.5) * -1)
|
|
122
|
+
margin-top: calc(var(--sd-spacing-0\.5, 0.125rem) * -1)
|
|
123
123
|
}
|
|
124
124
|
}
|
|
125
125
|
.sd-headline.sd-headline--size-lg, .sd-headline.sd-headline--size-base, .sd-headline:is(h4, h5):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base, .sd-prose :is(h1, h2, h3, h4, h5):is(h4, h5):not(.sd-headline) {
|
|
@@ -127,23 +127,23 @@
|
|
|
127
127
|
line-height: var(--leading-normal, 1.5);
|
|
128
128
|
}
|
|
129
129
|
.sd-headline.sd-headline--size-lg, .sd-headline:is(h4), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg, .sd-prose :is(h1, h2, h3, h4, h5):is(h4) {
|
|
130
|
-
font-size: var(--sd-text-lg);
|
|
130
|
+
font-size: var(--sd-text-lg, 1.25rem);
|
|
131
131
|
line-height: var(--tw-leading, var(--text-lg--line-height, calc(1.75 / 1.125)));
|
|
132
132
|
}
|
|
133
133
|
.sd-headline.sd-headline--size-lg sd-icon, .sd-headline:is(h4) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
|
|
134
|
-
margin-top: calc(var(--sd-spacing-0\.5) * -1);
|
|
134
|
+
margin-top: calc(var(--sd-spacing-0\.5, 0.125rem) * -1);
|
|
135
135
|
}
|
|
136
136
|
@media (width >= 40rem) {
|
|
137
137
|
.sd-headline.sd-headline--size-lg sd-icon, .sd-headline:is(h4) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
|
|
138
|
-
margin-top: calc(var(--sd-spacing-0\.5) * -1)
|
|
138
|
+
margin-top: calc(var(--sd-spacing-0\.5, 0.125rem) * -1)
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
.sd-headline.sd-headline--size-base, .sd-headline:is(h5):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base, .sd-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-headline) {
|
|
142
|
-
font-size: var(--sd-text-base);
|
|
142
|
+
font-size: var(--sd-text-base, 1rem);
|
|
143
143
|
line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
|
|
144
144
|
}
|
|
145
145
|
.sd-headline.sd-headline--size-base sd-icon, .sd-headline:is(h5):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-headline) sd-icon {
|
|
146
|
-
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
146
|
+
margin-top: calc(var(--sd-spacing-1, 0.25rem) * -1);
|
|
147
147
|
}
|
|
148
148
|
.sd-headline.sd-headline--size-base mark, .sd-headline:is(h5):not(.sd-headline) mark, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base mark, .sd-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-headline) mark {
|
|
149
149
|
color: inherit;
|
|
@@ -152,24 +152,24 @@
|
|
|
152
152
|
display: inline-block;
|
|
153
153
|
}
|
|
154
154
|
.sd-headline--inline.sd-headline sd-icon, .sd-headline--inline:is(h1):not(.sd-headline) sd-icon {
|
|
155
|
-
margin-top: calc(var(--sd-spacing-2) * -1);
|
|
156
|
-
margin-right: var(--sd-spacing-2);
|
|
155
|
+
margin-top: calc(var(--sd-spacing-2, 0.5rem) * -1);
|
|
156
|
+
margin-right: var(--sd-spacing-2, 0.5rem);
|
|
157
157
|
vertical-align: middle;
|
|
158
158
|
}
|
|
159
159
|
.sd-headline--inline:is(.sd-headline--size-xl, .sd-headline--size-lg, .sd-headline--size-base) sd-icon {
|
|
160
|
-
margin-right: var(--sd-spacing-0\.5);
|
|
160
|
+
margin-right: var(--sd-spacing-0\.5, 0.125rem);
|
|
161
161
|
}
|
|
162
162
|
.sd-headline--inline:is(.sd-headline--size-3xl, .sd-headline--size-xl) sd-icon {
|
|
163
|
-
margin-top: calc(var(--sd-spacing-2) * -1);
|
|
163
|
+
margin-top: calc(var(--sd-spacing-2, 0.5rem) * -1);
|
|
164
164
|
}
|
|
165
165
|
.sd-headline--inline:is(.sd-headline--size-lg) sd-icon {
|
|
166
|
-
margin-top: calc(var(--sd-spacing-1) * -1);
|
|
166
|
+
margin-top: calc(var(--sd-spacing-1, 0.25rem) * -1);
|
|
167
167
|
}
|
|
168
168
|
.sd-headline--inverted:not(#_), .sd-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-headline):not(#_) {
|
|
169
|
-
color: rgba(var(--sd-color-text-white));
|
|
169
|
+
color: rgba(var(--sd-color-text-white, 255 255 255));
|
|
170
170
|
}
|
|
171
171
|
.sd-headline--inverted:not(#_) sd-icon, .sd-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-headline):not(#_) sd-icon {
|
|
172
|
-
color: rgba(var(--sd-color-text-white));
|
|
172
|
+
color: rgba(var(--sd-color-text-white, 255 255 255));
|
|
173
173
|
}
|
|
174
174
|
.sd-prose a--reset, .sd-interactive--reset {
|
|
175
175
|
all: unset;
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
}
|
|
178
178
|
.sd-prose a, .sd-interactive{
|
|
179
179
|
cursor: pointer;
|
|
180
|
-
color: rgba(var(--sd-interactive--default-color-text,
|
|
180
|
+
color: rgba(var(--sd-interactive--default-color-text, 0 53 142));
|
|
181
181
|
text-decoration-line: underline;
|
|
182
182
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
183
183
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
transition-timing-function: var(--ease-in-out, cubic-bezier(0.4, 0, 0.2, 1));
|
|
189
189
|
}
|
|
190
190
|
.sd-prose a:hover:not([disabled]), .sd-interactive:hover:not([disabled]) {
|
|
191
|
-
color: rgba(var(--sd-color-text-primary-500));
|
|
191
|
+
color: rgba(var(--sd-color-text-primary-500, 70 109 175));
|
|
192
192
|
}
|
|
193
193
|
.sd-prose a:focus-visible, .sd-interactive:focus-visible {
|
|
194
194
|
outline-style: solid;
|
|
@@ -197,35 +197,35 @@
|
|
|
197
197
|
outline-color: var(--outline-color-primary);
|
|
198
198
|
}
|
|
199
199
|
.sd-prose a:active:not([disabled]), .sd-interactive:active:not([disabled]) {
|
|
200
|
-
color: rgba(var(--sd-interactive--active-color-text,
|
|
200
|
+
color: rgba(var(--sd-interactive--active-color-text, 5 21 48));
|
|
201
201
|
}
|
|
202
202
|
.sd-prose a:is(.sd-interactive), .sd-interactive:is(.sd-interactive) {
|
|
203
203
|
text-decoration-line: none;
|
|
204
204
|
}
|
|
205
205
|
.sd-prose a--disabled, .sd-prose a[disabled], .sd-prose a[href=''], .sd-interactive--disabled, .sd-interactive[disabled], .sd-interactive[href=''] {
|
|
206
206
|
cursor: not-allowed;
|
|
207
|
-
color: rgba(var(--sd-form-control--disabled-color-text,
|
|
207
|
+
color: rgba(var(--sd-form-control--disabled-color-text, 174 174 174));
|
|
208
208
|
}
|
|
209
209
|
.sd-prose a--disabled:hover:not([disabled]), .sd-prose a[disabled]:hover:not([disabled]), .sd-prose a[href='']:hover:not([disabled]), .sd-interactive--disabled:hover:not([disabled]), .sd-interactive[disabled]:hover:not([disabled]), .sd-interactive[href='']:hover:not([disabled]) {
|
|
210
|
-
color: rgba(var(--sd-form-control--disabled-color-text,
|
|
210
|
+
color: rgba(var(--sd-form-control--disabled-color-text, 174 174 174));
|
|
211
211
|
}
|
|
212
212
|
.sd-prose a--disabled:active:not([disabled]), .sd-prose a[disabled]:active:not([disabled]), .sd-prose a[href='']:active:not([disabled]), .sd-interactive--disabled:active:not([disabled]), .sd-interactive[disabled]:active:not([disabled]), .sd-interactive[href='']:active:not([disabled]) {
|
|
213
|
-
color: rgba(var(--sd-form-control--disabled-color-text,
|
|
213
|
+
color: rgba(var(--sd-form-control--disabled-color-text, 174 174 174));
|
|
214
214
|
}
|
|
215
215
|
.sd-prose a--disabled.sd-interactive--inverted, .sd-prose a[disabled].sd-interactive--inverted, .sd-prose a[href=''].sd-interactive--inverted, .sd-interactive--disabled.sd-interactive--inverted, .sd-interactive[disabled].sd-interactive--inverted, .sd-interactive[href=''].sd-interactive--inverted {
|
|
216
|
-
color: rgba(var(--sd-color-text-neutral-600));
|
|
216
|
+
color: rgba(var(--sd-color-text-neutral-600, 136 136 136));
|
|
217
217
|
}
|
|
218
218
|
.sd-prose a--disabled.sd-interactive--inverted:hover:not([disabled]), .sd-prose a[disabled].sd-interactive--inverted:hover:not([disabled]), .sd-prose a[href=''].sd-interactive--inverted:hover:not([disabled]), .sd-interactive--disabled.sd-interactive--inverted:hover:not([disabled]), .sd-interactive[disabled].sd-interactive--inverted:hover:not([disabled]), .sd-interactive[href=''].sd-interactive--inverted:hover:not([disabled]) {
|
|
219
|
-
color: rgba(var(--sd-color-text-neutral-600));
|
|
219
|
+
color: rgba(var(--sd-color-text-neutral-600, 136 136 136));
|
|
220
220
|
}
|
|
221
221
|
.sd-prose a--disabled.sd-interactive--inverted:active:not([disabled]), .sd-prose a[disabled].sd-interactive--inverted:active:not([disabled]), .sd-prose a[href=''].sd-interactive--inverted:active:not([disabled]), .sd-interactive--disabled.sd-interactive--inverted:active:not([disabled]), .sd-interactive[disabled].sd-interactive--inverted:active:not([disabled]), .sd-interactive[href=''].sd-interactive--inverted:active:not([disabled]) {
|
|
222
|
-
color: rgba(var(--sd-color-text-neutral-600));
|
|
222
|
+
color: rgba(var(--sd-color-text-neutral-600, 136 136 136));
|
|
223
223
|
}
|
|
224
224
|
.sd-prose--inverted a, .sd-interactive--inverted {
|
|
225
|
-
color: rgba(var(--sd-color-text-white));
|
|
225
|
+
color: rgba(var(--sd-color-text-white, 255 255 255));
|
|
226
226
|
}
|
|
227
227
|
.sd-prose--inverted a:hover:not([disabled]), .sd-interactive--inverted:hover:not([disabled]) {
|
|
228
|
-
color: rgba(var(--sd-color-text-primary-200));
|
|
228
|
+
color: rgba(var(--sd-color-text-primary-200, 224 233 243));
|
|
229
229
|
}
|
|
230
230
|
.sd-prose--inverted a:focus-visible, .sd-interactive--inverted:focus-visible {
|
|
231
231
|
outline-style: solid;
|
|
@@ -234,39 +234,39 @@
|
|
|
234
234
|
outline-color: var(--outline-color-primary);
|
|
235
235
|
}
|
|
236
236
|
.sd-prose--inverted a:active:not([disabled]), .sd-interactive--inverted:active:not([disabled]) {
|
|
237
|
-
color: rgba(var(--sd-color-text-primary-400));
|
|
237
|
+
color: rgba(var(--sd-color-text-primary-400, 153 171 208));
|
|
238
238
|
}
|
|
239
239
|
.sd-prose > .sd-leadtext, .sd-leadtext {
|
|
240
|
-
font-size: var(--sd-text-xl);
|
|
240
|
+
font-size: var(--sd-text-xl, 1.5rem);
|
|
241
241
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
242
242
|
--tw-leading: var(--leading-normal, 1.5);
|
|
243
243
|
line-height: var(--leading-normal, 1.5);
|
|
244
|
-
--tw-font-weight: var(--sd-font-weight-normal);
|
|
245
|
-
font-weight: var(--sd-font-weight-normal);
|
|
246
|
-
color: rgba(var(--sd-color-text-black));
|
|
244
|
+
--tw-font-weight: var(--sd-font-weight-normal, 400);
|
|
245
|
+
font-weight: var(--sd-font-weight-normal, 400);
|
|
246
|
+
color: rgba(var(--sd-color-text-black, 24 24 24));
|
|
247
247
|
}
|
|
248
248
|
.sd-prose > .sd-leadtext--size-lg, .sd-leadtext--size-lg {
|
|
249
|
-
font-size: var(--sd-text-lg);
|
|
249
|
+
font-size: var(--sd-text-lg, 1.25rem);
|
|
250
250
|
line-height: var(--tw-leading, var(--text-lg--line-height, calc(1.75 / 1.125)));
|
|
251
251
|
--tw-leading: var(--leading-normal, 1.5);
|
|
252
252
|
line-height: var(--leading-normal, 1.5);
|
|
253
|
-
--tw-font-weight: var(--sd-font-weight-normal);
|
|
254
|
-
font-weight: var(--sd-font-weight-normal);
|
|
255
|
-
color: rgba(var(--sd-color-text-black));
|
|
253
|
+
--tw-font-weight: var(--sd-font-weight-normal, 400);
|
|
254
|
+
font-weight: var(--sd-font-weight-normal, 400);
|
|
255
|
+
color: rgba(var(--sd-color-text-black, 24 24 24));
|
|
256
256
|
}
|
|
257
257
|
.sd-prose--inverted > .sd-leadtext, .sd-leadtext--inverted {
|
|
258
|
-
color: rgba(var(--sd-color-text-white));
|
|
258
|
+
color: rgba(var(--sd-color-text-white, 255 255 255));
|
|
259
259
|
}
|
|
260
260
|
.sd-list:not(.sd-list--icon), .sd-prose > :is(ol, ul) {
|
|
261
261
|
list-style-position: revert;
|
|
262
262
|
list-style-type: revert;
|
|
263
263
|
padding: revert;
|
|
264
|
-
padding-block: var(--sd-spacing-4);
|
|
265
|
-
padding-left: var(--sd-spacing-4);
|
|
264
|
+
padding-block: var(--sd-spacing-4, 1rem);
|
|
265
|
+
padding-left: var(--sd-spacing-4, 1rem);
|
|
266
266
|
text-align: left;
|
|
267
267
|
}
|
|
268
268
|
.sd-list:not(.sd-list--icon) li:not(:first-child), .sd-prose > :is(ol, ul) li:not(:first-child) {
|
|
269
|
-
margin-top: var(--sd-spacing-3);
|
|
269
|
+
margin-top: var(--sd-spacing-3, 0.75rem);
|
|
270
270
|
}
|
|
271
271
|
.sd-list:not(.sd-list--icon) ul, .sd-list:not(.sd-list--icon) ol, .sd-prose > :is(ol, ul) ul, .sd-prose > :is(ol, ul) ol {
|
|
272
272
|
all: revert;
|
|
@@ -327,11 +327,11 @@
|
|
|
327
327
|
list-style-type: '\2010';
|
|
328
328
|
}
|
|
329
329
|
.sd-list--icon {
|
|
330
|
-
padding-block: var(--sd-spacing-4);
|
|
330
|
+
padding-block: var(--sd-spacing-4, 1rem);
|
|
331
331
|
text-align: left;
|
|
332
332
|
}
|
|
333
333
|
.sd-list--icon li sd-icon:first-of-type, .sd-list--icon li .sd-list--icon__icon:first-of-type {
|
|
334
|
-
color: rgba(var(--sd-color-text-white));
|
|
334
|
+
color: rgba(var(--sd-color-text-white, 255 255 255));
|
|
335
335
|
}
|
|
336
336
|
.sd-list--icon{
|
|
337
337
|
list-style-type: '';
|
|
@@ -341,17 +341,17 @@
|
|
|
341
341
|
}
|
|
342
342
|
.sd-list--icon li {
|
|
343
343
|
position: relative;
|
|
344
|
-
padding-top: var(--sd-spacing-3);
|
|
345
|
-
padding-left: var(--sd-spacing-10);
|
|
344
|
+
padding-top: var(--sd-spacing-3, 0.75rem);
|
|
345
|
+
padding-left: var(--sd-spacing-10, 2.5rem);
|
|
346
346
|
--tw-leading: 32px;
|
|
347
347
|
line-height: 32px;
|
|
348
348
|
}
|
|
349
349
|
.sd-list--icon li > sd-icon:first-of-type, .sd-list--icon li > .sd-list--icon__icon:first-of-type {
|
|
350
350
|
position: absolute;
|
|
351
351
|
left: 0;
|
|
352
|
-
font-size: var(--sd-text-3xl);
|
|
352
|
+
font-size: var(--sd-text-3xl, 2rem);
|
|
353
353
|
line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
|
|
354
|
-
color: rgb(var(--sd-color-icon-fill-primary));
|
|
354
|
+
color: rgb(var(--sd-color-icon-fill-primary, 0 53 142));
|
|
355
355
|
}
|
|
356
356
|
.sd-list--icon.sd-list--horizontal {
|
|
357
357
|
display: flex;
|
|
@@ -361,46 +361,46 @@
|
|
|
361
361
|
padding-top: 0;
|
|
362
362
|
}
|
|
363
363
|
.sd-list--icon.sd-list--horizontal li:not(:last-child) {
|
|
364
|
-
margin-right: var(--sd-spacing-8);
|
|
364
|
+
margin-right: var(--sd-spacing-8, 2rem);
|
|
365
365
|
}
|
|
366
366
|
.sd-list--inverted, .sd-prose--inverted > :is(ol, ul) {
|
|
367
|
-
color: rgba(var(--sd-color-text-white));
|
|
367
|
+
color: rgba(var(--sd-color-text-white, 255 255 255));
|
|
368
368
|
}
|
|
369
369
|
.sd-list--inverted li > sd-icon:first-of-type, .sd-list--inverted li > .sd-list--icon__icon:first-of-type, .sd-prose--inverted > :is(ol, ul) li > sd-icon:first-of-type, .sd-prose--inverted > :is(ol, ul) li > .sd-list--icon__icon:first-of-type {
|
|
370
|
-
color: rgba(var(--sd-color-text-white));
|
|
370
|
+
color: rgba(var(--sd-color-text-white, 255 255 255));
|
|
371
371
|
}
|
|
372
372
|
.sd-paragraph, .sd-prose p {
|
|
373
|
-
font-size: var(--sd-text-base);
|
|
373
|
+
font-size: var(--sd-text-base, 1rem);
|
|
374
374
|
line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
|
|
375
375
|
--tw-leading: var(--leading-normal, 1.5);
|
|
376
376
|
line-height: var(--leading-normal, 1.5);
|
|
377
|
-
--tw-font-weight: var(--sd-font-weight-normal);
|
|
378
|
-
font-weight: var(--sd-font-weight-normal);
|
|
379
|
-
color: rgba(var(--sd-color-text-black));
|
|
377
|
+
--tw-font-weight: var(--sd-font-weight-normal, 400);
|
|
378
|
+
font-weight: var(--sd-font-weight-normal, 400);
|
|
379
|
+
color: rgba(var(--sd-color-text-black, 24 24 24));
|
|
380
380
|
}
|
|
381
381
|
.sd-paragraph--size-sm, .sd-prose p--size-sm {
|
|
382
|
-
font-size: var(--sd-text-sm);
|
|
382
|
+
font-size: var(--sd-text-sm, 0.875rem);
|
|
383
383
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
384
384
|
--tw-leading: var(--leading-normal, 1.5);
|
|
385
385
|
line-height: var(--leading-normal, 1.5);
|
|
386
|
-
--tw-font-weight: var(--sd-font-weight-normal);
|
|
387
|
-
font-weight: var(--sd-font-weight-normal);
|
|
388
|
-
color: rgba(var(--sd-color-text-black));
|
|
386
|
+
--tw-font-weight: var(--sd-font-weight-normal, 400);
|
|
387
|
+
font-weight: var(--sd-font-weight-normal, 400);
|
|
388
|
+
color: rgba(var(--sd-color-text-black, 24 24 24));
|
|
389
389
|
}
|
|
390
390
|
.sd-paragraph--inverted, .sd-prose--inverted p {
|
|
391
|
-
color: rgba(var(--sd-color-text-white));
|
|
391
|
+
color: rgba(var(--sd-color-text-white, 255 255 255));
|
|
392
392
|
}
|
|
393
393
|
.sd-prose figure, figure.sd-media {
|
|
394
394
|
margin: 0;
|
|
395
395
|
}
|
|
396
396
|
.sd-prose figure figcaption, figure.sd-media figcaption {
|
|
397
|
-
color: rgba(var(--sd-color-text-neutral-700));
|
|
397
|
+
color: rgba(var(--sd-color-text-neutral-700, 104 104 104));
|
|
398
398
|
}
|
|
399
399
|
.sd-prose figure figcaption:last-child, figure.sd-media figcaption:last-child {
|
|
400
|
-
margin-top: var(--sd-spacing-3);
|
|
400
|
+
margin-top: var(--sd-spacing-3, 0.75rem);
|
|
401
401
|
}
|
|
402
402
|
.sd-prose--inverted figure figcaption, figure.sd-media--inverted figcaption {
|
|
403
|
-
color: rgba(var(--sd-color-text-primary-400));
|
|
403
|
+
color: rgba(var(--sd-color-text-primary-400, 153 171 208));
|
|
404
404
|
}
|
|
405
405
|
.sd-prose td, .sd-prose th, .sd-table-cell {
|
|
406
406
|
border-inline-style: var(--tw-border-style);
|
|
@@ -409,13 +409,13 @@
|
|
|
409
409
|
border-block-width: 1px;
|
|
410
410
|
--tw-border-style: solid;
|
|
411
411
|
border-style: solid;
|
|
412
|
-
border-color: rgba(var(--sd-color-border-neutral-400));
|
|
412
|
+
border-color: rgba(var(--sd-color-border-neutral-400, 195 195 195));
|
|
413
413
|
background-color: transparent;
|
|
414
|
-
padding: var(--sd-spacing-4);
|
|
414
|
+
padding: var(--sd-spacing-4, 1rem);
|
|
415
415
|
text-align: left;
|
|
416
|
-
font-size: var(--sd-text-sm);
|
|
416
|
+
font-size: var(--sd-text-sm, 0.875rem);
|
|
417
417
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
418
|
-
color: rgba(var(--sd-color-text-black));
|
|
418
|
+
color: rgba(var(--sd-color-text-black, 24 24 24));
|
|
419
419
|
}
|
|
420
420
|
.sd-table-cell--divider {
|
|
421
421
|
border-right-style: var(--tw-border-style);
|
|
@@ -424,10 +424,10 @@
|
|
|
424
424
|
.sd-table-cell--shadow-top:after, .sd-table-cell--shadow-bottom:after, .sd-table-cell--shadow-left:after, .sd-table-cell--shadow-right:after {
|
|
425
425
|
pointer-events: none;
|
|
426
426
|
position: absolute;
|
|
427
|
-
--tw-gradient-from: color-mix(in oklab, #000 var(--sd-opacity-10), transparent);
|
|
427
|
+
--tw-gradient-from: color-mix(in oklab, #000 var(--sd-opacity-10, 10%), transparent);
|
|
428
428
|
--tw-gradient-to: transparent;
|
|
429
429
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
430
|
-
opacity: var(--sd-opacity-0);
|
|
430
|
+
opacity: var(--sd-opacity-0, 0%);
|
|
431
431
|
transition-property: opacity;
|
|
432
432
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
|
|
433
433
|
transition-duration: var(--tw-duration, var(--default-transition-duration, 150ms));
|
|
@@ -439,7 +439,7 @@
|
|
|
439
439
|
.sd-table-cell--shadow-top:after, .sd-table-cell--shadow-bottom:after {
|
|
440
440
|
right: 0;
|
|
441
441
|
left: 0;
|
|
442
|
-
height: var(--sd-spacing-2\.5);
|
|
442
|
+
height: var(--sd-spacing-2\.5, 0.625rem);
|
|
443
443
|
}
|
|
444
444
|
.sd-table-cell--shadow-top:before, .sd-table-cell--shadow-bottom:before {
|
|
445
445
|
position: absolute;
|
|
@@ -449,14 +449,14 @@
|
|
|
449
449
|
width: 100%;
|
|
450
450
|
border-style: var(--tw-border-style);
|
|
451
451
|
border-width: 0.5px;
|
|
452
|
-
border-color: rgba(var(--sd-color-border-neutral-400));
|
|
452
|
+
border-color: rgba(var(--sd-color-border-neutral-400, 195 195 195));
|
|
453
453
|
--tw-content: '';
|
|
454
454
|
content: var(--tw-content);
|
|
455
455
|
}
|
|
456
456
|
.sd-table-cell--shadow-left:after, .sd-table-cell--shadow-right:after {
|
|
457
457
|
top: 0;
|
|
458
458
|
bottom: 0;
|
|
459
|
-
width: var(--sd-spacing-2\.5);
|
|
459
|
+
width: var(--sd-spacing-2\.5, 0.625rem);
|
|
460
460
|
}
|
|
461
461
|
.sd-table-cell.sd-table-cell--shadow-active:after {
|
|
462
462
|
opacity: 100%;
|
|
@@ -488,13 +488,13 @@
|
|
|
488
488
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
489
489
|
}
|
|
490
490
|
.sd-table-cell--bg-white {
|
|
491
|
-
background-color: rgba(var(--sd-color-background-white));
|
|
491
|
+
background-color: rgba(var(--sd-color-background-white, 255 255 255));
|
|
492
492
|
}
|
|
493
493
|
.sd-table-cell--bg-primary-100 {
|
|
494
|
-
background-color: rgba(var(--sd-color-background-primary-100));
|
|
494
|
+
background-color: rgba(var(--sd-color-background-primary-100, 236 240 249));
|
|
495
495
|
}
|
|
496
496
|
.sd-table-cell--bg-neutral-100 {
|
|
497
|
-
background-color: rgba(var(--sd-color-background-neutral-100));
|
|
497
|
+
background-color: rgba(var(--sd-color-background-neutral-100, 246 246 246));
|
|
498
498
|
}
|
|
499
499
|
.sd-table, .sd-prose table {
|
|
500
500
|
all: unset;
|
|
@@ -512,31 +512,31 @@
|
|
|
512
512
|
text-align: left;
|
|
513
513
|
}
|
|
514
514
|
.sd-prose > *:not(:first-child) {
|
|
515
|
-
margin-top: var(--sd-spacing-4);
|
|
515
|
+
margin-top: var(--sd-spacing-4, 1rem);
|
|
516
516
|
}
|
|
517
517
|
.sd-prose > *:first-child {
|
|
518
518
|
margin-top: 0;
|
|
519
519
|
}
|
|
520
520
|
.sd-prose > :is(h1, h2, h3, h4, h5):not(#_) + :is(h1, h2, h3, h4, h5) {
|
|
521
|
-
margin-top: var(--sd-spacing-2);
|
|
521
|
+
margin-top: var(--sd-spacing-2, 0.5rem);
|
|
522
522
|
}
|
|
523
523
|
.sd-prose > *:not(:is(h1, h2, h3, h4, h5)) + :is(h1, h2, h3, h4, h5):not(#_) {
|
|
524
|
-
margin-top: var(--sd-spacing-8);
|
|
524
|
+
margin-top: var(--sd-spacing-8, 2rem);
|
|
525
525
|
}
|
|
526
526
|
.sd-prose > figure + *:not(#_), .sd-prose > img + *:not(#_) {
|
|
527
|
-
margin-top: var(--sd-spacing-6);
|
|
527
|
+
margin-top: var(--sd-spacing-6, 1.5rem);
|
|
528
528
|
}
|
|
529
529
|
.sd-prose hr {
|
|
530
530
|
height: 0;
|
|
531
531
|
border-top-style: var(--tw-border-style);
|
|
532
532
|
border-top-width: 1px;
|
|
533
|
-
border-color: rgba(var(--sd-color-border-neutral-500));
|
|
533
|
+
border-color: rgba(var(--sd-color-border-neutral-500, 174 174 174));
|
|
534
534
|
}
|
|
535
535
|
.sd-prose pre {
|
|
536
536
|
overflow: auto;
|
|
537
537
|
}
|
|
538
538
|
.sd-prose blockquote, .sd-prose blockquote > * {
|
|
539
|
-
font-size: var(--sd-text-xl);
|
|
539
|
+
font-size: var(--sd-text-xl, 1.5rem);
|
|
540
540
|
line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
|
|
541
541
|
}
|
|
542
542
|
.sd-prose blockquote:has(*) *:first-child::before, .sd-prose blockquote:not(:has(*))::before {
|
|
@@ -551,10 +551,10 @@
|
|
|
551
551
|
padding-block: 0;
|
|
552
552
|
}
|
|
553
553
|
.sd-prose--inverted hr {
|
|
554
|
-
border-color: rgba(var(--sd-color-border-white));
|
|
554
|
+
border-color: rgba(var(--sd-color-border-white, 255 255 255));
|
|
555
555
|
}
|
|
556
556
|
.sd-prose--inverted pre {
|
|
557
|
-
color: rgba(var(--sd-color-text-white));
|
|
557
|
+
color: rgba(var(--sd-color-text-white, 255 255 255));
|
|
558
558
|
}
|
|
559
559
|
.sd-prose--full-width {
|
|
560
560
|
max-width: unset;
|
|
@@ -5,23 +5,23 @@
|
|
|
5
5
|
align-items: center;
|
|
6
6
|
}
|
|
7
7
|
.sd-status-badge sd-icon {
|
|
8
|
-
margin-right: var(--sd-spacing-2);
|
|
8
|
+
margin-right: var(--sd-spacing-2, 0.5rem);
|
|
9
9
|
display: flex;
|
|
10
|
-
height: var(--sd-spacing-3);
|
|
11
|
-
width: var(--sd-spacing-3);
|
|
12
|
-
border-radius: var(--sd-radius-full);
|
|
13
|
-
padding: var(--sd-spacing-1);
|
|
14
|
-
color: rgba(var(--sd-color-text-white)) !important;
|
|
10
|
+
height: var(--sd-spacing-3, 0.75rem);
|
|
11
|
+
width: var(--sd-spacing-3, 0.75rem);
|
|
12
|
+
border-radius: var(--sd-radius-full, 624.9375rem);
|
|
13
|
+
padding: var(--sd-spacing-1, 0.25rem);
|
|
14
|
+
color: rgba(var(--sd-color-text-white, 255 255 255)) !important;
|
|
15
15
|
}
|
|
16
16
|
.sd-status-badge--success sd-icon {
|
|
17
|
-
background-color: rgba(var(--sd-badge--green-color-background,
|
|
17
|
+
background-color: rgba(var(--sd-badge--green-color-background, 54 123 40));
|
|
18
18
|
}
|
|
19
19
|
.sd-status-badge--warning sd-icon {
|
|
20
|
-
background-color: rgba(var(--sd-color-background-warning));
|
|
20
|
+
background-color: rgba(var(--sd-color-background-warning, 187 141 32));
|
|
21
21
|
}
|
|
22
22
|
.sd-status-badge--error sd-icon {
|
|
23
|
-
background-color: rgba(var(--sd-badge--red-color-background,
|
|
23
|
+
background-color: rgba(var(--sd-badge--red-color-background, 204 25 55));
|
|
24
24
|
}
|
|
25
25
|
.sd-status-badge--info sd-icon {
|
|
26
|
-
background-color: rgba(var(--sd-color-background-info));
|
|
26
|
+
background-color: rgba(var(--sd-color-background-info, 21 130 213));
|
|
27
27
|
}
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
border-block-width: 1px;
|
|
9
9
|
--tw-border-style: solid;
|
|
10
10
|
border-style: solid;
|
|
11
|
-
border-color: rgba(var(--sd-color-border-neutral-400));
|
|
11
|
+
border-color: rgba(var(--sd-color-border-neutral-400, 195 195 195));
|
|
12
12
|
background-color: transparent;
|
|
13
|
-
padding: var(--sd-spacing-4);
|
|
13
|
+
padding: var(--sd-spacing-4, 1rem);
|
|
14
14
|
text-align: left;
|
|
15
|
-
font-size: var(--sd-text-sm);
|
|
15
|
+
font-size: var(--sd-text-sm, 0.875rem);
|
|
16
16
|
line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / 0.875)));
|
|
17
|
-
color: rgba(var(--sd-color-text-black));
|
|
17
|
+
color: rgba(var(--sd-color-text-black, 24 24 24));
|
|
18
18
|
}
|
|
19
19
|
.sd-table-cell--divider {
|
|
20
20
|
border-right-style: var(--tw-border-style);
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
.sd-table-cell--shadow-top:after, .sd-table-cell--shadow-bottom:after, .sd-table-cell--shadow-left:after, .sd-table-cell--shadow-right:after {
|
|
24
24
|
pointer-events: none;
|
|
25
25
|
position: absolute;
|
|
26
|
-
--tw-gradient-from: color-mix(in oklab, #000 var(--sd-opacity-10), transparent);
|
|
26
|
+
--tw-gradient-from: color-mix(in oklab, #000 var(--sd-opacity-10, 10%), transparent);
|
|
27
27
|
--tw-gradient-to: transparent;
|
|
28
28
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
29
|
-
opacity: var(--sd-opacity-0);
|
|
29
|
+
opacity: var(--sd-opacity-0, 0%);
|
|
30
30
|
transition-property: opacity;
|
|
31
31
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
|
|
32
32
|
transition-duration: var(--tw-duration, var(--default-transition-duration, 150ms));
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
.sd-table-cell--shadow-top:after, .sd-table-cell--shadow-bottom:after {
|
|
39
39
|
right: 0;
|
|
40
40
|
left: 0;
|
|
41
|
-
height: var(--sd-spacing-2\.5);
|
|
41
|
+
height: var(--sd-spacing-2\.5, 0.625rem);
|
|
42
42
|
}
|
|
43
43
|
.sd-table-cell--shadow-top:before, .sd-table-cell--shadow-bottom:before {
|
|
44
44
|
position: absolute;
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
width: 100%;
|
|
49
49
|
border-style: var(--tw-border-style);
|
|
50
50
|
border-width: 0.5px;
|
|
51
|
-
border-color: rgba(var(--sd-color-border-neutral-400));
|
|
51
|
+
border-color: rgba(var(--sd-color-border-neutral-400, 195 195 195));
|
|
52
52
|
--tw-content: '';
|
|
53
53
|
content: var(--tw-content);
|
|
54
54
|
}
|
|
55
55
|
.sd-table-cell--shadow-left:after, .sd-table-cell--shadow-right:after {
|
|
56
56
|
top: 0;
|
|
57
57
|
bottom: 0;
|
|
58
|
-
width: var(--sd-spacing-2\.5);
|
|
58
|
+
width: var(--sd-spacing-2\.5, 0.625rem);
|
|
59
59
|
}
|
|
60
60
|
.sd-table-cell.sd-table-cell--shadow-active:after {
|
|
61
61
|
opacity: 100%;
|
|
@@ -87,13 +87,13 @@
|
|
|
87
87
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
88
88
|
}
|
|
89
89
|
.sd-table-cell--bg-white {
|
|
90
|
-
background-color: rgba(var(--sd-color-background-white));
|
|
90
|
+
background-color: rgba(var(--sd-color-background-white, 255 255 255));
|
|
91
91
|
}
|
|
92
92
|
.sd-table-cell--bg-primary-100 {
|
|
93
|
-
background-color: rgba(var(--sd-color-background-primary-100));
|
|
93
|
+
background-color: rgba(var(--sd-color-background-primary-100, 236 240 249));
|
|
94
94
|
}
|
|
95
95
|
.sd-table-cell--bg-neutral-100 {
|
|
96
|
-
background-color: rgba(var(--sd-color-background-neutral-100));
|
|
96
|
+
background-color: rgba(var(--sd-color-background-neutral-100, 246 246 246));
|
|
97
97
|
}
|
|
98
98
|
@property --tw-border-style {
|
|
99
99
|
syntax: "*";
|