@asd20/ui 3.2.835 → 3.2.836
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 +1 -1
- package/src/components/atoms/Asd20Logo/index.vue +4 -1
- package/src/components/organisms/Asd20PageContent/index.vue +0 -3
- package/src/components/templates/Asd20DistrictHomeTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20DistrictHomeTemplate/index.vue +13 -10
- package/src/components/templates/Asd20WayfindingAlternateTemplate/index.vue +1 -0
- package/src/components/templates/Asd20WayfindingImageTemplate/index.vue +1 -0
- package/src/components/templates/Asd20WayfindingTemplate/index.vue +1 -0
package/package.json
CHANGED
|
@@ -60,9 +60,12 @@ export default {
|
|
|
60
60
|
return classes
|
|
61
61
|
},
|
|
62
62
|
abbreviatedTitle() {
|
|
63
|
+
let newTitle = ''
|
|
64
|
+
if (this.title === 'Academy District 20 Insider') {
|
|
65
|
+
return (newTitle = 'D20 Insider')
|
|
66
|
+
}
|
|
63
67
|
const words = this.title.trim().split(' ')
|
|
64
68
|
if (this.abbreviated && words.length >= 3) {
|
|
65
|
-
let newTitle = ''
|
|
66
69
|
for (let i = 0; i < words.length; i++) {
|
|
67
70
|
newTitle += `${words[i][0]}<em>${words[i].substr(1)} </em>`
|
|
68
71
|
}
|
|
@@ -177,9 +177,6 @@ export default {
|
|
|
177
177
|
.notification-group--inline {
|
|
178
178
|
margin: space(2) space(3) space(0) space(3);
|
|
179
179
|
}
|
|
180
|
-
.primary-messaging-section {
|
|
181
|
-
justify-content: center;
|
|
182
|
-
}
|
|
183
180
|
.primary-messaging-section,
|
|
184
181
|
.secondary-messaging-section {
|
|
185
182
|
display: flex;
|
|
@@ -214,6 +214,11 @@ export default {
|
|
|
214
214
|
flex-shrink: 0;
|
|
215
215
|
overflow-y: auto;
|
|
216
216
|
margin-top: space(2.25);
|
|
217
|
+
nav {
|
|
218
|
+
#menu-toggle-button {
|
|
219
|
+
display: none;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
217
222
|
.logo-header {
|
|
218
223
|
--fill-one: rgba(255, 255, 255, 1);
|
|
219
224
|
--fill-two: rgba(255, 255, 255, 0.625);
|
|
@@ -263,8 +268,8 @@ export default {
|
|
|
263
268
|
}
|
|
264
269
|
.translation-button-adjust {
|
|
265
270
|
position: absolute;
|
|
266
|
-
top: space(
|
|
267
|
-
right: space(0.
|
|
271
|
+
top: space(0.25);
|
|
272
|
+
right: space(0.25);
|
|
268
273
|
}
|
|
269
274
|
& ::v-deep .notification-group--status .notifications {
|
|
270
275
|
padding: 0.375rem;
|
|
@@ -307,9 +312,6 @@ export default {
|
|
|
307
312
|
width: 100%;
|
|
308
313
|
}
|
|
309
314
|
.double-notification-wrapper {
|
|
310
|
-
position: absolute;
|
|
311
|
-
top: space(1);
|
|
312
|
-
right: space(0.5);
|
|
313
315
|
display: flex;
|
|
314
316
|
flex-direction: row;
|
|
315
317
|
justify-content: flex-end;
|
|
@@ -348,9 +350,8 @@ export default {
|
|
|
348
350
|
padding: 0 space(1);
|
|
349
351
|
}
|
|
350
352
|
.translation-button-adjust {
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
right: 0 !important;
|
|
353
|
+
top: space(-0.5);
|
|
354
|
+
right: space(0.5);
|
|
354
355
|
}
|
|
355
356
|
.double-notification-wrapper {
|
|
356
357
|
// padding-right: space(1);
|
|
@@ -364,7 +365,9 @@ export default {
|
|
|
364
365
|
display: block;
|
|
365
366
|
margin-left: space(3);
|
|
366
367
|
margin-top: 0;
|
|
367
|
-
|
|
368
|
+
.translation-button-adjust {
|
|
369
|
+
position: relative !important;
|
|
370
|
+
}
|
|
368
371
|
.logo-header {
|
|
369
372
|
--fill-one: #0e2c6c;
|
|
370
373
|
--fill-two: #9fa1a2;
|
|
@@ -385,7 +388,7 @@ export default {
|
|
|
385
388
|
justify-content: flex-end;
|
|
386
389
|
align-items: center;
|
|
387
390
|
width: 100%;
|
|
388
|
-
margin: space(1);
|
|
391
|
+
// margin: space(1);
|
|
389
392
|
}
|
|
390
393
|
}
|
|
391
394
|
.asd20-primary-header,
|