@ilo-org/styles 0.1.4 → 0.1.6
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/build/css/components/index.css +232 -107
- package/build/css/components/index.css.map +1 -1
- package/build/css/index.css +232 -107
- package/build/css/index.css.map +1 -1
- package/build/css/monorepo.css +232 -107
- package/build/css/monorepo.css.map +1 -1
- package/build/minified/index.css +1 -1
- package/build/minified/index.css.map +1 -1
- package/build/minified/monorepo.css +1 -1
- package/build/minified/monorepo.css.map +1 -1
- package/package.json +3 -3
- package/scss/components/_accordion.scss +1 -0
- package/scss/components/_checkbox.scss +12 -20
- package/scss/components/_credit.scss +1 -1
- package/scss/components/_dropdown.scss +1 -0
- package/scss/components/_footer.scss +6 -16
- package/scss/components/_hero.scss +10 -0
- package/scss/components/_linklist.scss +1 -1
- package/scss/components/_loading.scss +2 -2
- package/scss/components/_profile.scss +45 -0
- package/scss/components/_radio.scss +1 -0
- package/scss/components/_readmore.scss +2 -2
- package/scss/components/_richtext.scss +26 -0
- package/scss/components/_table.scss +1 -1
- package/scss/components/_tableofcontents.scss +3 -2
- package/scss/components/_tabs.scss +4 -4
- package/scss/components/_tag.scss +5 -1
- package/scss/components/_textarea.scss +1 -1
- package/scss/components/_video.scss +4 -2
|
@@ -9,6 +9,32 @@
|
|
|
9
9
|
|
|
10
10
|
a {
|
|
11
11
|
@include linkstyles();
|
|
12
|
+
border: none;
|
|
13
|
+
text-decoration: underline;
|
|
14
|
+
|
|
15
|
+
&:visited {
|
|
16
|
+
border: none;
|
|
17
|
+
text-decoration: underline;
|
|
18
|
+
text-decoration-color: map-get($color, "link", "underline", "visited");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&:hover {
|
|
22
|
+
border: none;
|
|
23
|
+
text-decoration: underline;
|
|
24
|
+
text-decoration-color: map-get($color, "link", "underline", "hover");
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&:active {
|
|
28
|
+
border: none;
|
|
29
|
+
text-decoration: underline;
|
|
30
|
+
text-decoration-color: map-get($color, "link", "underline", "active");
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:focus {
|
|
34
|
+
border: none;
|
|
35
|
+
text-decoration: underline;
|
|
36
|
+
text-decoration-color: map-get($color, "link", "underline", "focus");
|
|
37
|
+
}
|
|
12
38
|
}
|
|
13
39
|
|
|
14
40
|
img {
|
|
@@ -26,11 +26,13 @@
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
&--headline {
|
|
29
|
+
border-bottom: px-to-rem(3px) solid $color-base-neutrals-lighter;
|
|
29
30
|
margin-bottom: px-to-rem($spacing-padding-3);
|
|
30
31
|
margin-top: px-to-rem(9px);
|
|
31
32
|
@include font-styles("base");
|
|
32
33
|
font-family: $fonts-display;
|
|
33
34
|
font-weight: 700;
|
|
35
|
+
padding-bottom: px-to-rem($spacing-padding-2);
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
&--wrapper {
|
|
@@ -75,7 +77,6 @@
|
|
|
75
77
|
|
|
76
78
|
&--modal {
|
|
77
79
|
display: none;
|
|
78
|
-
position: relative;
|
|
79
80
|
|
|
80
81
|
& > * {
|
|
81
82
|
opacity: 0;
|
|
@@ -102,7 +103,7 @@
|
|
|
102
103
|
}
|
|
103
104
|
|
|
104
105
|
.toc--modal--close {
|
|
105
|
-
|
|
106
|
+
top: 0;
|
|
106
107
|
height: px-to-rem(40px);
|
|
107
108
|
right: 0;
|
|
108
109
|
position: absolute;
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
@import "../mixins";
|
|
4
4
|
|
|
5
5
|
.ilo--tabs {
|
|
6
|
-
border-bottom: px-to-rem(
|
|
7
|
-
border-left: px-to-rem(
|
|
8
|
-
border-right: px-to-rem(
|
|
6
|
+
border-bottom: px-to-rem(3px) solid $color-base-neutrals-lighter;
|
|
7
|
+
border-left: px-to-rem(3px) solid $color-base-neutrals-lighter;
|
|
8
|
+
border-right: px-to-rem(3px) solid $color-base-neutrals-lighter;
|
|
9
9
|
|
|
10
10
|
&:not(.tabs--js) {
|
|
11
11
|
.ilo--tabs--selection {
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
&--item {
|
|
161
|
-
width: min(calc(var(--tabscount) / 1 * 100%),
|
|
161
|
+
width: min(calc(var(--tabscount) / 1 * 100%), 100%);
|
|
162
162
|
}
|
|
163
163
|
}
|
|
164
164
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
);
|
|
16
16
|
@include bordervalues("input", "formelements");
|
|
17
17
|
box-sizing: border-box;
|
|
18
|
-
font-family: $fonts-
|
|
18
|
+
font-family: $fonts-copy;
|
|
19
19
|
font-weight: map-get($type, "weights", "section");
|
|
20
20
|
@include font-styles("label-medium");
|
|
21
21
|
height: px-to-rem(
|
|
@@ -425,7 +425,8 @@
|
|
|
425
425
|
|
|
426
426
|
&--volume,
|
|
427
427
|
.vjs-volume-panel {
|
|
428
|
-
bottom: 1px;
|
|
428
|
+
border-bottom: 1px solid;
|
|
429
|
+
bottom: 0;
|
|
429
430
|
display: none;
|
|
430
431
|
flex-direction: column;
|
|
431
432
|
height: 140px;
|
|
@@ -499,6 +500,7 @@
|
|
|
499
500
|
&--setvolume,
|
|
500
501
|
.vjs-volume-control {
|
|
501
502
|
background: $color-ux-video-controls-hover-background;
|
|
503
|
+
border-left: 3px solid rgb(184, 196, 204);
|
|
502
504
|
display: none;
|
|
503
505
|
height: px-to-rem($spacing-ux-video-controls-height);
|
|
504
506
|
order: 1;
|
|
@@ -506,7 +508,7 @@
|
|
|
506
508
|
position: absolute;
|
|
507
509
|
transform: rotate(270deg);
|
|
508
510
|
transform-origin: -4px -4px;
|
|
509
|
-
top:
|
|
511
|
+
top: 9px;
|
|
510
512
|
width: px-to-rem(138px);
|
|
511
513
|
}
|
|
512
514
|
|