@asd20/ui 3.2.784 → 3.2.786
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/Asd20Factoid/index.vue +2 -2
- package/src/components/organisms/Asd20ImageHeader/index.vue +3 -1
- package/src/components/organisms/Asd20NotificationGroup/index.vue +8 -4
- package/src/components/organisms/Asd20VideoHeader/index.vue +2 -0
- package/src/design/_mixins.scss +2 -2
package/package.json
CHANGED
|
@@ -100,7 +100,7 @@ $factoid-fg: var(--website-card__reverse-background-color);
|
|
|
100
100
|
box-sizing: border-box;
|
|
101
101
|
|
|
102
102
|
&__value {
|
|
103
|
-
color: var(--color__primary);
|
|
103
|
+
color: var(--color__primary-s10);
|
|
104
104
|
font-size: 2.15rem;
|
|
105
105
|
font-weight: bold;
|
|
106
106
|
small {
|
|
@@ -111,7 +111,7 @@ $factoid-fg: var(--website-card__reverse-background-color);
|
|
|
111
111
|
font-size: 0.85rem;
|
|
112
112
|
font-weight: 300;
|
|
113
113
|
// text-transform: uppercase;
|
|
114
|
-
color: var(--color__primary-
|
|
114
|
+
color: var(--color__primary-s80);
|
|
115
115
|
// white-space: nowrap;
|
|
116
116
|
opacity: 0.75;
|
|
117
117
|
}
|
|
@@ -409,7 +409,8 @@ export default {
|
|
|
409
409
|
|
|
410
410
|
h1 {
|
|
411
411
|
position: relative;
|
|
412
|
-
color: var(--website-header__title-color);
|
|
412
|
+
// color: var(--website-header__title-color);
|
|
413
|
+
color: rgb(255, 255, 255);
|
|
413
414
|
@include asd20-font(
|
|
414
415
|
1.5,
|
|
415
416
|
var(--website-typography__font-family-headlines),
|
|
@@ -440,6 +441,7 @@ export default {
|
|
|
440
441
|
}
|
|
441
442
|
|
|
442
443
|
&__lead {
|
|
444
|
+
color: rgb(235, 235, 235);
|
|
443
445
|
@include asd20-font(1, var(--website-typography__font-family-body));
|
|
444
446
|
&::v-deep a {
|
|
445
447
|
color: var(--website-header__foreground-color);
|
|
@@ -311,7 +311,8 @@ export default {
|
|
|
311
311
|
width: 100%;
|
|
312
312
|
height: 100%;
|
|
313
313
|
color: hsl(0, 0%, 0%);
|
|
314
|
-
fill: #80B3C0;
|
|
314
|
+
// fill: #80B3C0;
|
|
315
|
+
fill: var(--color__accent);
|
|
315
316
|
}
|
|
316
317
|
|
|
317
318
|
span {
|
|
@@ -357,9 +358,12 @@ export default {
|
|
|
357
358
|
border-radius: 100%;
|
|
358
359
|
background: rgba(0,0,0, 0.125);
|
|
359
360
|
&:focus {
|
|
360
|
-
box-shadow: 0 0 0
|
|
361
|
-
outline:
|
|
362
|
-
outline-offset:
|
|
361
|
+
// box-shadow: 0 0 0 2px white;
|
|
362
|
+
// outline: 2px solid white;
|
|
363
|
+
// outline-offset: -2px;
|
|
364
|
+
// box-shadow: 0 0 0 3px white, 0 0 10px 0 #477e88;
|
|
365
|
+
// outline: 3px solid #477e88;
|
|
366
|
+
// outline-offset: 0px;
|
|
363
367
|
}
|
|
364
368
|
}
|
|
365
369
|
span {
|
package/src/design/_mixins.scss
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
@mixin asd20-focus() {
|
|
36
|
-
box-shadow: inset 0 0 0 3px white, 0 0
|
|
37
|
-
outline:
|
|
36
|
+
box-shadow: inset 0 0 0 3px white, 0 0 3px 0 var(--color__accent-s10) !important;
|
|
37
|
+
outline: 2px solid var(--color__accent-s10);
|
|
38
38
|
outline-offset: -2px;
|
|
39
39
|
}
|