@asd20/ui 3.2.898 → 3.2.899
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 +1 -1
- package/src/components/atoms/Asd20SelectInput/index.vue +1 -1
- package/src/components/organisms/Asd20ImageHeader/index.vue +1 -1
- package/src/components/organisms/Asd20NotificationGroup/index.vue +11 -10
- package/src/components/organisms/Asd20PageHeader/index.vue +2 -2
- package/src/components/organisms/Asd20SchoolHomepageHeader/index.vue +1 -0
package/package.json
CHANGED
|
@@ -322,7 +322,7 @@ export default {
|
|
|
322
322
|
width: max-content;
|
|
323
323
|
background: rgba(255, 255, 255, 0.9);
|
|
324
324
|
border-radius: 3rem;
|
|
325
|
-
padding: 0
|
|
325
|
+
padding: 0 1em 0 0.5em;
|
|
326
326
|
&::v-deep .asd20-select-input {
|
|
327
327
|
color: var(--website-page__foreground-color) !important;
|
|
328
328
|
}
|
|
@@ -293,8 +293,8 @@ export default {
|
|
|
293
293
|
display: flex;
|
|
294
294
|
justify-content: center;
|
|
295
295
|
align-items: center;
|
|
296
|
-
background:
|
|
297
|
-
color:
|
|
296
|
+
background: #ffffff;
|
|
297
|
+
color: #000000;
|
|
298
298
|
font-size: 0.375rem;
|
|
299
299
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.0625);
|
|
300
300
|
border-radius: 50%;
|
|
@@ -310,7 +310,7 @@ export default {
|
|
|
310
310
|
svg {
|
|
311
311
|
width: 100%;
|
|
312
312
|
height: 100%;
|
|
313
|
-
color:
|
|
313
|
+
color: #000000;
|
|
314
314
|
// fill: #80B3C0;
|
|
315
315
|
fill: var(--color__accent);
|
|
316
316
|
}
|
|
@@ -324,7 +324,7 @@ export default {
|
|
|
324
324
|
display: flex;
|
|
325
325
|
justify-content: center;
|
|
326
326
|
align-items: center;
|
|
327
|
-
background:
|
|
327
|
+
background: #ffffff;
|
|
328
328
|
color: var(--color__primary);
|
|
329
329
|
font-size: 0.75rem;
|
|
330
330
|
font-weight: bold;
|
|
@@ -339,7 +339,8 @@ export default {
|
|
|
339
339
|
align-items: center;
|
|
340
340
|
font-size: 0.85rem;
|
|
341
341
|
z-index: 15;
|
|
342
|
-
|
|
342
|
+
background: rgba(0, 0, 0, 0.1);
|
|
343
|
+
border-radius: 25%;
|
|
343
344
|
font-family: sans-serif;
|
|
344
345
|
|
|
345
346
|
button {
|
|
@@ -358,7 +359,7 @@ export default {
|
|
|
358
359
|
cursor: pointer;
|
|
359
360
|
outline: none;
|
|
360
361
|
border-radius: 100%;
|
|
361
|
-
background: rgba(0,0,0, 0.125);
|
|
362
|
+
background: rgba(0, 0, 0, 0.125);
|
|
362
363
|
&:focus {
|
|
363
364
|
// box-shadow: 0 0 0 2px white;
|
|
364
365
|
// outline: 2px solid white;
|
|
@@ -375,7 +376,7 @@ export default {
|
|
|
375
376
|
|
|
376
377
|
&--floating .pagination {
|
|
377
378
|
margin-right: 0.5rem;
|
|
378
|
-
background: rgba(255,255,255,0.85);
|
|
379
|
+
background: rgba(255, 255, 255, 0.85);
|
|
379
380
|
align-self: stretch;
|
|
380
381
|
margin-right: -2rem;
|
|
381
382
|
// z-index: -1;
|
|
@@ -473,9 +474,9 @@ export default {
|
|
|
473
474
|
top: 1.125rem;
|
|
474
475
|
right: 50%;
|
|
475
476
|
transform: translatex(50%);
|
|
476
|
-
color:
|
|
477
|
+
color: #ffffff;
|
|
477
478
|
button {
|
|
478
|
-
fill:
|
|
479
|
+
fill: #ffffff;
|
|
479
480
|
}
|
|
480
481
|
}
|
|
481
482
|
&--banner .notifications {
|
|
@@ -531,7 +532,7 @@ export default {
|
|
|
531
532
|
justify-content: flex-start;
|
|
532
533
|
flex-wrap: wrap;
|
|
533
534
|
order: -2;
|
|
534
|
-
background:
|
|
535
|
+
background: #ffffff;
|
|
535
536
|
}
|
|
536
537
|
}
|
|
537
538
|
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
</div>
|
|
85
85
|
<div v-if="lead" class="asd20-page-header__lead">
|
|
86
86
|
<span v-html="lead"></span>
|
|
87
|
-
<a v-
|
|
87
|
+
<a v-if="detailLink && !isDetailPage" :href="detailLink">
|
|
88
88
|
{{ detailLinkLabel }}
|
|
89
89
|
</a>
|
|
90
90
|
</div>
|
|
@@ -355,7 +355,7 @@ export default {
|
|
|
355
355
|
width: max-content;
|
|
356
356
|
background: rgba(255, 255, 255, 0.9);
|
|
357
357
|
border-radius: 3rem;
|
|
358
|
-
padding: 0
|
|
358
|
+
padding: 0 1em 0 0.5em;
|
|
359
359
|
&::v-deep .asd20-icon {
|
|
360
360
|
width: 32px !important;
|
|
361
361
|
height: 32px !important;
|