@ilo-org/styles 1.1.0 → 1.2.0
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/README.md +3 -0
- package/css/components/accordion.css +1 -1
- package/css/components/breadcrumb.css +1 -1
- package/css/components/button.css +1 -1
- package/css/components/callout.css +1 -1
- package/css/components/card.css +1 -1
- package/css/components/checkbox.css +1 -1
- package/css/components/contextmenu.css +1 -1
- package/css/components/datacard.css +1 -1
- package/css/components/dropdown.css +1 -1
- package/css/components/featurecard.css +1 -1
- package/css/components/fieldset.css +1 -1
- package/css/components/file-upload.css +1 -1
- package/css/components/footer.css +1 -1
- package/css/components/formcontrol.css +1 -1
- package/css/components/heading.css +1 -1
- package/css/components/herocard.css +1 -1
- package/css/components/input.css +1 -1
- package/css/components/linklist.css +1 -1
- package/css/components/list.css +1 -1
- package/css/components/loading.css +1 -1
- package/css/components/logo.css +1 -1
- package/css/components/navigation.css +1 -1
- package/css/components/pagination.css +1 -1
- package/css/components/profile.css +1 -1
- package/css/components/readmore.css +1 -1
- package/css/components/richtext.css +1 -1
- package/css/components/searchfield.css +1 -1
- package/css/components/socialmedia.css +1 -1
- package/css/components/statcard.css +1 -1
- package/css/components/table.css +1 -1
- package/css/components/tableofcontents.css +1 -1
- package/css/components/tabs.css +1 -1
- package/css/components/tag.css +1 -1
- package/css/components/textarea.css +1 -1
- package/css/components/textinput.css +1 -1
- package/css/components/tooltip.css +1 -1
- package/css/global.css +1 -1
- package/css/global.css.map +1 -1
- package/css/index.css +2 -2
- package/css/index.css.map +1 -1
- package/css/monorepo.css +2 -2
- package/css/monorepo.css.map +1 -1
- package/package.json +2 -2
- package/scss/_mixins.scss +1 -1
- package/scss/_typography.scss +19 -22
- package/scss/_typographymonorepo.scss +19 -22
- package/scss/components/_accordion.scss +1 -1
- package/scss/components/_breadcrumb.scss +1 -1
- package/scss/components/_button.scss +145 -198
- package/scss/components/_callout.scss +50 -50
- package/scss/components/_card.scss +1 -1
- package/scss/components/_contextmenu.scss +1 -1
- package/scss/components/_datacard.scss +1 -1
- package/scss/components/_dropdown.scss +1 -1
- package/scss/components/_featurecard.scss +1 -1
- package/scss/components/_fieldset.scss +2 -2
- package/scss/components/_file-upload.scss +2 -2
- package/scss/components/_footer.scss +4 -4
- package/scss/components/_formcontrol.scss +4 -4
- package/scss/components/_heading.scss +1 -1
- package/scss/components/_herocard.scss +1 -1
- package/scss/components/_input.scss +1 -1
- package/scss/components/_linklist.scss +3 -3
- package/scss/components/_list.scss +1 -1
- package/scss/components/_loading.scss +1 -1
- package/scss/components/_logo.scss +1 -1
- package/scss/components/_navigation.scss +10 -10
- package/scss/components/_pagination.scss +2 -2
- package/scss/components/_profile.scss +4 -4
- package/scss/components/_readmore.scss +1 -1
- package/scss/components/_richtext.scss +3 -3
- package/scss/components/_socialmedia.scss +1 -1
- package/scss/components/_statcard.scss +1 -1
- package/scss/components/_table.scss +4 -4
- package/scss/components/_tableofcontents.scss +2 -2
- package/scss/components/_tabs.scss +1 -1
- package/scss/components/_tag.scss +1 -1
- package/scss/components/_textarea.scss +1 -1
- package/scss/components/_textinput.scss +1 -1
- package/scss/components/_tooltip.scss +1 -1
- package/scss/components/index.scss +0 -1
- package/scss/index.scss +3 -0
- package/scss/theme/_foundation.scss +33 -7
- package/css/components/icon.css +0 -1
- package/scss/components/_icon.scss +0 -6
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
@use "../tokens" as *;
|
|
2
2
|
@use "../functions" as *;
|
|
3
3
|
@import "../mixins";
|
|
4
|
+
@import "../config";
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
.#{$prefix}--callout {
|
|
6
7
|
display: flex;
|
|
7
8
|
transition: max-height 225ms ease-out;
|
|
8
|
-
$
|
|
9
|
+
$callout: &;
|
|
9
10
|
|
|
10
11
|
&--collapse:not(.ilo--callout--open) {
|
|
11
12
|
max-height: 64px;
|
|
@@ -16,55 +17,58 @@
|
|
|
16
17
|
max-height: 300px;
|
|
17
18
|
overflow: hidden;
|
|
18
19
|
|
|
19
|
-
#{$
|
|
20
|
+
#{$callout}--toggle--icon {
|
|
20
21
|
transform: translateY(-50%) rotate(180deg);
|
|
21
22
|
}
|
|
22
23
|
}
|
|
23
24
|
|
|
24
|
-
|
|
25
|
+
&__sidebar {
|
|
25
26
|
display: flex;
|
|
26
27
|
flex-direction: column;
|
|
27
28
|
align-items: center;
|
|
28
29
|
padding: spacing(5) spacing(2);
|
|
29
30
|
width: px-to-rem(40px);
|
|
30
31
|
|
|
31
|
-
#{$
|
|
32
|
+
#{$callout}__icon {
|
|
32
33
|
margin: spacing(1);
|
|
33
34
|
}
|
|
34
35
|
}
|
|
35
36
|
|
|
36
|
-
|
|
37
|
+
&__content {
|
|
37
38
|
padding: spacing(6);
|
|
38
39
|
width: 100%;
|
|
39
|
-
font-size: px-to-rem(
|
|
40
|
+
font-size: px-to-rem(14px);
|
|
40
41
|
}
|
|
41
42
|
|
|
42
|
-
|
|
43
|
+
&__header {
|
|
43
44
|
display: flex;
|
|
44
45
|
justify-content: space-between;
|
|
45
|
-
padding-
|
|
46
|
+
padding-block-end: spacing(3);
|
|
46
47
|
}
|
|
47
48
|
|
|
48
|
-
|
|
49
|
+
&__title {
|
|
49
50
|
@include font-styles("nav-bold-b");
|
|
50
|
-
|
|
51
|
-
font-family: $fonts-display;
|
|
51
|
+
font-family: var(--ilo-fonts-display);
|
|
52
52
|
font-weight: 700;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
+
&__description {
|
|
56
|
+
font-weight: 400;
|
|
57
|
+
}
|
|
58
|
+
|
|
55
59
|
&--toggle {
|
|
56
60
|
@include font-styles("nav-bold-b");
|
|
57
61
|
|
|
58
62
|
background: none;
|
|
59
63
|
border: none;
|
|
60
|
-
color:
|
|
64
|
+
color: var(--ilo-color-blue-dark);
|
|
61
65
|
cursor: pointer;
|
|
62
|
-
font-family:
|
|
66
|
+
font-family: var(--ilo-fonts-display);
|
|
63
67
|
font-weight: 500;
|
|
64
|
-
padding-
|
|
68
|
+
padding-inline-end: spacing(8);
|
|
65
69
|
position: relative;
|
|
66
70
|
|
|
67
|
-
|
|
71
|
+
&__icon {
|
|
68
72
|
@include dataurlicon("arrow", $brand-ilo-dark-blue);
|
|
69
73
|
|
|
70
74
|
background-position: right;
|
|
@@ -80,8 +84,8 @@
|
|
|
80
84
|
}
|
|
81
85
|
}
|
|
82
86
|
|
|
83
|
-
|
|
84
|
-
padding-
|
|
87
|
+
&__footer {
|
|
88
|
+
padding-block-start: spacing(5);
|
|
85
89
|
}
|
|
86
90
|
|
|
87
91
|
.icon {
|
|
@@ -91,60 +95,56 @@
|
|
|
91
95
|
height: 16px;
|
|
92
96
|
width: 16px;
|
|
93
97
|
|
|
94
|
-
|
|
95
|
-
background-color:
|
|
96
|
-
|
|
97
|
-
@include dataurlicon("error", $color-ux-notification-icon);
|
|
98
|
+
&__error {
|
|
99
|
+
background-color: var(--ilo-color-notification-type-error);
|
|
100
|
+
@include dataurlicon("error", "white");
|
|
98
101
|
}
|
|
99
102
|
|
|
100
|
-
|
|
101
|
-
background-color:
|
|
102
|
-
|
|
103
|
-
@include dataurlicon("info", $color-ux-notification-icon);
|
|
103
|
+
&__info {
|
|
104
|
+
background-color: var(--ilo-color-notification-type-info);
|
|
105
|
+
@include dataurlicon("info", "white");
|
|
104
106
|
}
|
|
105
107
|
|
|
106
|
-
|
|
107
|
-
background-color:
|
|
108
|
-
|
|
109
|
-
@include dataurlicon("success", $color-ux-notification-icon);
|
|
108
|
+
&__success {
|
|
109
|
+
background-color: var(--ilo-color-notification-type-success);
|
|
110
|
+
@include dataurlicon("success", "white");
|
|
110
111
|
}
|
|
111
112
|
|
|
112
|
-
|
|
113
|
-
background-color:
|
|
114
|
-
|
|
115
|
-
@include dataurlicon("warning", $color-ux-notification-icon);
|
|
113
|
+
&__warning {
|
|
114
|
+
background-color: var(--ilo-color-notification-type-warning);
|
|
115
|
+
@include dataurlicon("warning", "white");
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
-
|
|
120
|
-
background:
|
|
119
|
+
&__error {
|
|
120
|
+
background: var(--ilo-color-red-ramp);
|
|
121
121
|
|
|
122
|
-
#{$
|
|
123
|
-
background:
|
|
122
|
+
#{$callout}__sidebar {
|
|
123
|
+
background: var(--ilo-color-red);
|
|
124
124
|
}
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
|
|
128
|
-
background:
|
|
127
|
+
&__info {
|
|
128
|
+
background: var(--ilo-color-blue-ramp);
|
|
129
129
|
|
|
130
|
-
#{$
|
|
131
|
-
background:
|
|
130
|
+
#{$callout}__sidebar {
|
|
131
|
+
background: var(--ilo-color-blue);
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
|
|
136
|
-
background:
|
|
135
|
+
&__success {
|
|
136
|
+
background: var(--ilo-ramp-green);
|
|
137
137
|
|
|
138
|
-
#{$
|
|
139
|
-
background:
|
|
138
|
+
#{$callout}__sidebar {
|
|
139
|
+
background: var(--ilo-color-green);
|
|
140
140
|
}
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
|
|
144
|
-
background:
|
|
143
|
+
&__warning {
|
|
144
|
+
background: var(--ilo-color-yellow-ramp);
|
|
145
145
|
|
|
146
|
-
#{$
|
|
147
|
-
background:
|
|
146
|
+
#{$callout}__sidebar {
|
|
147
|
+
background: var(--ilo-color-yellow);
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
150
|
}
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
border-bottom: px-to-rem($borders-base) solid $color-base-neutrals-white;
|
|
60
60
|
color: map-get($color, "link", "text", "default");
|
|
61
61
|
display: inline-block;
|
|
62
|
-
font-family:
|
|
62
|
+
font-family: var(--ilo-fonts-copy);
|
|
63
63
|
font-weight: map-get($type, "weights", "section");
|
|
64
64
|
padding: spacing(4) spacing(2);
|
|
65
65
|
text-decoration: none;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
@include bordervalues("input", "formelements");
|
|
17
17
|
border-radius: 0;
|
|
18
18
|
box-sizing: content-box;
|
|
19
|
-
font-family:
|
|
19
|
+
font-family: var(--ilo-fonts-copy);
|
|
20
20
|
font-weight: map-get($type, "weights", "section");
|
|
21
21
|
@include font-styles("label-medium");
|
|
22
22
|
height: px-to-rem(45px);
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
&--legend {
|
|
30
|
-
font-family:
|
|
30
|
+
font-family: var(--ilo-fonts-display);
|
|
31
31
|
font-weight: map-get($type, "weights", "label");
|
|
32
32
|
@include font-styles("label-medium");
|
|
33
33
|
}
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
|
|
83
83
|
&--helper,
|
|
84
84
|
&__error {
|
|
85
|
-
font-family:
|
|
85
|
+
font-family: var(--ilo-fonts-copy);
|
|
86
86
|
@include font-styles("body-xxs");
|
|
87
87
|
@include textmargin(
|
|
88
88
|
"margin-top",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
color: map-get($color, "ux", "labels", "actionable");
|
|
19
19
|
content: attr(data-label);
|
|
20
20
|
display: inline-block;
|
|
21
|
-
font-family:
|
|
21
|
+
font-family: var(--ilo-fonts-display);
|
|
22
22
|
font-weight: map-get($type, "weights", "label");
|
|
23
23
|
@include borderradius("button");
|
|
24
24
|
@include boxpadding("button", "medium");
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
background-color: $color-formelements-uploadedfile-default-background;
|
|
89
89
|
@include bordervalues("uploadedfile", "formelements", "default");
|
|
90
90
|
box-sizing: border-box;
|
|
91
|
-
font-family:
|
|
91
|
+
font-family: var(--ilo-fonts-display);
|
|
92
92
|
font-weight: map-get($type, "weights", "section");
|
|
93
93
|
@include font-styles("label-medium");
|
|
94
94
|
height: px-to-rem(48px);
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
|
|
107
107
|
&--headline {
|
|
108
108
|
color: $color-base-neutrals-white;
|
|
109
|
-
font-family:
|
|
109
|
+
font-family: var(--ilo-fonts-display);
|
|
110
110
|
font-weight: map-get($type, "weights", "label");
|
|
111
111
|
@include font-styles("body-small");
|
|
112
112
|
line-height: px-to-rem(21.6px);
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
|
|
124
124
|
&--subhead {
|
|
125
125
|
color: #bedcfa;
|
|
126
|
-
font-family:
|
|
126
|
+
font-family: var(--ilo-fonts-display);
|
|
127
127
|
font-weight: map-get($type, "weights", "section");
|
|
128
128
|
margin-top: spacing(1);
|
|
129
129
|
@include font-styles("body-xxs");
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
.secondarylinks {
|
|
161
161
|
color: $color-base-neutrals-medium;
|
|
162
162
|
display: inline;
|
|
163
|
-
font-family:
|
|
163
|
+
font-family: var(--ilo-fonts-copy);
|
|
164
164
|
@include font-styles("body-xxs");
|
|
165
165
|
}
|
|
166
166
|
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
display: flex;
|
|
210
210
|
flex-flow: row nowrap;
|
|
211
211
|
color: $color-ux-labels-actionable;
|
|
212
|
-
font-family:
|
|
212
|
+
font-family: var(--ilo-fonts-display);
|
|
213
213
|
@include font-styles("label-medium");
|
|
214
214
|
position: relative;
|
|
215
215
|
text-decoration: none;
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
|
|
131
131
|
&__size {
|
|
132
132
|
&__small {
|
|
133
|
-
font-family:
|
|
133
|
+
font-family: var(--ilo-fonts-copy);
|
|
134
134
|
font-size: px-to-rem(map-get($type, "label-small", "size"));
|
|
135
135
|
letter-spacing: px-to-rem(
|
|
136
136
|
map-get($type, "label-small", "letter-spacing")
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
&__medium {
|
|
143
|
-
font-family:
|
|
143
|
+
font-family: var(--ilo-fonts-display);
|
|
144
144
|
font-size: px-to-rem(map-get($type, "label-medium", "size"));
|
|
145
145
|
letter-spacing: px-to-rem(
|
|
146
146
|
map-get($type, "label-medium", "letter-spacing")
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
&__large {
|
|
153
|
-
font-family:
|
|
153
|
+
font-family: var(--ilo-fonts-display);
|
|
154
154
|
font-size: px-to-rem(map-get($type, "label-large", "size"));
|
|
155
155
|
letter-spacing: px-to-rem(
|
|
156
156
|
map-get($type, "label-large", "letter-spacing")
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
&--helper {
|
|
181
181
|
grid-area: helper;
|
|
182
182
|
color: $color-base-neutrals-medium;
|
|
183
|
-
font-family:
|
|
183
|
+
font-family: var(--ilo-fonts-copy);
|
|
184
184
|
@include font-styles("body-xxs");
|
|
185
185
|
}
|
|
186
186
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
);
|
|
16
16
|
@include bordervalues("input", "formelements");
|
|
17
17
|
box-sizing: border-box;
|
|
18
|
-
font-family:
|
|
18
|
+
font-family: var(--ilo-fonts-copy);
|
|
19
19
|
font-weight: map-get($type, "weights", "section");
|
|
20
20
|
@include font-styles("label-medium");
|
|
21
21
|
height: px-to-rem(48px);
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
.ilo--link-list {
|
|
7
7
|
&--headline {
|
|
8
|
-
font-family:
|
|
8
|
+
font-family: var(--ilo-fonts-display);
|
|
9
9
|
font-weight: map-get($type, "weights", "label");
|
|
10
10
|
@include font-styles("headline-5");
|
|
11
11
|
@include textmargin("margin-bottom", 30px, "headline-5", "display", 0, 0);
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
&--links {
|
|
15
15
|
&--headline {
|
|
16
|
-
font-family:
|
|
16
|
+
font-family: var(--ilo-fonts-display);
|
|
17
17
|
font-weight: map-get($type, "weights", "label");
|
|
18
18
|
@include font-styles("headline-6");
|
|
19
19
|
@include textmargin("margin-bottom", 27px, "headline-6", "display", 0, 0);
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
border-bottom: px-to-rem($borders-base) solid $color-base-neutrals-lighter;
|
|
85
85
|
color: map-get($color, "link", "text", "default");
|
|
86
86
|
display: block;
|
|
87
|
-
font-family:
|
|
87
|
+
font-family: var(--ilo-fonts-display);
|
|
88
88
|
font-weight: map-get($type, "weights", "section");
|
|
89
89
|
@include font-styles("body-small");
|
|
90
90
|
padding-top: spacing(4);
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
color: var(--logo-theme-color);
|
|
38
38
|
font-size: var(--logo-font-size);
|
|
39
39
|
line-height: var(--logo-font-size);
|
|
40
|
-
font-family:
|
|
40
|
+
font-family: var(--ilo-fonts-display);
|
|
41
41
|
font-weight: 700;
|
|
42
42
|
display: inline-flex;
|
|
43
43
|
justify-content: flex-start;
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
border: none;
|
|
142
142
|
color: $brand-ilo-white;
|
|
143
143
|
cursor: pointer;
|
|
144
|
-
font-family:
|
|
144
|
+
font-family: var(--ilo-fonts-display);
|
|
145
145
|
font-weight: 500;
|
|
146
146
|
padding: spacing(4) spacing(4) spacing(4) spacing(9);
|
|
147
147
|
text-decoration: none;
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
@include font-styles("headline-6");
|
|
254
254
|
color: $brand-ilo-white;
|
|
255
255
|
display: none;
|
|
256
|
-
font-family:
|
|
256
|
+
font-family: var(--ilo-fonts-display);
|
|
257
257
|
font-weight: 700;
|
|
258
258
|
padding: spacing(4) 0;
|
|
259
259
|
text-align: right;
|
|
@@ -299,7 +299,7 @@
|
|
|
299
299
|
|
|
300
300
|
&--items {
|
|
301
301
|
@include font-styles("nav-md");
|
|
302
|
-
font-family:
|
|
302
|
+
font-family: var(--ilo-fonts-display);
|
|
303
303
|
font-weight: 500;
|
|
304
304
|
|
|
305
305
|
@include breakpoint("lg") {
|
|
@@ -355,7 +355,7 @@
|
|
|
355
355
|
color: $brand-ilo-dark-blue;
|
|
356
356
|
cursor: pointer;
|
|
357
357
|
display: block;
|
|
358
|
-
font-family:
|
|
358
|
+
font-family: var(--ilo-fonts-display);
|
|
359
359
|
font-weight: 500;
|
|
360
360
|
padding: spacing(4) spacing(9) spacing(4) spacing(2);
|
|
361
361
|
line-height: 24px;
|
|
@@ -475,7 +475,7 @@
|
|
|
475
475
|
&--item {
|
|
476
476
|
@include font-styles("nav-md");
|
|
477
477
|
color: $brand-ilo-white;
|
|
478
|
-
font-family:
|
|
478
|
+
font-family: var(--ilo-fonts-display);
|
|
479
479
|
font-weight: 500;
|
|
480
480
|
}
|
|
481
481
|
|
|
@@ -542,7 +542,7 @@
|
|
|
542
542
|
color: $brand-ilo-dark-blue;
|
|
543
543
|
cursor: pointer;
|
|
544
544
|
display: block;
|
|
545
|
-
font-family:
|
|
545
|
+
font-family: var(--ilo-fonts-display);
|
|
546
546
|
font-weight: 500;
|
|
547
547
|
padding: spacing(4) spacing(9) spacing(4) spacing(2);
|
|
548
548
|
line-height: 16px;
|
|
@@ -633,7 +633,7 @@
|
|
|
633
633
|
color: $brand-ilo-white;
|
|
634
634
|
cursor: pointer;
|
|
635
635
|
display: block;
|
|
636
|
-
font-family:
|
|
636
|
+
font-family: var(--ilo-fonts-display);
|
|
637
637
|
font-weight: 500;
|
|
638
638
|
padding: spacing(2) 30px spacing(2) spacing(10);
|
|
639
639
|
transition: all 150ms ease-out;
|
|
@@ -740,7 +740,7 @@
|
|
|
740
740
|
background: $brand-ilo-white;
|
|
741
741
|
color: $brand-ilo-dark-blue;
|
|
742
742
|
display: flex;
|
|
743
|
-
font-family:
|
|
743
|
+
font-family: var(--ilo-fonts-display);
|
|
744
744
|
font-weight: 500;
|
|
745
745
|
padding: 18px spacing(2);
|
|
746
746
|
text-decoration: none;
|
|
@@ -773,7 +773,7 @@
|
|
|
773
773
|
border: none;
|
|
774
774
|
color: $brand-ilo-dark-blue;
|
|
775
775
|
cursor: pointer;
|
|
776
|
-
font-family:
|
|
776
|
+
font-family: var(--ilo-fonts-display);
|
|
777
777
|
font-weight: 500;
|
|
778
778
|
padding: spacing(5) spacing(4) spacing(4) spacing(8);
|
|
779
779
|
position: relative;
|
|
@@ -838,7 +838,7 @@
|
|
|
838
838
|
@include font-styles("headline-6");
|
|
839
839
|
border-bottom: 3px solid $brand-ilo-grey-light;
|
|
840
840
|
color: $brand-ilo-black;
|
|
841
|
-
font-family:
|
|
841
|
+
font-family: var(--ilo-fonts-display);
|
|
842
842
|
font-weight: 700;
|
|
843
843
|
margin-bottom: spacing(4);
|
|
844
844
|
padding: spacing(5) spacing(2);
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
border-radius: 2px;
|
|
16
16
|
color: map-get($color, "ux", "pagination", "default", "icon");
|
|
17
17
|
display: inline-block;
|
|
18
|
-
font-family:
|
|
18
|
+
font-family: var(--ilo-fonts-display);
|
|
19
19
|
height: px-to-rem(40px);
|
|
20
20
|
overflow: hidden;
|
|
21
21
|
position: relative;
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
gap: spacing(1);
|
|
228
228
|
@include font-styles("nav-md-sm");
|
|
229
229
|
margin-inline-end: spacing(2);
|
|
230
|
-
font-family:
|
|
230
|
+
font-family: var(--ilo-fonts-copy);
|
|
231
231
|
font-weight: 400;
|
|
232
232
|
line-height: 45px;
|
|
233
233
|
|
|
@@ -49,15 +49,15 @@ $avatar-size-lg: $row-1-lg;
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
&--name {
|
|
52
|
-
font-family:
|
|
52
|
+
font-family: var(--ilo-fonts-display);
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
&--role {
|
|
56
|
-
font-family:
|
|
56
|
+
font-family: var(--ilo-fonts-copy);
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
&--description {
|
|
60
|
-
font-family:
|
|
60
|
+
font-family: var(--ilo-fonts-copy);
|
|
61
61
|
grid-row: 2;
|
|
62
62
|
grid-column: 1 / -1;
|
|
63
63
|
}
|
|
@@ -65,7 +65,7 @@ $avatar-size-lg: $row-1-lg;
|
|
|
65
65
|
&--link {
|
|
66
66
|
$link: &;
|
|
67
67
|
|
|
68
|
-
font-family:
|
|
68
|
+
font-family: var(--ilo-fonts-display);
|
|
69
69
|
grid-column: 1 / -1;
|
|
70
70
|
|
|
71
71
|
a {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
border: none;
|
|
10
10
|
border-top: solid $borders-base $color-base-blue-light;
|
|
11
11
|
color: $color-ux-labels-actionable;
|
|
12
|
-
font-family:
|
|
12
|
+
font-family: var(--ilo-fonts-display);
|
|
13
13
|
height: px-to-rem(56px);
|
|
14
14
|
margin-top: spacing(8);
|
|
15
15
|
padding: spacing(4) spacing(7) spacing(4) spacing(0);
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
@import "../mixins";
|
|
4
4
|
|
|
5
5
|
.ilo--richtext {
|
|
6
|
-
font-family:
|
|
6
|
+
font-family: var(--ilo-fonts-copy);
|
|
7
7
|
font-weight: 400;
|
|
8
8
|
@include font-styles("base");
|
|
9
9
|
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
h3,
|
|
86
86
|
h4,
|
|
87
87
|
h5 {
|
|
88
|
-
font-family:
|
|
88
|
+
font-family: var(--ilo-fonts-display);
|
|
89
89
|
font-weight: 700;
|
|
90
90
|
margin-top: spacing(14);
|
|
91
91
|
}
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
background-repeat: no-repeat;
|
|
157
157
|
background-size: px-to-rem(72px) px-to-rem(40px);
|
|
158
158
|
display: block;
|
|
159
|
-
font-family:
|
|
159
|
+
font-family: var(--ilo-fonts-display);
|
|
160
160
|
margin: spacing(6) 0 spacing(10) 0;
|
|
161
161
|
padding: spacing(19) 0 spacing(9) spacing(8); // check
|
|
162
162
|
position: relative;
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
|
|
37
37
|
&--headline {
|
|
38
38
|
color: map-get($color, "socialmedia", $default-theme, "headline", "color");
|
|
39
|
-
font-family:
|
|
39
|
+
font-family: var(--ilo-fonts-display);
|
|
40
40
|
font-weight: map-get($type, "weights", "label");
|
|
41
41
|
@include font-styles("body-small");
|
|
42
42
|
@include textmargin("margin-bottom", 28px, "body-small", "display", 0, 0);
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
background-color: $color-ux-table-content-background;
|
|
43
43
|
border-left: px-to-rem(1px) solid $color-base-neutrals-lighter;
|
|
44
44
|
border-bottom: px-to-rem(2px) solid $color-base-neutrals-lighter;
|
|
45
|
-
font-family:
|
|
45
|
+
font-family: var(--ilo-fonts-display);
|
|
46
46
|
font-weight: 700;
|
|
47
47
|
@include font-styles("body-xs");
|
|
48
48
|
letter-spacing: -0.02em;
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
|
|
110
110
|
&--cell {
|
|
111
111
|
border-bottom: px-to-rem(2px) solid $color-base-neutrals-lighter;
|
|
112
|
-
font-family:
|
|
112
|
+
font-family: var(--ilo-fonts-copy);
|
|
113
113
|
font-weight: 400;
|
|
114
114
|
@include font-styles("body-xs");
|
|
115
115
|
outline: 0;
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
&--headline {
|
|
155
155
|
align-items: center;
|
|
156
156
|
display: flex;
|
|
157
|
-
font-family:
|
|
157
|
+
font-family: var(--ilo-fonts-display);
|
|
158
158
|
font-weight: 700;
|
|
159
159
|
margin-bottom: spacing(2);
|
|
160
160
|
@include font-styles("headline-6");
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
|
|
167
167
|
&--description {
|
|
168
168
|
color: $color-base-neutrals-medium;
|
|
169
|
-
font-family:
|
|
169
|
+
font-family: var(--ilo-fonts-copy);
|
|
170
170
|
font-weight: 400;
|
|
171
171
|
@include font-styles("body-xxs");
|
|
172
172
|
|