@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.
@@ -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 {
@@ -196,7 +196,7 @@
196
196
 
197
197
  &:hover,
198
198
  &:focus {
199
- background-color: $color-ux-table-hover-background;
199
+ background-color: $color-ux-table-zebra-background;
200
200
  }
201
201
 
202
202
  .ilo--table--body--cell {
@@ -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
- bottom: 0;
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(4px) solid $color-base-neutrals-lighter;
7
- border-left: px-to-rem(4px) solid $color-base-neutrals-lighter;
8
- border-right: px-to-rem(4px) solid $color-base-neutrals-lighter;
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%), 25%);
161
+ width: min(calc(var(--tabscount) / 1 * 100%), 100%);
162
162
  }
163
163
  }
164
164
  }
@@ -2,9 +2,13 @@
2
2
  @use "../functions" as *;
3
3
  @use "../mixins" as *;
4
4
 
5
- .ilo--tag-set {
5
+ .ilo--tags {
6
6
  list-style: none;
7
7
 
8
+ .right-to-left & {
9
+ direction: rtl;
10
+ }
11
+
8
12
  &__item {
9
13
  display: inline-block;
10
14
  margin: map-get($spacing, "horizontal-rule");
@@ -15,7 +15,7 @@
15
15
  );
16
16
  @include bordervalues("input", "formelements");
17
17
  box-sizing: border-box;
18
- font-family: $fonts-display;
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: 6px;
511
+ top: 9px;
510
512
  width: px-to-rem(138px);
511
513
  }
512
514