@asd20/ui 3.2.397 → 3.2.400

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.
Files changed (26) hide show
  1. package/package.json +1 -1
  2. package/src/components/atoms/Asd20CalendarEventButton/index.vue +2 -2
  3. package/src/components/organisms/Asd20AppHeader/index.vue +20 -2
  4. package/src/components/organisms/Asd20SchoolHomepageHeader/index.vue +16 -3
  5. package/src/components/templates/Asd20ArticleDigestTemplate/index.stories.js +1 -1
  6. package/src/components/templates/Asd20ArticleDigestTemplate/index.vue +26 -0
  7. package/src/components/templates/Asd20ArticleListTemplate/index.vue +26 -0
  8. package/src/components/templates/Asd20ArticleTemplate/index.vue +26 -1
  9. package/src/components/templates/Asd20DetailAlternateTemplate/index.stories.js +1 -1
  10. package/src/components/templates/Asd20DetailAlternateTemplate/index.vue +27 -0
  11. package/src/components/templates/Asd20DetailTemplate/index.stories.js +1 -1
  12. package/src/components/templates/Asd20DetailTemplate/index.vue +28 -12
  13. package/src/components/templates/Asd20DistrictHomeTemplate/index.stories.js +1 -1
  14. package/src/components/templates/Asd20DistrictHomeTemplate/index.vue +10 -0
  15. package/src/components/templates/Asd20DistrictVideoTemplate/index.stories.js +1 -1
  16. package/src/components/templates/Asd20DistrictVideoTemplate/index.vue +13 -1
  17. package/src/components/templates/Asd20FileListPageTemplate/index.vue +26 -0
  18. package/src/components/templates/Asd20LoginsTemplate/index.stories.js +1 -1
  19. package/src/components/templates/Asd20LoginsTemplate/index.vue +28 -5
  20. package/src/components/templates/Asd20ProfileTemplate/index.stories.js +1 -1
  21. package/src/components/templates/Asd20ProfileTemplate/index.vue +26 -0
  22. package/src/components/templates/Asd20SalaryCalculatorTemplate/index.stories.js +1 -1
  23. package/src/components/templates/Asd20SalaryCalculatorTemplate/index.vue +28 -8
  24. package/src/components/templates/Asd20SchoolHomeTemplate/index.vue +13 -1
  25. package/src/components/templates/Asd20SchoolHomeVideoTemplate/index.vue +12 -1
  26. package/src/components/templates/Asd20WayfindingTemplate/index.vue +27 -0
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.397",
8
+ "version": "3.2.400",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -161,14 +161,14 @@ $accent: var(--color__accent);
161
161
  margin-top: space(0.125);
162
162
  display: block;
163
163
  font-size: 0.875rem;
164
- margin-left: space(0.375);
164
+ margin-left: space(0.5);
165
165
  }
166
166
  .location {
167
167
  display: block;
168
168
  margin-top: space(0.125);
169
169
  margin-bottom: 0;
170
170
  font-size: 0.875rem;
171
- margin-left: space(0.375);
171
+ margin-left: space(0.5);
172
172
  }
173
173
  }
