@minvws/manon-themes 16.3.0-beta.7 → 16.3.0-beta.8
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/icore-open/application-base.scss +3 -1
- package/icore-open/color-scheme/_index.scss +6 -0
- package/icore-open/color-scheme/open-color.scss +399 -0
- package/icore-open/color-scheme/open-color.scss.license +2 -0
- package/icore-open/components/article-content-wrapper.scss +8 -0
- package/icore-open/components/article.scss +7 -0
- package/icore-open/components/button-base.scss +13 -7
- package/icore-open/components/button-cta.scss +8 -0
- package/icore-open/components/code.scss +9 -0
- package/icore-open/components/footer-navigation-link-active.scss +7 -0
- package/icore-open/components/footer-navigation-link-focus.scss +10 -0
- package/icore-open/components/footer-navigation-link-hover.scss +7 -0
- package/icore-open/components/footer-navigation-link-visited.scss +7 -0
- package/icore-open/components/footer-navigation-link.scss +9 -0
- package/icore-open/components/footer.scss +5 -1
- package/icore-open/components/form-accent-color.scss +3 -1
- package/icore-open/components/form-base.scss +9 -3
- package/icore-open/components/form-button.scss +1 -10
- package/icore-open/components/form-fieldset.scss +7 -0
- package/icore-open/components/form-input.scss +3 -1
- package/icore-open/components/header-navigation-collapsible.scss +4 -2
- package/icore-open/components/header-navigation.scss +4 -4
- package/icore-open/components/layout-authentication.scss +9 -0
- package/icore-open/components/link-focus.scss +10 -0
- package/icore-open/components/link-hover.scss +7 -0
- package/icore-open/components/link-visited-hover.scss +7 -0
- package/icore-open/components/link-visited.scss +7 -0
- package/icore-open/components/link.scss +9 -0
- package/icore-open/components/main-content-wrapper.scss +6 -0
- package/icore-open/components/notification-block-element.scss +10 -0
- package/icore-open/components/radio-input.scss +3 -1
- package/icore-open/components/section.scss +2 -0
- package/icore-open/components/table.scss +10 -8
- package/icore-open/{fonts.scss → fonts/fonts.scss} +3 -1
- package/icore-open/fundamentals/body-text-set.scss +4 -2
- package/icore-open/theme-specific-components/avatar.scss +15 -0
- package/icore-open/theme-specific-components/header-navigation-actions.scss +8 -0
- package/icore-open/theme-specific-components/visually-grouped.scss +3 -1
- package/icore-open/theme.scss +25 -2
- package/package.json +2 -2
- package/icore-open/fundamentals/colors.scss +0 -10
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
/* Application base styling - Variables */
|
|
2
2
|
/* This file contains styling on high level elements such as the body */
|
|
3
3
|
|
|
4
|
+
@use "color-scheme";
|
|
5
|
+
|
|
4
6
|
:root {
|
|
5
7
|
--application-base-font-family: "IBM Plex Sans", sans-serif;
|
|
6
|
-
--application-base-text-color: #
|
|
8
|
+
--application-base-text-color: #{color-scheme.$oc-gray-9};
|
|
7
9
|
--application-font-size: 1rem;
|
|
8
10
|
--application-base-background-color: #f3f3f3;
|
|
9
11
|
}
|
|
@@ -0,0 +1,399 @@
|
|
|
1
|
+
//
|
|
2
|
+
//
|
|
3
|
+
// 𝗖 𝗢 𝗟 𝗢 𝗥
|
|
4
|
+
// v 1.9.1
|
|
5
|
+
//
|
|
6
|
+
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
// General
|
|
10
|
+
// ───────────────────────────────────
|
|
11
|
+
|
|
12
|
+
$oc-white: #ffffff;
|
|
13
|
+
$oc-black: #000000;
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// Gray
|
|
17
|
+
// ───────────────────────────────────
|
|
18
|
+
|
|
19
|
+
$oc-gray-list: (
|
|
20
|
+
"0": #f8f9fa,
|
|
21
|
+
"1": #f1f3f5,
|
|
22
|
+
"2": #e9ecef,
|
|
23
|
+
"3": #dee2e6,
|
|
24
|
+
"4": #ced4da,
|
|
25
|
+
"5": #adb5bd,
|
|
26
|
+
"6": #868e96,
|
|
27
|
+
"7": #495057,
|
|
28
|
+
"8": #343a40,
|
|
29
|
+
"9": #212529
|
|
30
|
+
);
|
|
31
|
+
|
|
32
|
+
$oc-gray-0: map-get($oc-gray-list, "0");
|
|
33
|
+
$oc-gray-1: map-get($oc-gray-list, "1");
|
|
34
|
+
$oc-gray-2: map-get($oc-gray-list, "2");
|
|
35
|
+
$oc-gray-3: map-get($oc-gray-list, "3");
|
|
36
|
+
$oc-gray-4: map-get($oc-gray-list, "4");
|
|
37
|
+
$oc-gray-5: map-get($oc-gray-list, "5");
|
|
38
|
+
$oc-gray-6: map-get($oc-gray-list, "6");
|
|
39
|
+
$oc-gray-7: map-get($oc-gray-list, "7");
|
|
40
|
+
$oc-gray-8: map-get($oc-gray-list, "8");
|
|
41
|
+
$oc-gray-9: map-get($oc-gray-list, "9");
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
// Red
|
|
45
|
+
// ───────────────────────────────────
|
|
46
|
+
|
|
47
|
+
$oc-red-list: (
|
|
48
|
+
"0": #fff5f5,
|
|
49
|
+
"1": #ffe3e3,
|
|
50
|
+
"2": #ffc9c9,
|
|
51
|
+
"3": #ffa8a8,
|
|
52
|
+
"4": #ff8787,
|
|
53
|
+
"5": #ff6b6b,
|
|
54
|
+
"6": #fa5252,
|
|
55
|
+
"7": #f03e3e,
|
|
56
|
+
"8": #e03131,
|
|
57
|
+
"9": #c92a2a
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
$oc-red-0: map-get($oc-red-list, "0");
|
|
61
|
+
$oc-red-1: map-get($oc-red-list, "1");
|
|
62
|
+
$oc-red-2: map-get($oc-red-list, "2");
|
|
63
|
+
$oc-red-3: map-get($oc-red-list, "3");
|
|
64
|
+
$oc-red-4: map-get($oc-red-list, "4");
|
|
65
|
+
$oc-red-5: map-get($oc-red-list, "5");
|
|
66
|
+
$oc-red-6: map-get($oc-red-list, "6");
|
|
67
|
+
$oc-red-7: map-get($oc-red-list, "7");
|
|
68
|
+
$oc-red-8: map-get($oc-red-list, "8");
|
|
69
|
+
$oc-red-9: map-get($oc-red-list, "9");
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
// Pink
|
|
73
|
+
// ───────────────────────────────────
|
|
74
|
+
|
|
75
|
+
$oc-pink-list: (
|
|
76
|
+
"0": #fff0f6,
|
|
77
|
+
"1": #ffdeeb,
|
|
78
|
+
"2": #fcc2d7,
|
|
79
|
+
"3": #faa2c1,
|
|
80
|
+
"4": #f783ac,
|
|
81
|
+
"5": #f06595,
|
|
82
|
+
"6": #e64980,
|
|
83
|
+
"7": #d6336c,
|
|
84
|
+
"8": #c2255c,
|
|
85
|
+
"9": #a61e4d
|
|
86
|
+
);
|
|
87
|
+
|
|
88
|
+
$oc-pink-0: map-get($oc-pink-list, "0");
|
|
89
|
+
$oc-pink-1: map-get($oc-pink-list, "1");
|
|
90
|
+
$oc-pink-2: map-get($oc-pink-list, "2");
|
|
91
|
+
$oc-pink-3: map-get($oc-pink-list, "3");
|
|
92
|
+
$oc-pink-4: map-get($oc-pink-list, "4");
|
|
93
|
+
$oc-pink-5: map-get($oc-pink-list, "5");
|
|
94
|
+
$oc-pink-6: map-get($oc-pink-list, "6");
|
|
95
|
+
$oc-pink-7: map-get($oc-pink-list, "7");
|
|
96
|
+
$oc-pink-8: map-get($oc-pink-list, "8");
|
|
97
|
+
$oc-pink-9: map-get($oc-pink-list, "9");
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
// Grape
|
|
101
|
+
// ───────────────────────────────────
|
|
102
|
+
|
|
103
|
+
$oc-grape-list: (
|
|
104
|
+
"0": #f8f0fc,
|
|
105
|
+
"1": #f3d9fa,
|
|
106
|
+
"2": #eebefa,
|
|
107
|
+
"3": #e599f7,
|
|
108
|
+
"4": #da77f2,
|
|
109
|
+
"5": #cc5de8,
|
|
110
|
+
"6": #be4bdb,
|
|
111
|
+
"7": #ae3ec9,
|
|
112
|
+
"8": #9c36b5,
|
|
113
|
+
"9": #862e9c
|
|
114
|
+
);
|
|
115
|
+
|
|
116
|
+
$oc-grape-0: map-get($oc-grape-list, "0");
|
|
117
|
+
$oc-grape-1: map-get($oc-grape-list, "1");
|
|
118
|
+
$oc-grape-2: map-get($oc-grape-list, "2");
|
|
119
|
+
$oc-grape-3: map-get($oc-grape-list, "3");
|
|
120
|
+
$oc-grape-4: map-get($oc-grape-list, "4");
|
|
121
|
+
$oc-grape-5: map-get($oc-grape-list, "5");
|
|
122
|
+
$oc-grape-6: map-get($oc-grape-list, "6");
|
|
123
|
+
$oc-grape-7: map-get($oc-grape-list, "7");
|
|
124
|
+
$oc-grape-8: map-get($oc-grape-list, "8");
|
|
125
|
+
$oc-grape-9: map-get($oc-grape-list, "9");
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
// Violet
|
|
129
|
+
// ───────────────────────────────────
|
|
130
|
+
|
|
131
|
+
$oc-violet-list: (
|
|
132
|
+
"0": #f3f0ff,
|
|
133
|
+
"1": #e5dbff,
|
|
134
|
+
"2": #d0bfff,
|
|
135
|
+
"3": #b197fc,
|
|
136
|
+
"4": #9775fa,
|
|
137
|
+
"5": #845ef7,
|
|
138
|
+
"6": #7950f2,
|
|
139
|
+
"7": #7048e8,
|
|
140
|
+
"8": #6741d9,
|
|
141
|
+
"9": #5f3dc4
|
|
142
|
+
);
|
|
143
|
+
|
|
144
|
+
$oc-violet-0: map-get($oc-violet-list, "0");
|
|
145
|
+
$oc-violet-1: map-get($oc-violet-list, "1");
|
|
146
|
+
$oc-violet-2: map-get($oc-violet-list, "2");
|
|
147
|
+
$oc-violet-3: map-get($oc-violet-list, "3");
|
|
148
|
+
$oc-violet-4: map-get($oc-violet-list, "4");
|
|
149
|
+
$oc-violet-5: map-get($oc-violet-list, "5");
|
|
150
|
+
$oc-violet-6: map-get($oc-violet-list, "6");
|
|
151
|
+
$oc-violet-7: map-get($oc-violet-list, "7");
|
|
152
|
+
$oc-violet-8: map-get($oc-violet-list, "8");
|
|
153
|
+
$oc-violet-9: map-get($oc-violet-list, "9");
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
// Indigo
|
|
157
|
+
// ───────────────────────────────────
|
|
158
|
+
|
|
159
|
+
$oc-indigo-list: (
|
|
160
|
+
"0": #edf2ff,
|
|
161
|
+
"1": #dbe4ff,
|
|
162
|
+
"2": #bac8ff,
|
|
163
|
+
"3": #91a7ff,
|
|
164
|
+
"4": #748ffc,
|
|
165
|
+
"5": #5c7cfa,
|
|
166
|
+
"6": #4c6ef5,
|
|
167
|
+
"7": #4263eb,
|
|
168
|
+
"8": #3b5bdb,
|
|
169
|
+
"9": #364fc7
|
|
170
|
+
);
|
|
171
|
+
|
|
172
|
+
$oc-indigo-0: map-get($oc-indigo-list, "0");
|
|
173
|
+
$oc-indigo-1: map-get($oc-indigo-list, "1");
|
|
174
|
+
$oc-indigo-2: map-get($oc-indigo-list, "2");
|
|
175
|
+
$oc-indigo-3: map-get($oc-indigo-list, "3");
|
|
176
|
+
$oc-indigo-4: map-get($oc-indigo-list, "4");
|
|
177
|
+
$oc-indigo-5: map-get($oc-indigo-list, "5");
|
|
178
|
+
$oc-indigo-6: map-get($oc-indigo-list, "6");
|
|
179
|
+
$oc-indigo-7: map-get($oc-indigo-list, "7");
|
|
180
|
+
$oc-indigo-8: map-get($oc-indigo-list, "8");
|
|
181
|
+
$oc-indigo-9: map-get($oc-indigo-list, "9");
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
// Blue
|
|
185
|
+
// ───────────────────────────────────
|
|
186
|
+
|
|
187
|
+
$oc-blue-list: (
|
|
188
|
+
"0": #e7f5ff,
|
|
189
|
+
"1": #d0ebff,
|
|
190
|
+
"2": #a5d8ff,
|
|
191
|
+
"3": #74c0fc,
|
|
192
|
+
"4": #4dabf7,
|
|
193
|
+
"5": #339af0,
|
|
194
|
+
"6": #228be6,
|
|
195
|
+
"7": #1c7ed6,
|
|
196
|
+
"8": #1971c2,
|
|
197
|
+
"9": #1864ab
|
|
198
|
+
);
|
|
199
|
+
|
|
200
|
+
$oc-blue-0: map-get($oc-blue-list, "0");
|
|
201
|
+
$oc-blue-1: map-get($oc-blue-list, "1");
|
|
202
|
+
$oc-blue-2: map-get($oc-blue-list, "2");
|
|
203
|
+
$oc-blue-3: map-get($oc-blue-list, "3");
|
|
204
|
+
$oc-blue-4: map-get($oc-blue-list, "4");
|
|
205
|
+
$oc-blue-5: map-get($oc-blue-list, "5");
|
|
206
|
+
$oc-blue-6: map-get($oc-blue-list, "6");
|
|
207
|
+
$oc-blue-7: map-get($oc-blue-list, "7");
|
|
208
|
+
$oc-blue-8: map-get($oc-blue-list, "8");
|
|
209
|
+
$oc-blue-9: map-get($oc-blue-list, "9");
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
// Cyan
|
|
213
|
+
// ───────────────────────────────────
|
|
214
|
+
|
|
215
|
+
$oc-cyan-list: (
|
|
216
|
+
"0": #e3fafc,
|
|
217
|
+
"1": #c5f6fa,
|
|
218
|
+
"2": #99e9f2,
|
|
219
|
+
"3": #66d9e8,
|
|
220
|
+
"4": #3bc9db,
|
|
221
|
+
"5": #22b8cf,
|
|
222
|
+
"6": #15aabf,
|
|
223
|
+
"7": #1098ad,
|
|
224
|
+
"8": #0c8599,
|
|
225
|
+
"9": #0b7285
|
|
226
|
+
);
|
|
227
|
+
|
|
228
|
+
$oc-cyan-0: map-get($oc-cyan-list, "0");
|
|
229
|
+
$oc-cyan-1: map-get($oc-cyan-list, "1");
|
|
230
|
+
$oc-cyan-2: map-get($oc-cyan-list, "2");
|
|
231
|
+
$oc-cyan-3: map-get($oc-cyan-list, "3");
|
|
232
|
+
$oc-cyan-4: map-get($oc-cyan-list, "4");
|
|
233
|
+
$oc-cyan-5: map-get($oc-cyan-list, "5");
|
|
234
|
+
$oc-cyan-6: map-get($oc-cyan-list, "6");
|
|
235
|
+
$oc-cyan-7: map-get($oc-cyan-list, "7");
|
|
236
|
+
$oc-cyan-8: map-get($oc-cyan-list, "8");
|
|
237
|
+
$oc-cyan-9: map-get($oc-cyan-list, "9");
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
// Teal
|
|
241
|
+
// ───────────────────────────────────
|
|
242
|
+
|
|
243
|
+
$oc-teal-list: (
|
|
244
|
+
"0": #e6fcf5,
|
|
245
|
+
"1": #c3fae8,
|
|
246
|
+
"2": #96f2d7,
|
|
247
|
+
"3": #63e6be,
|
|
248
|
+
"4": #38d9a9,
|
|
249
|
+
"5": #20c997,
|
|
250
|
+
"6": #12b886,
|
|
251
|
+
"7": #0ca678,
|
|
252
|
+
"8": #099268,
|
|
253
|
+
"9": #087f5b
|
|
254
|
+
);
|
|
255
|
+
|
|
256
|
+
$oc-teal-0: map-get($oc-teal-list, "0");
|
|
257
|
+
$oc-teal-1: map-get($oc-teal-list, "1");
|
|
258
|
+
$oc-teal-2: map-get($oc-teal-list, "2");
|
|
259
|
+
$oc-teal-3: map-get($oc-teal-list, "3");
|
|
260
|
+
$oc-teal-4: map-get($oc-teal-list, "4");
|
|
261
|
+
$oc-teal-5: map-get($oc-teal-list, "5");
|
|
262
|
+
$oc-teal-6: map-get($oc-teal-list, "6");
|
|
263
|
+
$oc-teal-7: map-get($oc-teal-list, "7");
|
|
264
|
+
$oc-teal-8: map-get($oc-teal-list, "8");
|
|
265
|
+
$oc-teal-9: map-get($oc-teal-list, "9");
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
// Green
|
|
269
|
+
// ───────────────────────────────────
|
|
270
|
+
|
|
271
|
+
$oc-green-list: (
|
|
272
|
+
"0": #ebfbee,
|
|
273
|
+
"1": #d3f9d8,
|
|
274
|
+
"2": #b2f2bb,
|
|
275
|
+
"3": #8ce99a,
|
|
276
|
+
"4": #69db7c,
|
|
277
|
+
"5": #51cf66,
|
|
278
|
+
"6": #40c057,
|
|
279
|
+
"7": #37b24d,
|
|
280
|
+
"8": #2f9e44,
|
|
281
|
+
"9": #2b8a3e
|
|
282
|
+
);
|
|
283
|
+
|
|
284
|
+
$oc-green-0: map-get($oc-green-list, "0");
|
|
285
|
+
$oc-green-1: map-get($oc-green-list, "1");
|
|
286
|
+
$oc-green-2: map-get($oc-green-list, "2");
|
|
287
|
+
$oc-green-3: map-get($oc-green-list, "3");
|
|
288
|
+
$oc-green-4: map-get($oc-green-list, "4");
|
|
289
|
+
$oc-green-5: map-get($oc-green-list, "5");
|
|
290
|
+
$oc-green-6: map-get($oc-green-list, "6");
|
|
291
|
+
$oc-green-7: map-get($oc-green-list, "7");
|
|
292
|
+
$oc-green-8: map-get($oc-green-list, "8");
|
|
293
|
+
$oc-green-9: map-get($oc-green-list, "9");
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
// Lime
|
|
297
|
+
// ───────────────────────────────────
|
|
298
|
+
|
|
299
|
+
$oc-lime-list: (
|
|
300
|
+
"0": #f4fce3,
|
|
301
|
+
"1": #e9fac8,
|
|
302
|
+
"2": #d8f5a2,
|
|
303
|
+
"3": #c0eb75,
|
|
304
|
+
"4": #a9e34b,
|
|
305
|
+
"5": #94d82d,
|
|
306
|
+
"6": #82c91e,
|
|
307
|
+
"7": #74b816,
|
|
308
|
+
"8": #66a80f,
|
|
309
|
+
"9": #5c940d
|
|
310
|
+
);
|
|
311
|
+
|
|
312
|
+
$oc-lime-0: map-get($oc-lime-list, "0");
|
|
313
|
+
$oc-lime-1: map-get($oc-lime-list, "1");
|
|
314
|
+
$oc-lime-2: map-get($oc-lime-list, "2");
|
|
315
|
+
$oc-lime-3: map-get($oc-lime-list, "3");
|
|
316
|
+
$oc-lime-4: map-get($oc-lime-list, "4");
|
|
317
|
+
$oc-lime-5: map-get($oc-lime-list, "5");
|
|
318
|
+
$oc-lime-6: map-get($oc-lime-list, "6");
|
|
319
|
+
$oc-lime-7: map-get($oc-lime-list, "7");
|
|
320
|
+
$oc-lime-8: map-get($oc-lime-list, "8");
|
|
321
|
+
$oc-lime-9: map-get($oc-lime-list, "9");
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
// Yellow
|
|
325
|
+
// ───────────────────────────────────
|
|
326
|
+
|
|
327
|
+
$oc-yellow-list: (
|
|
328
|
+
"0": #fff9db,
|
|
329
|
+
"1": #fff3bf,
|
|
330
|
+
"2": #ffec99,
|
|
331
|
+
"3": #ffe066,
|
|
332
|
+
"4": #ffd43b,
|
|
333
|
+
"5": #fcc419,
|
|
334
|
+
"6": #fab005,
|
|
335
|
+
"7": #f59f00,
|
|
336
|
+
"8": #f08c00,
|
|
337
|
+
"9": #e67700
|
|
338
|
+
);
|
|
339
|
+
|
|
340
|
+
$oc-yellow-0: map-get($oc-yellow-list, "0");
|
|
341
|
+
$oc-yellow-1: map-get($oc-yellow-list, "1");
|
|
342
|
+
$oc-yellow-2: map-get($oc-yellow-list, "2");
|
|
343
|
+
$oc-yellow-3: map-get($oc-yellow-list, "3");
|
|
344
|
+
$oc-yellow-4: map-get($oc-yellow-list, "4");
|
|
345
|
+
$oc-yellow-5: map-get($oc-yellow-list, "5");
|
|
346
|
+
$oc-yellow-6: map-get($oc-yellow-list, "6");
|
|
347
|
+
$oc-yellow-7: map-get($oc-yellow-list, "7");
|
|
348
|
+
$oc-yellow-8: map-get($oc-yellow-list, "8");
|
|
349
|
+
$oc-yellow-9: map-get($oc-yellow-list, "9");
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
// Orange
|
|
353
|
+
// ───────────────────────────────────
|
|
354
|
+
|
|
355
|
+
$oc-orange-list: (
|
|
356
|
+
"0": #fff4e6,
|
|
357
|
+
"1": #ffe8cc,
|
|
358
|
+
"2": #ffd8a8,
|
|
359
|
+
"3": #ffc078,
|
|
360
|
+
"4": #ffa94d,
|
|
361
|
+
"5": #ff922b,
|
|
362
|
+
"6": #fd7e14,
|
|
363
|
+
"7": #f76707,
|
|
364
|
+
"8": #e8590c,
|
|
365
|
+
"9": #d9480f
|
|
366
|
+
);
|
|
367
|
+
|
|
368
|
+
$oc-orange-0: map-get($oc-orange-list, "0");
|
|
369
|
+
$oc-orange-1: map-get($oc-orange-list, "1");
|
|
370
|
+
$oc-orange-2: map-get($oc-orange-list, "2");
|
|
371
|
+
$oc-orange-3: map-get($oc-orange-list, "3");
|
|
372
|
+
$oc-orange-4: map-get($oc-orange-list, "4");
|
|
373
|
+
$oc-orange-5: map-get($oc-orange-list, "5");
|
|
374
|
+
$oc-orange-6: map-get($oc-orange-list, "6");
|
|
375
|
+
$oc-orange-7: map-get($oc-orange-list, "7");
|
|
376
|
+
$oc-orange-8: map-get($oc-orange-list, "8");
|
|
377
|
+
$oc-orange-9: map-get($oc-orange-list, "9");
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
// Color list
|
|
381
|
+
// ───────────────────────────────────
|
|
382
|
+
|
|
383
|
+
$oc-color-spectrum: 9;
|
|
384
|
+
|
|
385
|
+
$oc-color-list: (
|
|
386
|
+
$oc-gray-list: "gray",
|
|
387
|
+
$oc-red-list: "red",
|
|
388
|
+
$oc-pink-list: "pink",
|
|
389
|
+
$oc-grape-list: "grape",
|
|
390
|
+
$oc-violet-list: "violet",
|
|
391
|
+
$oc-indigo-list: "indigo",
|
|
392
|
+
$oc-blue-list: "blue",
|
|
393
|
+
$oc-cyan-list: "cyan",
|
|
394
|
+
$oc-teal-list: "teal",
|
|
395
|
+
$oc-green-list: "green",
|
|
396
|
+
$oc-lime-list: "lime",
|
|
397
|
+
$oc-yellow-list: "yellow",
|
|
398
|
+
$oc-orange-list: "orange"
|
|
399
|
+
);
|
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
/* Button base styling */
|
|
2
2
|
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
3
5
|
:root {
|
|
4
6
|
--button-base-border-radius: var(--border-radius-m);
|
|
5
|
-
--button-base-background-color:
|
|
7
|
+
--button-base-background-color: #{color-scheme.$oc-white};
|
|
6
8
|
--button-base-border-width: 1px;
|
|
7
|
-
--button-base-border-color: #
|
|
8
|
-
--button-base-text-color: #
|
|
9
|
+
--button-base-border-color: #{color-scheme.$oc-gray-3};
|
|
10
|
+
--button-base-text-color: #{color-scheme.$oc-blue-8};
|
|
9
11
|
--button-base-font-size: 1rem;
|
|
10
12
|
|
|
11
13
|
/* Hover */
|
|
12
14
|
--button-base-hover-background-color: var(--button-base-background-color);
|
|
13
|
-
--button-base-hover-border-color: #
|
|
14
|
-
--button-base-hover-text-color: #
|
|
15
|
+
--button-base-hover-border-color: #{color-scheme.$oc-blue-9};
|
|
16
|
+
--button-base-hover-text-color: #{color-scheme.$oc-blue-9};
|
|
15
17
|
--button-base-hover-border-radius: var(--button-base-border-radius);
|
|
16
18
|
|
|
17
19
|
/* Active */
|
|
@@ -27,8 +29,12 @@
|
|
|
27
29
|
--button-base-hover-background-color
|
|
28
30
|
);
|
|
29
31
|
|
|
30
|
-
--button-base-focus-border-color:
|
|
31
|
-
--button-base-focus-text-color:
|
|
32
|
+
--button-base-focus-border-color: #{color-scheme.$oc-blue-6};
|
|
33
|
+
--button-base-focus-text-color: #{color-scheme.$oc-blue-8};
|
|
34
|
+
--button-base-focus-outline-style: solid;
|
|
35
|
+
--button-base-focus-outline-color: #{color-scheme.$oc-gray-3};
|
|
36
|
+
--button-base-focus-outline-width: 1px;
|
|
37
|
+
--button-base-focus-outline-offset: -0.25rem;
|
|
32
38
|
|
|
33
39
|
/* Selected */
|
|
34
40
|
--button-base-selected-background-color: var(
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* Footer navigation link focus */
|
|
2
|
+
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--footer-navigation-link-focus-text-color: #{color-scheme.$oc-blue-8};
|
|
7
|
+
--footer-navigation-link-focus-text-decoration: #{color-scheme.$oc-blue-8};
|
|
8
|
+
--footer-navigation-link-focus-outline: 1px solid #{color-scheme.$oc-blue-8};
|
|
9
|
+
--footer-navigation-link-focus-outline-offset: 0.25rem;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* Footer navigation Link */
|
|
2
|
+
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--footer-navigation-link-text-color: var(--link-text-color);
|
|
7
|
+
--footer-navigation-link-font-weight: var(--link-font-weight);
|
|
8
|
+
--footer-navigation-link-text-decoration: var(--link-text-decoration);
|
|
9
|
+
}
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
/* Form input */
|
|
2
2
|
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
3
5
|
:root {
|
|
4
|
-
--form-base-text-color: #
|
|
6
|
+
--form-base-text-color: #{color-scheme.$oc-gray-9};
|
|
5
7
|
--form-base-font-size: 1rem;
|
|
6
8
|
--form-base-font-weight: bold;
|
|
7
|
-
--form-base-gap: var(--spacing-
|
|
8
|
-
--form-base-background-color: #
|
|
9
|
+
--form-base-gap: var(--spacing-100);
|
|
10
|
+
--form-base-background-color: #{color-scheme.$oc-white};
|
|
11
|
+
--form-base-padding-top: 0;
|
|
12
|
+
--form-base-padding-right: 0;
|
|
13
|
+
--form-base-padding-bottom: 0;
|
|
14
|
+
--form-base-padding-left: 0;
|
|
9
15
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
/* Form input */
|
|
2
2
|
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
3
5
|
:root {
|
|
4
6
|
--form-input-border-radius: var(--border-radius-s);
|
|
5
7
|
--form-input-border-width: 1px;
|
|
6
8
|
--form-input-border-style: solid;
|
|
7
|
-
--form-input-border-color: #
|
|
9
|
+
--form-input-border-color: #{color-scheme.$oc-gray-6};
|
|
8
10
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
/* Header collapsible */
|
|
2
2
|
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
3
5
|
:root {
|
|
4
6
|
/* Collapsible menu */
|
|
5
7
|
--header-navigation-collapsible-menu-top: 4rem;
|
|
6
|
-
--header-navigation-collapsible-background-color:
|
|
8
|
+
--header-navigation-collapsible-background-color: #{color-scheme.$oc-white};
|
|
7
9
|
--header-navigation-collapsible-top: var(--header-navigation-min-height);
|
|
8
10
|
|
|
9
11
|
/* Menu item */
|
|
@@ -26,7 +28,7 @@
|
|
|
26
28
|
--header-navigation-collapsible-button-background-color: transparent;
|
|
27
29
|
|
|
28
30
|
/* Icon */
|
|
29
|
-
--header-navigation-collapsible-icon-color:
|
|
31
|
+
--header-navigation-collapsible-icon-color: #{color-scheme.$oc-white};
|
|
30
32
|
--header-navigation-button-icon-font-family: var(--icon-font-family);
|
|
31
33
|
--header-navigation-collapsible-icon-font-size: var(
|
|
32
34
|
--body-text-large-font-size
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* Header navigation */
|
|
2
|
-
@use "../
|
|
2
|
+
@use "../color-scheme";
|
|
3
3
|
|
|
4
4
|
:root {
|
|
5
5
|
--header-navigation-padding-top: 0;
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
--header-navigation-position: static;
|
|
11
11
|
|
|
12
12
|
/* Header navigation */
|
|
13
|
-
--header-navigation-background-color:
|
|
14
|
-
--header-navigation-text-color:
|
|
13
|
+
--header-navigation-background-color: #{color-scheme.$oc-gray-9};
|
|
14
|
+
--header-navigation-text-color: #{color-scheme.$oc-white};
|
|
15
15
|
--header-navigation-font-weight: bold;
|
|
16
16
|
--header-navigation-max-width: 100%;
|
|
17
17
|
--header-navigation-align-items: stretch;
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
--header-navigation-link-font-weight: bold;
|
|
28
28
|
|
|
29
29
|
/* Link hover */
|
|
30
|
-
--header-navigation-link-hover-background-color:
|
|
30
|
+
--header-navigation-link-hover-background-color: #{color-scheme.$oc-gray-7};
|
|
31
31
|
--header-navigation-link-hover-font-weight: var(
|
|
32
32
|
--header-navigation-link-font-weight
|
|
33
33
|
);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* Layout authentication */
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
--layout-authentication-background-color: #fff;
|
|
5
|
+
--layout-authentication-padding-top: var(--spacing-150);
|
|
6
|
+
--layout-authentication-padding-right: var(--spacing-150);
|
|
7
|
+
--layout-authentication-padding-bottom: var(--spacing-150);
|
|
8
|
+
--layout-authentication-padding-left: var(--spacing-150);
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* Link Focus */
|
|
2
|
+
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--link-focus-text-color: #{color-scheme.$oc-blue-8};
|
|
7
|
+
--link-focus-text-decoration: #{color-scheme.$oc-blue-8};
|
|
8
|
+
--link-focus-outline: 1px solid #{color-scheme.$oc-blue-8};
|
|
9
|
+
--link-focus-outline-offset: 0.25rem;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* Notification error */
|
|
2
|
+
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--notification-block-element-padding-top: 1rem;
|
|
7
|
+
--notification-block-element-padding-right: 1rem;
|
|
8
|
+
--notification-block-element-padding-bottom: 1rem;
|
|
9
|
+
--notification-block-element-padding-left: 1rem;
|
|
10
|
+
}
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
/* Table */
|
|
2
2
|
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
3
5
|
:root {
|
|
4
6
|
/* Base */
|
|
5
|
-
--table-background-color: #
|
|
7
|
+
--table-background-color: #{color-scheme.$oc-white};
|
|
6
8
|
--table-text-color: var(--application-base-text-color);
|
|
7
9
|
--table-text-align: left;
|
|
8
10
|
|
|
9
11
|
/* Table header */
|
|
10
|
-
--table-head-background-color: #
|
|
12
|
+
--table-head-background-color: #{color-scheme.$oc-white};
|
|
11
13
|
--table-head-border-width: 0 0 2px 0;
|
|
12
14
|
--table-head-border-style: solid;
|
|
13
|
-
--table-head-border-color: #
|
|
15
|
+
--table-head-border-color: #{color-scheme.$oc-blue-8};
|
|
14
16
|
--table-head-cell-padding: var(--spacing-075);
|
|
15
17
|
|
|
16
18
|
/* Table row */
|
|
@@ -26,7 +28,7 @@
|
|
|
26
28
|
/* Table cell */
|
|
27
29
|
--table-cell-border-width: 0 0 1px 0;
|
|
28
30
|
--table-cell-border-style: solid;
|
|
29
|
-
--table-cell-border-color: #
|
|
31
|
+
--table-cell-border-color: #{color-scheme.$oc-gray-3};
|
|
30
32
|
--table-cell-padding: 0.5rem 1rem;
|
|
31
33
|
--table-cells-padding: 0.25rem 1rem;
|
|
32
34
|
|
|
@@ -36,20 +38,20 @@
|
|
|
36
38
|
--table-action-buttons-button-hover-text-color: var(--link-text-color);
|
|
37
39
|
|
|
38
40
|
/* Table footer */
|
|
39
|
-
--table-foot-background-color:
|
|
41
|
+
--table-foot-background-color: #{color-scheme.$oc-white};
|
|
40
42
|
--table-foot-font-weight: 600;
|
|
41
43
|
--table-foot-font-size: var(--table-font-size);
|
|
42
44
|
--table-foot-border-width: 2px 0 0 0;
|
|
43
|
-
--table-foot-border-color: #
|
|
45
|
+
--table-foot-border-color: #{color-scheme.$oc-blue-8};
|
|
44
46
|
|
|
45
47
|
/* Table footer cell */
|
|
46
|
-
--table-foot-header-background-color:
|
|
48
|
+
--table-foot-header-background-color: #{color-scheme.$oc-white};
|
|
47
49
|
--table-foot-header-border-width: var(--table-cell-border-width);
|
|
48
50
|
--table-foot-header-border-style: var(--table-cell-border-style);
|
|
49
51
|
--table-foot-header-border-color: var(--table-cell-border-color);
|
|
50
52
|
|
|
51
53
|
/* Table footer cell */
|
|
52
|
-
--table-foot-cell-background-color:
|
|
54
|
+
--table-foot-cell-background-color: #{color-scheme.$oc-white};
|
|
53
55
|
--table-foot-cell-border-width: var(--table-cell-border-width);
|
|
54
56
|
--table-foot-cell-border-style: var(--table-cell-border-style);
|
|
55
57
|
--table-foot-cell-border-color: var(--table-cell-border-color);
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/* body-text-set - variables */
|
|
2
2
|
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
3
5
|
:root {
|
|
4
6
|
/* Available variables to use within all text types */
|
|
5
7
|
--text-set-font-family: "Open Sans", sans-serif;
|
|
@@ -7,14 +9,14 @@
|
|
|
7
9
|
--text-set-font-weight: normal;
|
|
8
10
|
--text-set-strong-font-weight: 600;
|
|
9
11
|
--text-set-line-height: 1.75;
|
|
10
|
-
--text-set-text-color:
|
|
12
|
+
--text-set-text-color: var(--application-base-text-color);
|
|
11
13
|
--text-set-text-align: left;
|
|
12
14
|
|
|
13
15
|
/* Body text small */
|
|
14
16
|
--body-text-small-font-size: 0.875rem;
|
|
15
17
|
--body-text-small-font-weight: var(--text-set-font-weight);
|
|
16
18
|
--body-text-small-line-height: var(--text-set-line-height);
|
|
17
|
-
--body-text-small-color: #
|
|
19
|
+
--body-text-small-color: #{color-scheme.$oc-gray-7};
|
|
18
20
|
--body-text-small-text-align: var(--text-set-text-align);
|
|
19
21
|
|
|
20
22
|
/* Strong */
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* Avatar */
|
|
2
|
+
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
5
|
+
.avatar {
|
|
6
|
+
display: flex;
|
|
7
|
+
align-self: center;
|
|
8
|
+
background-color: #{color-scheme.$oc-blue-8};
|
|
9
|
+
border-radius: 50%;
|
|
10
|
+
color: #{color-scheme.$oc-white};
|
|
11
|
+
height: 3rem;
|
|
12
|
+
width: 3rem;
|
|
13
|
+
padding: 0;
|
|
14
|
+
text-decoration: none;
|
|
15
|
+
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
/* Visually grouped */
|
|
2
2
|
|
|
3
|
+
@use "../color-scheme";
|
|
4
|
+
|
|
3
5
|
%visually-grouped {
|
|
4
|
-
background-color:
|
|
6
|
+
background-color: #{color-scheme.$oc-white};
|
|
5
7
|
padding-top: var(--spacing-100);
|
|
6
8
|
padding-right: var(--spacing-150);
|
|
7
9
|
padding-bottom: var(--spacing-150);
|
package/icore-open/theme.scss
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
@forward "variables";
|
|
5
5
|
|
|
6
6
|
/* Fonts */
|
|
7
|
-
@use "fonts";
|
|
7
|
+
@use "fonts/fonts";
|
|
8
8
|
|
|
9
9
|
/* Styling on the highest level */
|
|
10
10
|
@use "application-base";
|
|
@@ -12,17 +12,32 @@
|
|
|
12
12
|
/* Fundamentals */
|
|
13
13
|
@use "fundamentals/body-text-set";
|
|
14
14
|
@use "fundamentals/border-radii";
|
|
15
|
-
@use "fundamentals/colors";
|
|
16
15
|
@use "fundamentals/headings-base-set";
|
|
17
16
|
@use "fundamentals/shadows";
|
|
18
17
|
@use "fundamentals/spacing";
|
|
19
18
|
|
|
20
19
|
/* Layout */
|
|
20
|
+
@use "components/layout-authentication";
|
|
21
|
+
|
|
22
|
+
/* Link */
|
|
23
|
+
@use "components/link";
|
|
24
|
+
@use "components/link-hover";
|
|
25
|
+
@use "components/link-visited";
|
|
26
|
+
@use "components/link-visited-hover";
|
|
27
|
+
@use "components/link-focus";
|
|
28
|
+
@use "components/footer-navigation-link";
|
|
29
|
+
@use "components/footer-navigation-link-visited";
|
|
30
|
+
@use "components/footer-navigation-link-hover";
|
|
31
|
+
@use "components/footer-navigation-link-active";
|
|
32
|
+
@use "components/footer-navigation-link-focus.scss";
|
|
21
33
|
|
|
22
34
|
/* Components */
|
|
23
35
|
@use "components/breadcrumb-bar";
|
|
24
36
|
@use "components/button-base";
|
|
37
|
+
@use "components/button-cta";
|
|
38
|
+
@use "components/code";
|
|
25
39
|
@use "components/footer";
|
|
40
|
+
@use "components/form-fieldset";
|
|
26
41
|
@use "components/form-accent-color";
|
|
27
42
|
@use "components/form-base";
|
|
28
43
|
@use "components/form-button";
|
|
@@ -42,10 +57,18 @@
|
|
|
42
57
|
|
|
43
58
|
/* Layout */
|
|
44
59
|
@use "components/main";
|
|
60
|
+
@use "components/main-content-wrapper";
|
|
45
61
|
@use "components/section";
|
|
46
62
|
@use "components/section-content-wrapper";
|
|
63
|
+
@use "components/article";
|
|
64
|
+
@use "components/article-content-wrapper";
|
|
65
|
+
|
|
66
|
+
/* Notifications */
|
|
67
|
+
@use "components/notification-block-element";
|
|
47
68
|
|
|
48
69
|
/* Theme specific components */
|
|
49
70
|
/* These are components that aren't build on an exsisting Manon component
|
|
50
71
|
And are specific to this theme */
|
|
51
72
|
@use "theme-specific-components/visually-grouped";
|
|
73
|
+
@use "theme-specific-components/avatar";
|
|
74
|
+
@use "theme-specific-components/header-navigation-actions";
|
package/package.json
CHANGED
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"**/*.license"
|
|
14
14
|
],
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@minvws/manon": "16.3.0-beta.
|
|
16
|
+
"@minvws/manon": "16.3.0-beta.8"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
20
|
"url": "https://github.com/minvws/nl-rdo-manon.git",
|
|
21
21
|
"directory": "themes"
|
|
22
22
|
},
|
|
23
|
-
"version": "16.3.0-beta.
|
|
23
|
+
"version": "16.3.0-beta.8",
|
|
24
24
|
"scripts": {
|
|
25
25
|
"npm-version": "npm version"
|
|
26
26
|
}
|