@asd20/ui 3.2.398 → 3.2.401
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/organisms/Asd20SchoolHomepageHeader/index.vue +16 -3
- package/src/components/templates/Asd20ArticleDigestTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20ArticleDigestTemplate/index.vue +18 -0
- package/src/components/templates/Asd20ArticleListTemplate/index.vue +18 -0
- package/src/components/templates/Asd20ArticleTemplate/index.vue +18 -1
- package/src/components/templates/Asd20DetailAlternateTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20DetailAlternateTemplate/index.vue +18 -0
- package/src/components/templates/Asd20DetailTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20DetailTemplate/index.vue +20 -12
- package/src/components/templates/Asd20DistrictHomeTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20DistrictHomeTemplate/index.vue +10 -0
- package/src/components/templates/Asd20DistrictVideoTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20DistrictVideoTemplate/index.vue +13 -1
- package/src/components/templates/Asd20FileListPageTemplate/index.vue +18 -0
- package/src/components/templates/Asd20LoginsTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20LoginsTemplate/index.vue +22 -5
- package/src/components/templates/Asd20ProfileTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20ProfileTemplate/index.vue +18 -0
- package/src/components/templates/Asd20SalaryCalculatorTemplate/index.stories.js +1 -1
- package/src/components/templates/Asd20SalaryCalculatorTemplate/index.vue +19 -8
- package/src/components/templates/Asd20SchoolHomeTemplate/index.vue +13 -1
- package/src/components/templates/Asd20SchoolHomeVideoTemplate/index.vue +12 -1
- package/src/components/templates/Asd20WayfindingTemplate/index.vue +18 -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,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(2);
|
|
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
|
}
|
|
@@ -429,6 +443,10 @@ export default {
|
|
|
429
443
|
@include template-desktop;
|
|
430
444
|
margin-left: space(3);
|
|
431
445
|
margin-top: 0;
|
|
446
|
+
.asd20-notification-group--floating {
|
|
447
|
+
position: absolute;
|
|
448
|
+
top: space(1);
|
|
449
|
+
}
|
|
432
450
|
.feed-title {
|
|
433
451
|
margin-left: 0;
|
|
434
452
|
}
|
|
@@ -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(2);
|
|
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
|
}
|
|
@@ -446,6 +460,10 @@ export default {
|
|
|
446
460
|
@include template-desktop;
|
|
447
461
|
margin-left: space(3);
|
|
448
462
|
margin-top: 0;
|
|
463
|
+
.asd20-notification-group--floating {
|
|
464
|
+
position: absolute;
|
|
465
|
+
top: space(1);
|
|
466
|
+
}
|
|
449
467
|
.feed-title {
|
|
450
468
|
margin-left: 0;
|
|
451
469
|
}
|
|
@@ -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(2);
|
|
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);
|
|
@@ -198,6 +211,10 @@ export default {
|
|
|
198
211
|
.asd20-template-article {
|
|
199
212
|
margin-left: space(3);
|
|
200
213
|
margin-top: 0;
|
|
214
|
+
.asd20-notification-group--floating {
|
|
215
|
+
position: absolute;
|
|
216
|
+
top: space(1);
|
|
217
|
+
}
|
|
201
218
|
.notification-group--inline {
|
|
202
219
|
margin: space(2) space(3) space(1) space(3);
|
|
203
220
|
}
|
|
@@ -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(2);
|
|
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);
|
|
@@ -225,6 +239,10 @@ export default {
|
|
|
225
239
|
@include template-desktop;
|
|
226
240
|
margin-left: space(3);
|
|
227
241
|
margin-top: 0;
|
|
242
|
+
.asd20-notification-group--floating {
|
|
243
|
+
position: absolute;
|
|
244
|
+
top: space(1);
|
|
245
|
+
}
|
|
228
246
|
.notification-group--inline {
|
|
229
247
|
flex-basis: 100%;
|
|
230
248
|
margin: space(2) space(3) space(0) space(3);
|
|
@@ -176,20 +176,26 @@ 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) !important;
|
|
191
|
+
svg {
|
|
192
|
+
fill: var(--color__accent) !important;
|
|
193
|
+
}
|
|
194
|
+
span {
|
|
195
|
+
background: var(--color__accent) !important;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
193
199
|
}
|
|
194
200
|
|
|
195
201
|
@media (min-width: 1024px) {
|
|
@@ -197,8 +203,14 @@ export default {
|
|
|
197
203
|
@include template-desktop;
|
|
198
204
|
margin-left: space(3);
|
|
199
205
|
margin-top: 0;
|
|
206
|
+
.asd20-notification-group--floating {
|
|
207
|
+
position: absolute;
|
|
208
|
+
top: space(1);
|
|
209
|
+
}
|
|
200
210
|
.notification-group--inline {
|
|
201
211
|
margin: space(2) space(3) space(1) space(3);
|
|
212
|
+
flex-basis: 100%;
|
|
213
|
+
margin-bottom: 0 !important;
|
|
202
214
|
}
|
|
203
215
|
|
|
204
216
|
.asd20-page-content {
|
|
@@ -213,10 +225,6 @@ export default {
|
|
|
213
225
|
background: none;
|
|
214
226
|
}
|
|
215
227
|
}
|
|
216
|
-
.notification-group--inline {
|
|
217
|
-
flex-basis: 100%;
|
|
218
|
-
margin-bottom: 0 !important;
|
|
219
|
-
}
|
|
220
228
|
.primary-messaging-section {
|
|
221
229
|
max-width: 50vw;
|
|
222
230
|
}
|
|
@@ -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;
|
|
@@ -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(2);
|
|
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;
|
|
@@ -185,6 +199,10 @@ export default {
|
|
|
185
199
|
.asd20-template-file-list {
|
|
186
200
|
margin-left: space(3);
|
|
187
201
|
margin-top: 0;
|
|
202
|
+
.asd20-notification-group--floating {
|
|
203
|
+
position: absolute;
|
|
204
|
+
top: space(1);
|
|
205
|
+
}
|
|
188
206
|
.asd20-page-content {
|
|
189
207
|
margin-top: space(1);
|
|
190
208
|
}
|
|
@@ -291,16 +291,28 @@ export default {
|
|
|
291
291
|
}
|
|
292
292
|
.asd20-page-header {
|
|
293
293
|
margin-bottom: space(0) !important;
|
|
294
|
+
.asd20-page-header__tools {
|
|
295
|
+
|
|
296
|
+
}
|
|
294
297
|
}
|
|
295
298
|
.notification-group--floating {
|
|
296
299
|
position: absolute;
|
|
297
|
-
right: space(0.
|
|
298
|
-
top: space(2
|
|
300
|
+
right: space(0.85);
|
|
301
|
+
top: space(2);
|
|
302
|
+
.bell {
|
|
303
|
+
z-index: 1000;
|
|
304
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
|
|
305
|
+
svg {
|
|
306
|
+
fill: var(--color__accent) !important;
|
|
307
|
+
}
|
|
308
|
+
span {
|
|
309
|
+
background: var(--color__accent) !important;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
299
312
|
}
|
|
300
313
|
.notification-group--inline {
|
|
301
314
|
margin: space(1);
|
|
302
315
|
}
|
|
303
|
-
|
|
304
316
|
.asd20-widgets-section {
|
|
305
317
|
background: var(--website-page__alternate-background-t70);
|
|
306
318
|
background-image: var(--website-texture__default);
|
|
@@ -321,6 +333,11 @@ export default {
|
|
|
321
333
|
}
|
|
322
334
|
@media (min-width: 450px) {
|
|
323
335
|
.asd20-template-logins {
|
|
336
|
+
// .notification-group--floating {
|
|
337
|
+
// position: absolute;
|
|
338
|
+
// right: space(0.85);
|
|
339
|
+
// top: space(4.25);
|
|
340
|
+
// }
|
|
324
341
|
.logins-list {
|
|
325
342
|
display: flex;
|
|
326
343
|
flex-direction: row;
|
|
@@ -337,8 +354,8 @@ export default {
|
|
|
337
354
|
margin-top: 0;
|
|
338
355
|
.notification-group--floating {
|
|
339
356
|
position: absolute;
|
|
340
|
-
right: space(
|
|
341
|
-
top: space(
|
|
357
|
+
right: space(1.85);
|
|
358
|
+
top: space(1);
|
|
342
359
|
}
|
|
343
360
|
.notification-group--inline {
|
|
344
361
|
margin: space(2) space(3) space(1) space(3);
|
|
@@ -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(2);
|
|
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 {
|
|
@@ -518,6 +532,10 @@ export default {
|
|
|
518
532
|
@include template-desktop;
|
|
519
533
|
margin-left: space(3);
|
|
520
534
|
margin-top: 0;
|
|
535
|
+
.asd20-notification-group--floating {
|
|
536
|
+
position: absolute;
|
|
537
|
+
top: space(1);
|
|
538
|
+
}
|
|
521
539
|
.notification-group--inline {
|
|
522
540
|
margin: space(2) space(3) space(1) space(3);
|
|
523
541
|
}
|
|
@@ -660,20 +660,27 @@ 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) !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 {
|
|
@@ -693,6 +700,10 @@ export default {
|
|
|
693
700
|
@include template-desktop;
|
|
694
701
|
margin-left: space(3);
|
|
695
702
|
margin-top: 0;
|
|
703
|
+
.asd20-notification-group--floating {
|
|
704
|
+
position: absolute;
|
|
705
|
+
top: space(1);
|
|
706
|
+
}
|
|
696
707
|
.notification-group--inline {
|
|
697
708
|
margin: space(2) space(3) space(1) space(3);
|
|
698
709
|
}
|
|
@@ -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,28 @@ 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) !important;
|
|
199
|
+
svg {
|
|
200
|
+
fill: var(--color__accent) !important;
|
|
201
|
+
}
|
|
202
|
+
span {
|
|
203
|
+
background: var(--color__accent) !important;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
193
207
|
}
|
|
194
208
|
|
|
195
209
|
@media (min-width: 1024px) {
|
|
196
210
|
.asd20-template-wayfinding {
|
|
211
|
+
.asd20-notification-group--floating {
|
|
212
|
+
position: absolute;
|
|
213
|
+
top: space(1);
|
|
214
|
+
}
|
|
197
215
|
@include template-desktop;
|
|
198
216
|
margin-left: space(3);
|
|
199
217
|
margin-top: 0;
|