@asd20/ui 3.2.1036 → 3.2.1037
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
CHANGED
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
<template slot="top">
|
|
85
85
|
<div class="notification-translation-container">
|
|
86
86
|
<div class="language-wrapper">
|
|
87
|
-
<client-only>
|
|
87
|
+
<!-- <client-only>
|
|
88
88
|
<a
|
|
89
89
|
v-if="activeNotificationsByType.status.length > 0"
|
|
90
90
|
class="weather-link"
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
@toggle-all="$emit('toggle-all')"
|
|
98
98
|
/>
|
|
99
99
|
</a>
|
|
100
|
-
</client-only>
|
|
100
|
+
</client-only> -->
|
|
101
101
|
<client-only>
|
|
102
102
|
<Asd20BlockSchedule
|
|
103
103
|
v-if="blockEvent"
|
|
@@ -118,7 +118,11 @@
|
|
|
118
118
|
<!-- Floating Notifications -->
|
|
119
119
|
<client-only>
|
|
120
120
|
<asd20-notification-group
|
|
121
|
-
class="
|
|
121
|
+
:class="
|
|
122
|
+
!blockEvent
|
|
123
|
+
? 'asd20-notification-group--floating no-block-widget'
|
|
124
|
+
: 'asd20-notification-group--floating'
|
|
125
|
+
"
|
|
122
126
|
:notifications="activeNotificationsByType.floating"
|
|
123
127
|
:total-dismissed-notifications="totalDismissedNotifications"
|
|
124
128
|
group-type="floating"
|
|
@@ -319,7 +323,7 @@ export default {
|
|
|
319
323
|
flex-wrap: wrap;
|
|
320
324
|
justify-content: flex-end;
|
|
321
325
|
width: 100%;
|
|
322
|
-
margin: 0
|
|
326
|
+
margin: 0 0.5rem;
|
|
323
327
|
.language-wrapper {
|
|
324
328
|
display: flex;
|
|
325
329
|
flex-direction: row;
|
|
@@ -345,6 +349,10 @@ export default {
|
|
|
345
349
|
}
|
|
346
350
|
}
|
|
347
351
|
}
|
|
352
|
+
.no-block-widget {
|
|
353
|
+
position: absolute;
|
|
354
|
+
top: 0;
|
|
355
|
+
}
|
|
348
356
|
}
|
|
349
357
|
|
|
350
358
|
.asd20-language-loader {
|
|
@@ -379,12 +387,17 @@ export default {
|
|
|
379
387
|
@media (min-width: 667px) {
|
|
380
388
|
.asd20-school-home-template {
|
|
381
389
|
.notification-translation-container {
|
|
390
|
+
margin: 0 1.5rem;
|
|
391
|
+
justify-content: flex-end;
|
|
382
392
|
flex-wrap: nowrap;
|
|
383
393
|
.language-wrapper {
|
|
384
394
|
justify-content: flex-start;
|
|
385
395
|
margin-bottom: 0;
|
|
386
396
|
}
|
|
387
|
-
|
|
397
|
+
.no-block-widget {
|
|
398
|
+
position: relative;
|
|
399
|
+
top: unset;
|
|
400
|
+
}
|
|
388
401
|
}
|
|
389
402
|
}
|
|
390
403
|
}
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
<template slot="top">
|
|
82
82
|
<div class="notification-translation-container">
|
|
83
83
|
<div class="language-wrapper">
|
|
84
|
-
<client-only>
|
|
84
|
+
<!-- <client-only>
|
|
85
85
|
<a
|
|
86
86
|
v-if="activeNotificationsByType.status.length > 0"
|
|
87
87
|
class="weather-link"
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
@toggle-all="$emit('toggle-all')"
|
|
96
96
|
/>
|
|
97
97
|
</a>
|
|
98
|
-
</client-only>
|
|
98
|
+
</client-only> -->
|
|
99
99
|
|
|
100
100
|
<client-only>
|
|
101
101
|
<Asd20BlockSchedule
|
|
@@ -118,7 +118,11 @@
|
|
|
118
118
|
<!-- Floating Notifications -->
|
|
119
119
|
<client-only>
|
|
120
120
|
<asd20-notification-group
|
|
121
|
-
class="
|
|
121
|
+
:class="
|
|
122
|
+
!blockEvent
|
|
123
|
+
? 'asd20-notification-group--floating no-block-widget'
|
|
124
|
+
: 'asd20-notification-group--floating'
|
|
125
|
+
"
|
|
122
126
|
:notifications="activeNotificationsByType.floating"
|
|
123
127
|
:total-dismissed-notifications="totalDismissedNotifications"
|
|
124
128
|
group-type="floating"
|
|
@@ -302,6 +306,9 @@ export default {
|
|
|
302
306
|
position: absolute;
|
|
303
307
|
top: 3.5rem;
|
|
304
308
|
}
|
|
309
|
+
.no-block-widget {
|
|
310
|
+
top: 0;
|
|
311
|
+
}
|
|
305
312
|
.asd20-language-loader {
|
|
306
313
|
order: 1;
|
|
307
314
|
}
|