@asd20/ui 3.2.399 → 3.2.402
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/molecules/Asd20Modal/index.vue +1 -1
- package/src/components/organisms/Asd20AppHeader/index.vue +1 -1
- package/src/components/organisms/Asd20SchoolHomepageHeader/index.vue +16 -3
- package/src/components/templates/Asd20ArticleDigestTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20ArticleDigestTemplate/index.vue +27 -0
- package/src/components/templates/Asd20ArticleListTemplate/index.vue +27 -0
- package/src/components/templates/Asd20ArticleTemplate/index.vue +27 -1
- package/src/components/templates/Asd20DetailAlternateTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20DetailAlternateTemplate/index.vue +27 -0
- package/src/components/templates/Asd20DetailTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20DetailTemplate/index.vue +29 -12
- package/src/components/templates/Asd20DistrictHomeTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20DistrictHomeTemplate/index.vue +22 -1
- package/src/components/templates/Asd20DistrictVideoTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20DistrictVideoTemplate/index.vue +27 -3
- package/src/components/templates/Asd20FileListPageTemplate/index.vue +27 -0
- package/src/components/templates/Asd20LoginsTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20LoginsTemplate/index.vue +30 -5
- package/src/components/templates/Asd20ProfileTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20ProfileTemplate/index.vue +27 -0
- package/src/components/templates/Asd20SalaryCalculatorTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20SalaryCalculatorTemplate/index.vue +28 -8
- package/src/components/templates/Asd20SchoolHomeTemplate/index.vue +24 -1
- package/src/components/templates/Asd20SchoolHomeVideoTemplate/index.vue +22 -2
- package/src/components/templates/Asd20WayfindingTemplate/index.vue +27 -0
package/package.json
CHANGED
|
@@ -19,7 +19,10 @@
|
|
|
19
19
|
</div>
|
|
20
20
|
</div>
|
|
21
21
|
|
|
22
|
-
<div
|
|
22
|
+
<div
|
|
23
|
+
v-if="imageUrl && !$slots.aside"
|
|
24
|
+
class="asd20-school-homepage-header__image"
|
|
25
|
+
>
|
|
23
26
|
<img :src="imageUrl" :alt="imageCaption" />
|
|
24
27
|
</div>
|
|
25
28
|
|
|
@@ -138,7 +141,7 @@ export default {
|
|
|
138
141
|
z-index: 101;
|
|
139
142
|
background: white;
|
|
140
143
|
display: flex;
|
|
141
|
-
justify-content:
|
|
144
|
+
justify-content: space-between;
|
|
142
145
|
flex-direction: row;
|
|
143
146
|
align-items: center;
|
|
144
147
|
padding: space(0.25) space(0.5);
|
|
@@ -159,6 +162,16 @@ export default {
|
|
|
159
162
|
}
|
|
160
163
|
&::v-deep .notification-group--floating {
|
|
161
164
|
margin-right: 0;
|
|
165
|
+
.bell {
|
|
166
|
+
z-index: 1000;
|
|
167
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
|
|
168
|
+
svg {
|
|
169
|
+
fill: var(--color__accent) !important;
|
|
170
|
+
}
|
|
171
|
+
span {
|
|
172
|
+
background: var(--color__accent) !important;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
162
175
|
}
|
|
163
176
|
}
|
|
164
177
|
|
|
@@ -166,7 +179,7 @@ export default {
|
|
|
166
179
|
position: relative;
|
|
167
180
|
color: var(--website-header__title-color);
|
|
168
181
|
@include asd20-font(
|
|
169
|
-
2
|
|
182
|
+
2,
|
|
170
183
|
var(--website-typography__font-family-headlines),
|
|
171
184
|
1.2,
|
|
172
185
|
700
|
|
@@ -374,6 +374,22 @@ export default {
|
|
|
374
374
|
flex-shrink: 0;
|
|
375
375
|
overflow: hidden;
|
|
376
376
|
margin-top: space(2.25);
|
|
377
|
+
.asd20-notification-group--floating {
|
|
378
|
+
position: absolute;
|
|
379
|
+
top: space(2);
|
|
380
|
+
.bell {
|
|
381
|
+
z-index: 1000;
|
|
382
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
383
|
+
svg {
|
|
384
|
+
fill: var(--color__accent);
|
|
385
|
+
}
|
|
386
|
+
span {
|
|
387
|
+
background: var(--color__accent);
|
|
388
|
+
top: inherit;
|
|
389
|
+
right: inherit;
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
}
|
|
377
393
|
.feed-title {
|
|
378
394
|
margin: space(1) 0 0 space(1);
|
|
379
395
|
}
|
|
@@ -429,6 +445,17 @@ export default {
|
|
|
429
445
|
@include template-desktop;
|
|
430
446
|
margin-left: space(3);
|
|
431
447
|
margin-top: 0;
|
|
448
|
+
.asd20-notification-group--floating {
|
|
449
|
+
position: absolute;
|
|
450
|
+
top: space(1);
|
|
451
|
+
.bell {
|
|
452
|
+
span {
|
|
453
|
+
background: var(--color__accent);
|
|
454
|
+
top: -0.5em;
|
|
455
|
+
right: -0.5em;
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
}
|
|
432
459
|
.feed-title {
|
|
433
460
|
margin-left: 0;
|
|
434
461
|
}
|
|
@@ -375,6 +375,22 @@ export default {
|
|
|
375
375
|
flex-shrink: 0;
|
|
376
376
|
overflow: hidden;
|
|
377
377
|
margin-top: space(2.25);
|
|
378
|
+
.asd20-notification-group--floating {
|
|
379
|
+
position: absolute;
|
|
380
|
+
top: space(2);
|
|
381
|
+
.bell {
|
|
382
|
+
z-index: 1000;
|
|
383
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
384
|
+
svg {
|
|
385
|
+
fill: var(--color__accent);
|
|
386
|
+
}
|
|
387
|
+
span {
|
|
388
|
+
background: var(--color__accent);
|
|
389
|
+
top: inherit;
|
|
390
|
+
right: inherit;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
}
|
|
378
394
|
.feed-title {
|
|
379
395
|
margin: space(1) 0 0 0;
|
|
380
396
|
}
|
|
@@ -446,6 +462,17 @@ export default {
|
|
|
446
462
|
@include template-desktop;
|
|
447
463
|
margin-left: space(3);
|
|
448
464
|
margin-top: 0;
|
|
465
|
+
.asd20-notification-group--floating {
|
|
466
|
+
position: absolute;
|
|
467
|
+
top: space(1);
|
|
468
|
+
.bell {
|
|
469
|
+
span {
|
|
470
|
+
background: var(--color__accent);
|
|
471
|
+
top: -0.5em;
|
|
472
|
+
right: -0.5em;
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
}
|
|
449
476
|
.feed-title {
|
|
450
477
|
margin-left: 0;
|
|
451
478
|
}
|
|
@@ -182,10 +182,25 @@ export default {
|
|
|
182
182
|
flex-shrink: 0;
|
|
183
183
|
overflow: hidden;
|
|
184
184
|
margin-top: space(2.25);
|
|
185
|
+
.asd20-notification-group--floating {
|
|
186
|
+
position: absolute;
|
|
187
|
+
top: space(2);
|
|
188
|
+
.bell {
|
|
189
|
+
z-index: 1000;
|
|
190
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
191
|
+
svg {
|
|
192
|
+
fill: var(--color__accent);
|
|
193
|
+
}
|
|
194
|
+
span {
|
|
195
|
+
background: var(--color__accent);
|
|
196
|
+
top: inherit;
|
|
197
|
+
right: inherit;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
185
201
|
.notification-group--inline {
|
|
186
202
|
margin: space(1);
|
|
187
203
|
}
|
|
188
|
-
|
|
189
204
|
.asd20-widgets-section {
|
|
190
205
|
background: var(--website-page__alternate-background-color);
|
|
191
206
|
background-image: var(--website-texture__default);
|
|
@@ -198,6 +213,17 @@ export default {
|
|
|
198
213
|
.asd20-template-article {
|
|
199
214
|
margin-left: space(3);
|
|
200
215
|
margin-top: 0;
|
|
216
|
+
.asd20-notification-group--floating {
|
|
217
|
+
position: absolute;
|
|
218
|
+
top: space(1);
|
|
219
|
+
.bell {
|
|
220
|
+
span {
|
|
221
|
+
background: var(--color__accent);
|
|
222
|
+
top: -0.5em;
|
|
223
|
+
right: -0.5em;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
201
227
|
.notification-group--inline {
|
|
202
228
|
margin: space(2) space(3) space(1) space(3);
|
|
203
229
|
}
|
|
@@ -197,6 +197,22 @@ export default {
|
|
|
197
197
|
flex-shrink: 0;
|
|
198
198
|
overflow: hidden;
|
|
199
199
|
margin-top: space(2.25);
|
|
200
|
+
.asd20-notification-group--floating {
|
|
201
|
+
position: absolute;
|
|
202
|
+
top: space(2);
|
|
203
|
+
.bell {
|
|
204
|
+
z-index: 1000;
|
|
205
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
206
|
+
svg {
|
|
207
|
+
fill: var(--color__accent);
|
|
208
|
+
}
|
|
209
|
+
span {
|
|
210
|
+
background: var(--color__accent);
|
|
211
|
+
top: inherit;
|
|
212
|
+
right: inherit;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
200
216
|
|
|
201
217
|
.notification-group--inline {
|
|
202
218
|
margin-bottom: space(3);
|
|
@@ -225,6 +241,17 @@ export default {
|
|
|
225
241
|
@include template-desktop;
|
|
226
242
|
margin-left: space(3);
|
|
227
243
|
margin-top: 0;
|
|
244
|
+
.asd20-notification-group--floating {
|
|
245
|
+
position: absolute;
|
|
246
|
+
top: space(1);
|
|
247
|
+
.bell {
|
|
248
|
+
span {
|
|
249
|
+
background: var(--color__accent);
|
|
250
|
+
top: -0.5em;
|
|
251
|
+
right: -0.5em;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
228
255
|
.notification-group--inline {
|
|
229
256
|
flex-basis: 100%;
|
|
230
257
|
margin: space(2) space(3) space(0) space(3);
|
|
@@ -176,20 +176,28 @@ export default {
|
|
|
176
176
|
.asd20-template-detail {
|
|
177
177
|
@include typography;
|
|
178
178
|
@include template;
|
|
179
|
-
// h2 {
|
|
180
|
-
// @include asd20-font(
|
|
181
|
-
// 1.15,
|
|
182
|
-
// var(--website-typography__font-family-headlines),
|
|
183
|
-
// 1.2,
|
|
184
|
-
// 700
|
|
185
|
-
// );
|
|
186
|
-
// }
|
|
187
179
|
display: flex;
|
|
188
180
|
flex-direction: column;
|
|
189
181
|
flex-grow: 1;
|
|
190
182
|
flex-shrink: 0;
|
|
191
183
|
overflow: hidden;
|
|
192
184
|
margin-top: space(2.25);
|
|
185
|
+
.asd20-notification-group--floating {
|
|
186
|
+
position: absolute;
|
|
187
|
+
top: space(2);
|
|
188
|
+
.bell {
|
|
189
|
+
z-index: 1000;
|
|
190
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
191
|
+
svg {
|
|
192
|
+
fill: var(--color__accent);
|
|
193
|
+
}
|
|
194
|
+
span {
|
|
195
|
+
background: var(--color__accent);
|
|
196
|
+
top: inherit;
|
|
197
|
+
right: inherit;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
193
201
|
}
|
|
194
202
|
|
|
195
203
|
@media (min-width: 1024px) {
|
|
@@ -197,8 +205,21 @@ export default {
|
|
|
197
205
|
@include template-desktop;
|
|
198
206
|
margin-left: space(3);
|
|
199
207
|
margin-top: 0;
|
|
208
|
+
.asd20-notification-group--floating {
|
|
209
|
+
position: absolute;
|
|
210
|
+
top: space(1);
|
|
211
|
+
.bell {
|
|
212
|
+
span {
|
|
213
|
+
background: var(--color__accent);
|
|
214
|
+
top: -0.5em;
|
|
215
|
+
right: -0.5em;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
200
219
|
.notification-group--inline {
|
|
201
220
|
margin: space(2) space(3) space(1) space(3);
|
|
221
|
+
flex-basis: 100%;
|
|
222
|
+
margin-bottom: 0 !important;
|
|
202
223
|
}
|
|
203
224
|
|
|
204
225
|
.asd20-page-content {
|
|
@@ -213,10 +234,6 @@ export default {
|
|
|
213
234
|
background: none;
|
|
214
235
|
}
|
|
215
236
|
}
|
|
216
|
-
.notification-group--inline {
|
|
217
|
-
flex-basis: 100%;
|
|
218
|
-
margin-bottom: 0 !important;
|
|
219
|
-
}
|
|
220
237
|
.primary-messaging-section {
|
|
221
238
|
max-width: 50vw;
|
|
222
239
|
}
|
|
@@ -296,8 +296,20 @@ export default {
|
|
|
296
296
|
}
|
|
297
297
|
}
|
|
298
298
|
|
|
299
|
-
|
|
299
|
+
.notification-group--floating {
|
|
300
300
|
margin-right: 0;
|
|
301
|
+
.bell {
|
|
302
|
+
z-index: 1000;
|
|
303
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
304
|
+
svg {
|
|
305
|
+
fill: var(--color__accent);
|
|
306
|
+
}
|
|
307
|
+
span {
|
|
308
|
+
background: var(--color__accent);
|
|
309
|
+
top: inherit;
|
|
310
|
+
right: inherit;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
301
313
|
}
|
|
302
314
|
.header-notifications {
|
|
303
315
|
display: flex;
|
|
@@ -346,6 +358,15 @@ export default {
|
|
|
346
358
|
z-index: 3;
|
|
347
359
|
display: flex;
|
|
348
360
|
justify-content: space-between;
|
|
361
|
+
.notification-group--floating {
|
|
362
|
+
.bell {
|
|
363
|
+
span {
|
|
364
|
+
background: var(--color__accent);
|
|
365
|
+
top: -0.5em;
|
|
366
|
+
right: -0.5em;
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
349
370
|
.asd20-district-logo {
|
|
350
371
|
margin: space(1) space(1) space(1) space(1);
|
|
351
372
|
line-height: 2;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="asd20-district-video-template">
|
|
3
3
|
<!-- Skip Nav -->
|
|
4
|
-
<asd20-skip-to />
|
|
4
|
+
<!-- <asd20-skip-to /> -->
|
|
5
5
|
|
|
6
6
|
<!-- Banner Notifications -->
|
|
7
7
|
<client-only>
|
|
@@ -88,8 +88,9 @@
|
|
|
88
88
|
<slot name="page-footer" />
|
|
89
89
|
|
|
90
90
|
<!-- analytics requested by Kyle Blakely -->
|
|
91
|
-
<img
|
|
92
|
-
|
|
91
|
+
<img
|
|
92
|
+
src="https://jelly.mdhv.io/v1/star.gif?pid=ipUavA655F50RvTSoYZIJU2vFFFB&src=mh&evt=hi"
|
|
93
|
+
/>
|
|
93
94
|
</asd20-page-footer>
|
|
94
95
|
</div>
|
|
95
96
|
</template>
|
|
@@ -165,6 +166,20 @@ export default {
|
|
|
165
166
|
top: space(2);
|
|
166
167
|
}
|
|
167
168
|
}
|
|
169
|
+
.asd20-notification-group--floating {
|
|
170
|
+
.bell {
|
|
171
|
+
z-index: 1000;
|
|
172
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
173
|
+
svg {
|
|
174
|
+
fill: var(--color__accent);
|
|
175
|
+
}
|
|
176
|
+
span {
|
|
177
|
+
background: var(--color__accent);
|
|
178
|
+
top: inherit;
|
|
179
|
+
right: inherit;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
168
183
|
|
|
169
184
|
@media (min-width: 667px) {
|
|
170
185
|
.asd20-district-video-template {
|
|
@@ -180,6 +195,15 @@ export default {
|
|
|
180
195
|
display: block;
|
|
181
196
|
margin-left: space(3);
|
|
182
197
|
margin-top: 0;
|
|
198
|
+
.notification-group--floating {
|
|
199
|
+
.bell {
|
|
200
|
+
span {
|
|
201
|
+
background: var(--color__accent);
|
|
202
|
+
top: -0.5em;
|
|
203
|
+
right: -0.5em;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
183
207
|
}
|
|
184
208
|
#site-navigation .asd20-district-logo {
|
|
185
209
|
display: none;
|
|
@@ -170,6 +170,22 @@ export default {
|
|
|
170
170
|
flex-shrink: 0;
|
|
171
171
|
overflow: hidden;
|
|
172
172
|
margin-top: space(2.25);
|
|
173
|
+
.asd20-notification-group--floating {
|
|
174
|
+
position: absolute;
|
|
175
|
+
top: space(2);
|
|
176
|
+
.bell {
|
|
177
|
+
z-index: 1000;
|
|
178
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
179
|
+
svg {
|
|
180
|
+
fill: var(--color__accent);
|
|
181
|
+
}
|
|
182
|
+
span {
|
|
183
|
+
background: var(--color__accent);
|
|
184
|
+
top: inherit;
|
|
185
|
+
right: inherit;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
173
189
|
|
|
174
190
|
.asd20-file-page-section {
|
|
175
191
|
background-position-y: top;
|
|
@@ -185,6 +201,17 @@ export default {
|
|
|
185
201
|
.asd20-template-file-list {
|
|
186
202
|
margin-left: space(3);
|
|
187
203
|
margin-top: 0;
|
|
204
|
+
.asd20-notification-group--floating {
|
|
205
|
+
position: absolute;
|
|
206
|
+
top: space(1);
|
|
207
|
+
.bell {
|
|
208
|
+
span {
|
|
209
|
+
background: var(--color__accent);
|
|
210
|
+
top: -0.5em;
|
|
211
|
+
right: -0.5em;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
188
215
|
.asd20-page-content {
|
|
189
216
|
margin-top: space(1);
|
|
190
217
|
}
|
|
@@ -291,16 +291,29 @@ export default {
|
|
|
291
291
|
}
|
|
292
292
|
.asd20-page-header {
|
|
293
293
|
margin-bottom: space(0) !important;
|
|
294
|
+
.asd20-page-header__tools {
|
|
295
|
+
}
|
|
294
296
|
}
|
|
295
297
|
.notification-group--floating {
|
|
296
298
|
position: absolute;
|
|
297
|
-
right: space(0.
|
|
298
|
-
top: space(2
|
|
299
|
+
right: space(0.85);
|
|
300
|
+
top: space(2);
|
|
301
|
+
.bell {
|
|
302
|
+
z-index: 1000;
|
|
303
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
304
|
+
svg {
|
|
305
|
+
fill: var(--color__accent);
|
|
306
|
+
}
|
|
307
|
+
span {
|
|
308
|
+
background: var(--color__accent);
|
|
309
|
+
top: inherit;
|
|
310
|
+
right: inherit;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
299
313
|
}
|
|
300
314
|
.notification-group--inline {
|
|
301
315
|
margin: space(1);
|
|
302
316
|
}
|
|
303
|
-
|
|
304
317
|
.asd20-widgets-section {
|
|
305
318
|
background: var(--website-page__alternate-background-t70);
|
|
306
319
|
background-image: var(--website-texture__default);
|
|
@@ -321,6 +334,11 @@ export default {
|
|
|
321
334
|
}
|
|
322
335
|
@media (min-width: 450px) {
|
|
323
336
|
.asd20-template-logins {
|
|
337
|
+
// .notification-group--floating {
|
|
338
|
+
// position: absolute;
|
|
339
|
+
// right: space(0.85);
|
|
340
|
+
// top: space(4.25);
|
|
341
|
+
// }
|
|
324
342
|
.logins-list {
|
|
325
343
|
display: flex;
|
|
326
344
|
flex-direction: row;
|
|
@@ -337,8 +355,15 @@ export default {
|
|
|
337
355
|
margin-top: 0;
|
|
338
356
|
.notification-group--floating {
|
|
339
357
|
position: absolute;
|
|
340
|
-
right: space(
|
|
341
|
-
top: space(
|
|
358
|
+
right: space(1.85);
|
|
359
|
+
top: space(1);
|
|
360
|
+
.bell {
|
|
361
|
+
span {
|
|
362
|
+
background: var(--color__accent);
|
|
363
|
+
top: -0.5em;
|
|
364
|
+
right: -0.5em;
|
|
365
|
+
}
|
|
366
|
+
}
|
|
342
367
|
}
|
|
343
368
|
.notification-group--inline {
|
|
344
369
|
margin: space(2) space(3) space(1) space(3);
|
|
@@ -444,6 +444,22 @@ export default {
|
|
|
444
444
|
flex-shrink: 0;
|
|
445
445
|
overflow: hidden;
|
|
446
446
|
margin-top: space(2.25);
|
|
447
|
+
.asd20-notification-group--floating {
|
|
448
|
+
position: absolute;
|
|
449
|
+
top: space(2);
|
|
450
|
+
.bell {
|
|
451
|
+
z-index: 1000;
|
|
452
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
453
|
+
svg {
|
|
454
|
+
fill: var(--color__accent);
|
|
455
|
+
}
|
|
456
|
+
span {
|
|
457
|
+
background: var(--color__accent);
|
|
458
|
+
top: inherit;
|
|
459
|
+
right: inherit;
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
}
|
|
447
463
|
}
|
|
448
464
|
|
|
449
465
|
.asd20-school-details {
|
|
@@ -518,6 +534,17 @@ export default {
|
|
|
518
534
|
@include template-desktop;
|
|
519
535
|
margin-left: space(3);
|
|
520
536
|
margin-top: 0;
|
|
537
|
+
.asd20-notification-group--floating {
|
|
538
|
+
position: absolute;
|
|
539
|
+
top: space(1);
|
|
540
|
+
.bell {
|
|
541
|
+
span {
|
|
542
|
+
background: var(--color__accent);
|
|
543
|
+
top: -0.5em;
|
|
544
|
+
right: -0.5em;
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
}
|
|
521
548
|
.notification-group--inline {
|
|
522
549
|
margin: space(2) space(3) space(1) space(3);
|
|
523
550
|
}
|
|
@@ -660,20 +660,29 @@ export default {
|
|
|
660
660
|
.asd20-salary-calculator-template {
|
|
661
661
|
@include typography;
|
|
662
662
|
@include template;
|
|
663
|
-
|
|
664
|
-
// @include asd20-font(
|
|
665
|
-
// 1.15,
|
|
666
|
-
// var(--website-typography__font-family-headlines),
|
|
667
|
-
// 1.2,
|
|
668
|
-
// 700
|
|
669
|
-
// );
|
|
670
|
-
// }
|
|
663
|
+
|
|
671
664
|
display: flex;
|
|
672
665
|
flex-direction: column;
|
|
673
666
|
flex-grow: 1;
|
|
674
667
|
flex-shrink: 0;
|
|
675
668
|
overflow: hidden;
|
|
676
669
|
margin-top: space(2.25);
|
|
670
|
+
.asd20-notification-group--floating {
|
|
671
|
+
position: absolute;
|
|
672
|
+
top: space(2);
|
|
673
|
+
.bell {
|
|
674
|
+
z-index: 1000;
|
|
675
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
676
|
+
svg {
|
|
677
|
+
fill: var(--color__accent);
|
|
678
|
+
}
|
|
679
|
+
span {
|
|
680
|
+
background: var(--color__accent);
|
|
681
|
+
top: inherit;
|
|
682
|
+
right: inherit;
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
}
|
|
677
686
|
.salary-calculator {
|
|
678
687
|
margin: space(2);
|
|
679
688
|
.asd20-button {
|
|
@@ -693,6 +702,17 @@ export default {
|
|
|
693
702
|
@include template-desktop;
|
|
694
703
|
margin-left: space(3);
|
|
695
704
|
margin-top: 0;
|
|
705
|
+
.asd20-notification-group--floating {
|
|
706
|
+
position: absolute;
|
|
707
|
+
top: space(1);
|
|
708
|
+
.bell {
|
|
709
|
+
span {
|
|
710
|
+
background: var(--color__accent);
|
|
711
|
+
top: -0.5em;
|
|
712
|
+
right: -0.5em;
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
}
|
|
696
716
|
.notification-group--inline {
|
|
697
717
|
margin: space(2) space(3) space(1) space(3);
|
|
698
718
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="asd20-school-home-template">
|
|
3
3
|
<!-- Skip Nav -->
|
|
4
|
-
<asd20-skip-to></asd20-skip-to>
|
|
4
|
+
<!-- <asd20-skip-to></asd20-skip-to> -->
|
|
5
5
|
|
|
6
6
|
<!-- Banner Notifications -->
|
|
7
7
|
<client-only>
|
|
@@ -207,6 +207,20 @@ export default {
|
|
|
207
207
|
.pickerContainer {
|
|
208
208
|
display: none;
|
|
209
209
|
}
|
|
210
|
+
.asd20-notification-group--floating {
|
|
211
|
+
.bell {
|
|
212
|
+
z-index: 1000;
|
|
213
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
214
|
+
svg {
|
|
215
|
+
fill: var(--color__accent);
|
|
216
|
+
}
|
|
217
|
+
span {
|
|
218
|
+
background: var(--color__accent);
|
|
219
|
+
top: inherit;
|
|
220
|
+
right: inherit;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
210
224
|
|
|
211
225
|
&::v-deep .widgets-section {
|
|
212
226
|
background: var(--website-page__alternate-background-t70);
|
|
@@ -239,6 +253,15 @@ export default {
|
|
|
239
253
|
// background: white;
|
|
240
254
|
// top: space(2);
|
|
241
255
|
// }
|
|
256
|
+
.notification-group--floating {
|
|
257
|
+
.bell {
|
|
258
|
+
span {
|
|
259
|
+
background: var(--color__accent);
|
|
260
|
+
top: -0.5em;
|
|
261
|
+
right: -0.5em;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
242
265
|
.pickerContainer {
|
|
243
266
|
display: flex;
|
|
244
267
|
.optionalLogo {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="asd20-school-home-video-template">
|
|
3
3
|
<!-- Skip Nav -->
|
|
4
|
-
<asd20-skip-to></asd20-skip-to>
|
|
4
|
+
<!-- <asd20-skip-to></asd20-skip-to> -->
|
|
5
5
|
|
|
6
6
|
<!-- Banner Notifications -->
|
|
7
7
|
<client-only>
|
|
@@ -202,10 +202,23 @@ export default {
|
|
|
202
202
|
right: space(0.5);
|
|
203
203
|
top: space(0.5) !important;
|
|
204
204
|
}
|
|
205
|
+
|
|
205
206
|
.asd20-notification-group--floating {
|
|
206
207
|
position: absolute;
|
|
207
208
|
right: space(0.5);
|
|
208
209
|
top: space(2) !important;
|
|
210
|
+
.bell {
|
|
211
|
+
z-index: 1000;
|
|
212
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
213
|
+
svg {
|
|
214
|
+
fill: var(--color__accent);
|
|
215
|
+
}
|
|
216
|
+
span {
|
|
217
|
+
background: var(--color__accent);
|
|
218
|
+
top: inherit;
|
|
219
|
+
right: inherit;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
209
222
|
}
|
|
210
223
|
|
|
211
224
|
.asd20-quicklinks-menu {
|
|
@@ -255,7 +268,14 @@ export default {
|
|
|
255
268
|
}
|
|
256
269
|
.asd20-notification-group--floating {
|
|
257
270
|
right: space(4);
|
|
258
|
-
top: space(7.5)
|
|
271
|
+
top: space(7.5);
|
|
272
|
+
.bell {
|
|
273
|
+
span {
|
|
274
|
+
background: var(--color__accent);
|
|
275
|
+
top: -0.5em;
|
|
276
|
+
right: -0.5em;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
259
279
|
}
|
|
260
280
|
.asd20-notification-group--status {
|
|
261
281
|
order: 0;
|
|
@@ -190,10 +190,37 @@ export default {
|
|
|
190
190
|
flex-shrink: 0;
|
|
191
191
|
overflow: hidden;
|
|
192
192
|
margin-top: space(2.25);
|
|
193
|
+
.asd20-notification-group--floating {
|
|
194
|
+
position: absolute;
|
|
195
|
+
top: space(2);
|
|
196
|
+
.bell {
|
|
197
|
+
z-index: 1000;
|
|
198
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
199
|
+
svg {
|
|
200
|
+
fill: var(--color__accent);
|
|
201
|
+
}
|
|
202
|
+
span {
|
|
203
|
+
background: var(--color__accent);
|
|
204
|
+
top: inherit;
|
|
205
|
+
right: inherit;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
193
209
|
}
|
|
194
210
|
|
|
195
211
|
@media (min-width: 1024px) {
|
|
196
212
|
.asd20-template-wayfinding {
|
|
213
|
+
.asd20-notification-group--floating {
|
|
214
|
+
position: absolute;
|
|
215
|
+
top: space(1);
|
|
216
|
+
.bell {
|
|
217
|
+
span {
|
|
218
|
+
background: var(--color__accent);
|
|
219
|
+
top: -0.5em;
|
|
220
|
+
right: -0.5em;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
197
224
|
@include template-desktop;
|
|
198
225
|
margin-left: space(3);
|
|
199
226
|
margin-top: 0;
|