174
174
  &--all-day {
@@ -17,6 +17,7 @@
17
17
  {{ title }}
18
18
  <span class="version" v-if="version" v-html="version"></span>
19
19
  </div>
20
+ <asd20-district-logo link="https://www.asd20.org"/>
20
21
  </h1>
21
22
  <slot />
22
23
  </header>
@@ -25,9 +26,11 @@
25
26
  <script>
26
27
  import Asd20Button from '../../atoms/Asd20Button'
27
28
  import Asd20Icon from '../../atoms/Asd20Icon'
29
+ import Asd20DistrictLogo from '../../atoms/Asd20DistrictLogo'
30
+
28
31
  export default {
29
32
  name: 'Asd20AppHeader',
30
- components: { Asd20Button, Asd20Icon },
33
+ components: { Asd20Button, Asd20Icon, Asd20DistrictLogo },
31
34
  props: {
32
35
  title: { type: String, default: '' },
33
36
  icon: { type: String, default: '' },
@@ -47,21 +50,28 @@ export default {
47
50
  display: flex;
48
51
  align-items: center;
49
52
  flex-shrink: 0;
50
- border-bottom: 1px solid var(--color__tertiary);
51
53
  background: white;
52
54
  flex-wrap: wrap;
55
+ border-bottom: 1px solid var(--color__tertiary);
53
56
 
54
57
  &__title {
55
58
  display: flex;
56
59
  align-items: center;
57
60
  flex-shrink: 0;
58
61
  padding: space(0.5) 0;
62
+ // width: 100vw;
63
+ // border-bottom: 1px solid var(--color__tertiary);
59
64
  }
60
65
 
61
66
  h1 {
62
67
  margin: 0;
63
68
  font-size: 1rem;
64
69
  color: var(--color__primary);
70
+ flex-grow: 1;
71
+ width: 100%;
72
+ border-bottom: 1px solid var(--color__tertiary);
73
+ display: flex;
74
+ align-items: center;
65
75
  .asd20-icon {
66
76
  margin: 0 space(0.5);
67
77
  }
@@ -145,6 +155,14 @@ export default {
145
155
 
146
156
  @media (max-width: 480px) {
147
157
  .asd20-app-header {
158
+ &__title {
159
+ display: flex;
160
+ align-items: center;
161
+ flex-shrink: 0;
162
+ padding: space(0.5) 0;
163
+ width: 100vw;
164
+ border-bottom: 1px solid var(--color__tertiary);
165
+ }
148
166
  }
149
167
  }
150
168
  </style>
@@ -19,7 +19,10 @@
19
19
  </div>
20
20
  </div>
21
21
 
22
- <div v-if="imageUrl && !$slots.aside" class="asd20-school-homepage-header__image">
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: flex-end;
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.0,
182
+ 2,
170
183
  var(--website-typography__font-family-headlines),
171
184
  1.2,
172
185
  700
@@ -34,7 +34,7 @@ const wrapper = {
34
34
  floating: [],
35
35
  status: [],
36
36
  }
37
- return boolean('Show Notifications', false)
37
+ return boolean('Show Notifications', true)
38
38
  ? notifications || empty
39
39
  : empty
40
40
  },
@@ -374,6 +374,20 @@ 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(4);
380
+ .bell {
381
+ z-index: 1000;
382
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
383
+ svg {
384
+ fill: var(--color__accent) !important;
385
+ }
386
+ span {
387
+ background: var(--color__accent) !important;
388
+ }
389
+ }
390
+ }
377
391
  .feed-title {
378
392
  margin: space(1) 0 0 space(1);
379
393
  }
@@ -423,12 +437,24 @@ export default {
423
437
  margin-left: 0;
424
438
  }
425
439
  }
440
+ @media (min-width: 470px) {
441
+ .asd20-template-article-digest {
442
+ .asd20-notification-group--floating {
443
+ position: absolute;
444
+ top: space(2);
445
+ }
446
+ }
447
+ }
426
448
 
427
449
  @media (min-width: 1024px) {
428
450
  .asd20-template-article-digest {
429
451
  @include template-desktop;
430
452
  margin-left: space(3);
431
453
  margin-top: 0;
454
+ .asd20-notification-group--floating {
455
+ position: absolute;
456
+ top: space(1);
457
+ }
432
458
  .feed-title {
433
459
  margin-left: 0;
434
460
  }
@@ -375,6 +375,20 @@ 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(4);
381
+ .bell {
382
+ z-index: 1000;
383
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
384
+ svg {
385
+ fill: var(--color__accent) !important;
386
+ }
387
+ span {
388
+ background: var(--color__accent) !important;
389
+ }
390
+ }
391
+ }
378
392
  .feed-title {
379
393
  margin: space(1) 0 0 0;
380
394
  }
@@ -440,12 +454,24 @@ export default {
440
454
  }
441
455
  }
442
456
  }
457
+ @media (min-width: 470px) {
458
+ .asd20-template-article-list {
459
+ .asd20-notification-group--floating {
460
+ position: absolute;
461
+ top: space(2);
462
+ }
463
+ }
464
+ }
443
465
 
444
466
  @media (min-width: 1024px) {
445
467
  .asd20-template-article-list {
446
468
  @include template-desktop;
447
469
  margin-left: space(3);
448
470
  margin-top: 0;
471
+ .asd20-notification-group--floating {
472
+ position: absolute;
473
+ top: space(1);
474
+ }
449
475
  .feed-title {
450
476
  margin-left: 0;
451
477
  }
@@ -182,10 +182,23 @@ 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(4);
188
+ .bell {
189
+ z-index: 1000;
190
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
191
+ svg {
192
+ fill: var(--color__accent) !important;
193
+ }
194
+ span {
195
+ background: var(--color__accent) !important;
196
+ }
197
+ }
198
+ }
185
199
  .notification-group--inline {
186
200
  margin: space(1);
187
201
  }
188
-
189
202
  .asd20-widgets-section {
190
203
  background: var(--website-page__alternate-background-color);
191
204
  background-image: var(--website-texture__default);
@@ -193,11 +206,23 @@ export default {
193
206
  padding: space(1) 0;
194
207
  }
195
208
  }
209
+ @media (min-width: 470px) {
210
+ .asd20-template-article {
211
+ .asd20-notification-group--floating {
212
+ position: absolute;
213
+ top: space(2);
214
+ }
215
+ }
216
+ }
196
217
 
197
218
  @media (min-width: 1024px) {
198
219
  .asd20-template-article {
199
220
  margin-left: space(3);
200
221
  margin-top: 0;
222
+ .asd20-notification-group--floating {
223
+ position: absolute;
224
+ top: space(1);
225
+ }
201
226
  .notification-group--inline {
202
227
  margin: space(2) space(3) space(1) space(3);
203
228
  }
@@ -27,7 +27,7 @@ const wrapper = {
27
27
  floating: [],
28
28
  status: [],
29
29
  }
30
- return boolean('Show Notifications', false)
30
+ return boolean('Show Notifications', true)
31
31
  ? notifications || empty
32
32
  : empty
33
33
  },
@@ -197,6 +197,20 @@ 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(4);
203
+ .bell {
204
+ z-index: 1000;
205
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
206
+ svg {
207
+ fill: var(--color__accent) !important;
208
+ }
209
+ span {
210
+ background: var(--color__accent) !important;
211
+ }
212
+ }
213
+ }
200
214
 
201
215
  .notification-group--inline {
202
216
  margin-bottom: space(3);
@@ -220,11 +234,24 @@ export default {
220
234
  }
221
235
  }
222
236
 
237
+ @media (min-width: 470px) {
238
+ .asd20-template-detail-alternate {
239
+ .asd20-notification-group--floating {
240
+ position: absolute;
241
+ top: space(2);
242
+ }
243
+ }
244
+ }
245
+
223
246
  @media (min-width: 1024px) {
224
247
  .asd20-template-detail-alternate {
225
248
  @include template-desktop;
226
249
  margin-left: space(3);
227
250
  margin-top: 0;
251
+ .asd20-notification-group--floating {
252
+ position: absolute;
253
+ top: space(1);
254
+ }
228
255
  .notification-group--inline {
229
256
  flex-basis: 100%;
230
257
  margin: space(2) space(3) space(0) space(3);
@@ -27,7 +27,7 @@ const wrapper = {
27
27
  floating: [],
28
28
  status: [],
29
29
  }
30
- return boolean('Show Notifications', false)
30
+ return boolean('Show Notifications', true)
31
31
  ? notifications || empty
32
32
  : empty
33
33
  },
@@ -176,20 +176,34 @@ 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(4);
188
+ .bell {
189
+ z-index: 1000;
190
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
191
+ svg {
192
+ fill: var(--color__accent) !important;
193
+ }
194
+ span {
195
+ background: var(--color__accent) !important;
196
+ }
197
+ }
198
+ }
199
+ }
200
+ @media (min-width: 470px) {
201
+ .asd20-template-detail {
202
+ .asd20-notification-group--floating {
203
+ position: absolute;
204
+ top: space(2);
205
+ }
206
+ }
193
207
  }
194
208
 
195
209
  @media (min-width: 1024px) {
@@ -197,8 +211,14 @@ export default {
197
211
  @include template-desktop;
198
212
  margin-left: space(3);
199
213
  margin-top: 0;
214
+ .asd20-notification-group--floating {
215
+ position: absolute;
216
+ top: space(1);
217
+ }
200
218
  .notification-group--inline {
201
219
  margin: space(2) space(3) space(1) space(3);
220
+ flex-basis: 100%;
221
+ margin-bottom: 0 !important;
202
222
  }
203
223
 
204
224
  .asd20-page-content {
@@ -213,10 +233,6 @@ export default {
213
233
  background: none;
214
234
  }
215
235
  }
216
- .notification-group--inline {
217
- flex-basis: 100%;
218
- margin-bottom: 0 !important;
219
- }
220
236
  .primary-messaging-section {
221
237
  max-width: 50vw;
222
238
  }
@@ -27,7 +27,7 @@ const wrapper = {
27
27
  floating: [],
28
28
  status: [],
29
29
  }
30
- return boolean('Show Notifications', false)
30
+ return boolean('Show Notifications', true)
31
31
  ? notifications || empty
32
32
  : empty
33
33
  },
@@ -298,6 +298,16 @@ export default {
298
298
 
299
299
  & /deep/ .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) !important;
304
+ svg {
305
+ fill: var(--color__accent) !important;
306
+ }
307
+ span {
308
+ background: var(--color__accent) !important;
309
+ }
310
+ }
301
311
  }
302
312
  .header-notifications {
303
313
  display: flex;
@@ -27,7 +27,7 @@ const wrapper = {
27
27
  floating: [],
28
28
  status: [],
29
29
  }
30
- return boolean('Show Notifications', false)
30
+ return boolean('Show Notifications', true)
31
31
  ? notifications || empty
32
32
  : empty
33
33
  },
@@ -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>
@@ -165,6 +165,18 @@ export default {
165
165
  top: space(2);
166
166
  }
167
167
  }
168
+ .asd20-notification-group--floating {
169
+ .bell {
170
+ z-index: 1000;
171
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
172
+ svg {
173
+ fill: var(--color__accent) !important;
174
+ }
175
+ span {
176
+ background: var(--color__accent) !important;
177
+ }
178
+ }
179
+ }
168
180
 
169
181
  @media (min-width: 667px) {
170
182
  .asd20-district-video-template {
@@ -170,6 +170,20 @@ 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(4);
176
+ .bell {
177
+ z-index: 1000;
178
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
179
+ svg {
180
+ fill: var(--color__accent) !important;
181
+ }
182
+ span {
183
+ background: var(--color__accent) !important;
184
+ }
185
+ }
186
+ }
173
187
 
174
188
  .asd20-file-page-section {
175
189
  background-position-y: top;
@@ -180,11 +194,23 @@ export default {
180
194
  padding: space(0) space(0);
181
195
  }
182
196
  }
197
+ @media (min-width: 470px) {
198
+ .asd20-template-file-list {
199
+ .asd20-notification-group--floating {
200
+ position: absolute;
201
+ top: space(2);
202
+ }
203
+ }
204
+ }
183
205
 
184
206
  @media (min-width: 1024px) {
185
207
  .asd20-template-file-list {
186
208
  margin-left: space(3);
187
209
  margin-top: 0;
210
+ .asd20-notification-group--floating {
211
+ position: absolute;
212
+ top: space(1);
213
+ }
188
214
  .asd20-page-content {
189
215
  margin-top: space(1);
190
216
  }
@@ -192,7 +192,7 @@ const wrapper = {
192
192
  floating: [],
193
193
  status: [],
194
194
  }
195
- return boolean('Show Notifications', false)
195
+ return boolean('Show Notifications', true)
196
196
  ? notifications || empty
197
197
  : empty
198
198
  },
@@ -291,16 +291,34 @@ export default {
291
291
  }
292
292
  .asd20-page-header {
293
293
  margin-bottom: space(0) !important;
294
+ .asd20-page-header__tools {
295
+ flex-direction: row;
296
+ .right {
297
+ order: 2;
298
+ }
299
+ .asd20-breadcrumb {
300
+ order: 1;
301
+ }
302
+ }
294
303
  }
295
304
  .notification-group--floating {
296
305
  position: absolute;
297
- right: space(0.5);
298
- top: space(2.25);
306
+ right: space(0.85);
307
+ top: space(4.25);
308
+ .bell {
309
+ z-index: 1000;
310
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
311
+ svg {
312
+ fill: var(--color__accent) !important;
313
+ }
314
+ span {
315
+ background: var(--color__accent) !important;
316
+ }
317
+ }
299
318
  }
300
319
  .notification-group--inline {
301
320
  margin: space(1);
302
321
  }
303
-
304
322
  .asd20-widgets-section {
305
323
  background: var(--website-page__alternate-background-t70);
306
324
  background-image: var(--website-texture__default);
@@ -321,6 +339,11 @@ export default {
321
339
  }
322
340
  @media (min-width: 450px) {
323
341
  .asd20-template-logins {
342
+ .notification-group--floating {
343
+ position: absolute;
344
+ right: space(0.85);
345
+ top: space(4.25);
346
+ }
324
347
  .logins-list {
325
348
  display: flex;
326
349
  flex-direction: row;
@@ -337,8 +360,8 @@ export default {
337
360
  margin-top: 0;
338
361
  .notification-group--floating {
339
362
  position: absolute;
340
- right: space(4);
341
- top: space(4.5);
363
+ right: space(1.85);
364
+ top: space(1);
342
365
  }
343
366
  .notification-group--inline {
344
367
  margin: space(2) space(3) space(1) space(3);
@@ -27,7 +27,7 @@ const wrapper = {
27
27
  floating: [],
28
28
  status: [],
29
29
  }
30
- return boolean('Show Notifications', false)
30
+ return boolean('Show Notifications', true)
31
31
  ? notifications || empty
32
32
  : empty
33
33
  },
@@ -444,6 +444,20 @@ 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(4);
450
+ .bell {
451
+ z-index: 1000;
452
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
453
+ svg {
454
+ fill: var(--color__accent) !important;
455
+ }
456
+ span {
457
+ background: var(--color__accent) !important;
458
+ }
459
+ }
460
+ }
447
461
  }
448
462
 
449
463
  .asd20-school-details {
@@ -512,12 +526,24 @@ export default {
512
526
  color: asd20-swatch('primary');
513
527
  }
514
528
  }
529
+ @media (min-width: 470px) {
530
+ .asd20-template-profile {
531
+ .asd20-notification-group--floating {
532
+ position: absolute;
533
+ top: space(2);
534
+ }
535
+ }
536
+ }
515
537
 
516
538
  @media (min-width: 1024px) {
517
539
  .asd20-template-profile {
518
540
  @include template-desktop;
519
541
  margin-left: space(3);
520
542
  margin-top: 0;
543
+ .asd20-notification-group--floating {
544
+ position: absolute;
545
+ top: space(1);
546
+ }
521
547
  .notification-group--inline {
522
548
  margin: space(2) space(3) space(1) space(3);
523
549
  }
@@ -27,7 +27,7 @@ const wrapper = {
27
27
  floating: [],
28
28
  status: [],
29
29
  }
30
- return boolean('Show Notifications', false)
30
+ return boolean('Show Notifications', true)
31
31
  ? notifications || empty
32
32
  : empty
33
33
  },
@@ -660,20 +660,27 @@ export default {
660
660
  .asd20-salary-calculator-template {
661
661
  @include typography;
662
662
  @include template;
663
- // h2 {
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(4);
673
+ .bell {
674
+ z-index: 1000;
675
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
676
+ svg {
677
+ fill: var(--color__accent) !important;
678
+ }
679
+ span {
680
+ background: var(--color__accent) !important;
681
+ }
682
+ }
683
+ }
677
684
  .salary-calculator {
678
685
  margin: space(2);
679
686
  .asd20-button {
@@ -688,11 +695,24 @@ export default {
688
695
  }
689
696
  }
690
697
 
698
+ @media (min-width: 470px) {
699
+ .asd20-salary-calculator-template {
700
+ .asd20-notification-group--floating {
701
+ position: absolute;
702
+ top: space(2);
703
+ }
704
+ }
705
+ }
706
+
691
707
  @media (min-width: 1024px) {
692
708
  .asd20-salary-calculator-template {
693
709
  @include template-desktop;
694
710
  margin-left: space(3);
695
711
  margin-top: 0;
712
+ .asd20-notification-group--floating {
713
+ position: absolute;
714
+ top: space(1);
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,18 @@ 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) !important;
214
+ svg {
215
+ fill: var(--color__accent) !important;
216
+ }
217
+ span {
218
+ background: var(--color__accent) !important;
219
+ }
220
+ }
221
+ }
210
222
 
211
223
  &::v-deep .widgets-section {
212
224
  background: var(--website-page__alternate-background-t70);
@@ -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,21 @@ 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) !important;
213
+ svg {
214
+ fill: var(--color__accent) !important;
215
+ }
216
+ span {
217
+ background: var(--color__accent) !important;
218
+ }
219
+ }
209
220
  }
210
221
 
211
222
  .asd20-quicklinks-menu {
@@ -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(4);
196
+ .bell {
197
+ z-index: 1000;
198
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
199
+ svg {
200
+ fill: var(--color__accent) !important;
201
+ }
202
+ span {
203
+ background: var(--color__accent) !important;
204
+ }
205
+ }
206
+ }
207
+ }
208
+
209
+ @media (min-width: 470px) {
210
+ .asd20-template-wayfinding {
211
+ .asd20-notification-group--floating {
212
+ position: absolute;
213
+ top: space(2);
214
+ }
215
+ }
193
216
  }
194
217
 
195
218
  @media (min-width: 1024px) {
196
219
  .asd20-template-wayfinding {
220
+ .asd20-notification-group--floating {
221
+ position: absolute;
222
+ top: space(1);
223
+ }
197
224
  @include template-desktop;
198
225
  margin-left: space(3);
199
226
  margin-top: 0;