@brightspace-ui/core 2.27.0 → 2.27.1
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.
|
@@ -230,7 +230,7 @@ export const blockquoteStyles = css`
|
|
|
230
230
|
color: var(--d2l-color-tungsten);
|
|
231
231
|
font-size: 0.8rem;
|
|
232
232
|
font-weight: 400;
|
|
233
|
-
line-height: 1.
|
|
233
|
+
line-height: 1.4rem;
|
|
234
234
|
margin: 0;
|
|
235
235
|
margin-right: 1.2rem;
|
|
236
236
|
padding: 0;
|
|
@@ -238,24 +238,26 @@ export const blockquoteStyles = css`
|
|
|
238
238
|
padding-top: 0.5rem;
|
|
239
239
|
position: relative;
|
|
240
240
|
}
|
|
241
|
-
|
|
242
241
|
.d2l-blockquote::before {
|
|
243
242
|
content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAyMiAyMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGRlZnM+PHBhdGggaWQ9ImEiIGQ9Ik0wIDBoMjR2MjRIMHoiLz48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEgLTEpIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxtYXNrIGlkPSJiIiBmaWxsPSIjZmZmIj48dXNlIHhsaW5rOmhyZWY9IiNhIi8+PC9tYXNrPjxwYXRoIGQ9Ik02IDIyLjY2N0E0LjY2NyA0LjY2NyAwIDAgMCAxMC42NjcgMThjMC0xLjIyNy0uNTU5LTIuNS0xLjMzNC0zLjMzM0M4LjQ4MSAxMy43NSA3LjM1IDEzLjMzMyA2IDEzLjMzM2MtLjQxMSAwIDEuMzMzLTYuNjY2IDMtOSAxLjY2Ny0yLjMzMyAxLjMzMy0zIC4zMzMtM0M4IDEuMzMzIDUuMjUzIDQuNTg2IDQgNy4yNTUgMS43NzMgMTIgMS4zMzMgMTUuMzkyIDEuMzMzIDE4QTQuNjY3IDQuNjY3IDAgMCAwIDYgMjIuNjY3em0xMiAwQTQuNjY3IDQuNjY3IDAgMCAwIDIyLjY2NyAxOGMwLTEuMjI3LS41NTktMi41LTEuMzM0LTMuMzMzLS44NTItLjkxNy0xLjk4My0xLjMzNC0zLjMzMy0xLjMzNC0uNDExIDAgMS4zMzMtNi42NjYgMy05IDEuNjY3LTIuMzMzIDEuMzMzLTMgLjMzMy0zLTEuMzMzIDAtNC4wOCAzLjI1My01LjMzMyA1LjkyMkMxMy43NzMgMTIgMTMuMzMzIDE1LjM5MiAxMy4zMzMgMThBNC42NjcgNC42NjcgMCAwIDAgMTggMjIuNjY3eiIgZmlsbD0iI0QzRDlFMyIgbWFzaz0idXJsKCNiKSIvPjwvZz48L3N2Zz4=");
|
|
244
243
|
left: 0;
|
|
245
244
|
position: absolute;
|
|
246
245
|
top: 0;
|
|
247
246
|
}
|
|
248
|
-
|
|
249
247
|
:host([dir="rtl"]) .d2l-blockquote {
|
|
250
248
|
margin-left: 1.2rem;
|
|
251
249
|
margin-right: 0;
|
|
252
250
|
padding-left: 0;
|
|
253
251
|
padding-right: 1.2rem;
|
|
254
252
|
}
|
|
255
|
-
|
|
256
253
|
:host([dir="rtl"]) .d2l-blockquote::before {
|
|
257
254
|
left: initial;
|
|
258
255
|
right: 0;
|
|
259
256
|
transform: scaleX(-1);
|
|
260
257
|
}
|
|
258
|
+
@media (max-width: 615px) {
|
|
259
|
+
.d2l-blockquote {
|
|
260
|
+
line-height: 1.2rem;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
261
263
|
`;
|
|
@@ -112,41 +112,11 @@ if (!document.head.querySelector('#d2l-typography-font-face')) {
|
|
|
112
112
|
margin: 1.5rem 0 1.5rem 0;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
@media (max-width: 615px) {
|
|
116
|
-
|
|
117
|
-
.d2l-typography .d2l-body-standard {
|
|
118
|
-
font-size: 0.8rem;
|
|
119
|
-
line-height: 1.2rem;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.d2l-typography .d2l-body-small {
|
|
123
|
-
font-size: 0.6rem;
|
|
124
|
-
line-height: 0.9rem;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.d2l-typography .d2l-heading-1 {
|
|
128
|
-
font-size: 1.5rem;
|
|
129
|
-
line-height: 1.8rem;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.d2l-typography .d2l-heading-2 {
|
|
133
|
-
font-size: 1rem;
|
|
134
|
-
font-weight: 700;
|
|
135
|
-
line-height: 1.5rem;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.d2l-typography .d2l-heading-3 {
|
|
139
|
-
font-size: 0.8rem;
|
|
140
|
-
line-height: 1.2rem;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
}
|
|
144
|
-
|
|
145
115
|
.d2l-typography .d2l-blockquote {
|
|
146
116
|
color: var(--d2l-color-tungsten);
|
|
147
117
|
font-size: 0.8rem;
|
|
148
118
|
font-weight: 400;
|
|
149
|
-
line-height: 1.
|
|
119
|
+
line-height: 1.4rem;
|
|
150
120
|
margin: 0;
|
|
151
121
|
margin-right: 1.2rem;
|
|
152
122
|
padding: 0;
|
|
@@ -176,6 +146,40 @@ if (!document.head.querySelector('#d2l-typography-font-face')) {
|
|
|
176
146
|
right: 0;
|
|
177
147
|
transform: scaleX(-1);
|
|
178
148
|
}
|
|
149
|
+
|
|
150
|
+
@media (max-width: 615px) {
|
|
151
|
+
|
|
152
|
+
.d2l-typography .d2l-body-standard {
|
|
153
|
+
font-size: 0.8rem;
|
|
154
|
+
line-height: 1.2rem;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.d2l-typography .d2l-body-small {
|
|
158
|
+
font-size: 0.6rem;
|
|
159
|
+
line-height: 0.9rem;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.d2l-typography .d2l-heading-1 {
|
|
163
|
+
font-size: 1.5rem;
|
|
164
|
+
line-height: 1.8rem;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.d2l-typography .d2l-heading-2 {
|
|
168
|
+
font-size: 1rem;
|
|
169
|
+
font-weight: 700;
|
|
170
|
+
line-height: 1.5rem;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.d2l-typography .d2l-heading-3 {
|
|
174
|
+
font-size: 0.8rem;
|
|
175
|
+
line-height: 1.2rem;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.d2l-typography .d2l-blockquote {
|
|
179
|
+
line-height: 1.2rem;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
}
|
|
179
183
|
`;
|
|
180
184
|
document.head.appendChild(style);
|
|
181
185
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.27.
|
|
3
|
+
"version": "2.27.1",
|
|
4
4
|
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/BrightspaceUI/core.git",
|