barbican-reset 1.8.6 → 1.8.9
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/components/br_form_block.vue +1 -1
- package/components/card_display.vue +1 -1
- package/components/event_summary.vue +1 -1
- package/components/payment_logo.vue +0 -1
- package/components/related_title.vue +2 -2
- package/components/skip_link.vue +2 -2
- package/helpers/mixins/_br-footer.scss +1 -1
- package/helpers/mixins/_buttons.scss +16 -16
- package/helpers/mixins/_card.scss +5 -5
- package/helpers/mixins/_festival.scss +2 -2
- package/helpers/mixins/_focus.scss +4 -4
- package/helpers/mixins/_table.scss +4 -4
- package/helpers/mixins/input/_dropdown.scss +3 -3
- package/helpers/mixins/input/_generic.scss +6 -6
- package/helpers/mixins/input/_text.scss +18 -18
- package/helpers/mixins/table/_details.scss +4 -4
- package/helpers/mixins/table/_etickets.scss +3 -3
- package/helpers/mixins/table/_gifts.scss +2 -2
- package/helpers/mixins/table/_orders.scss +2 -2
- package/helpers/mixins/table/_preferences.scss +3 -3
- package/helpers/mixins/table/_resale.scss +1 -1
- package/helpers/mixins/table/_tickets.scss +2 -2
- package/helpers/variables/colors/_borders.scss +2 -2
- package/helpers/variables/colors/_grey.scss +6 -6
- package/helpers/variables/colors/brand/_membership.scss +1 -1
- package/helpers/variables/colors/brand/_programme.scss +1 -1
- package/library/scss/colors/grey.scss +9 -0
- package/library/scss/styles.scss +18 -3
- package/library/static/styles.css +34 -2
- package/library/views/index.pug +11 -0
- package/package.json +1 -1
- package/scss/_close-icon.scss +3 -3
- package/scss/_footer.scss +1 -1
- package/scss/_input.scss +9 -1
- package/scss/_klaro.scss +21 -21
- package/scss/card/_membership.scss +2 -2
- package/scss/card/_related.scss +1 -1
- package/scss/card/_video-help.scss +1 -1
- package/scss/index.scss +1 -1
|
@@ -55,7 +55,7 @@ export default {
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.line {
|
|
58
|
-
background-color: $c-grey-
|
|
58
|
+
background-color: $c-grey-l65;
|
|
59
59
|
height: 1px;
|
|
60
60
|
|
|
61
61
|
@include media-breakpoint-up(md) {
|
|
@@ -80,7 +80,7 @@ export default {
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
@include focus() {
|
|
83
|
-
@include double-box($white, $c-grey-
|
|
83
|
+
@include double-box($white, $c-grey-l21);
|
|
84
84
|
border-radius: $border-radius;
|
|
85
85
|
outline: none;
|
|
86
86
|
|
package/components/skip_link.vue
CHANGED
|
@@ -19,10 +19,10 @@ export default {
|
|
|
19
19
|
<style lang="scss" module>
|
|
20
20
|
|
|
21
21
|
.skiplink {
|
|
22
|
-
border: 0.25rem solid $c-grey-
|
|
22
|
+
border: 0.25rem solid $c-grey-l21;
|
|
23
23
|
border-radius: $border-radius-lg;
|
|
24
24
|
background-color: $white;
|
|
25
|
-
color: $c-grey-
|
|
25
|
+
color: $c-grey-l21;
|
|
26
26
|
position: absolute;
|
|
27
27
|
padding: 0.5rem;
|
|
28
28
|
z-index: -1;
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
min-width: 8rem;
|
|
134
134
|
|
|
135
135
|
&[disabled=disabled] {
|
|
136
|
-
@include button-solid($c-grey-
|
|
136
|
+
@include button-solid($c-grey-l21);
|
|
137
137
|
cursor: not-allowed;
|
|
138
138
|
}
|
|
139
139
|
}
|
|
@@ -157,11 +157,11 @@
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
@mixin btn-secondary {
|
|
160
|
-
@include button-solid($c-grey-
|
|
160
|
+
@include button-solid($c-grey-l21);
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
@mixin btn-outline-secondary {
|
|
164
|
-
@include button-outline($c-grey-
|
|
164
|
+
@include button-outline($c-grey-l21);
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
@mixin btn-outline-header {
|
|
@@ -173,8 +173,8 @@
|
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
@mixin btn-input-edit {
|
|
176
|
-
@include button-outline($c-grey-
|
|
177
|
-
background-color: $c-grey-
|
|
176
|
+
@include button-outline($c-grey-l44);
|
|
177
|
+
background-color: $c-grey-l87;
|
|
178
178
|
border-color: $c-border-strong;
|
|
179
179
|
border-bottom-left-radius: 0;
|
|
180
180
|
border-top-left-radius: 0;
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
|
|
207
207
|
@mixin btn-remove {
|
|
208
208
|
@include button-solid(
|
|
209
|
-
$background: $c-grey-
|
|
209
|
+
$background: $c-grey-l21,
|
|
210
210
|
$padding: 0.625em,
|
|
211
211
|
$line-height: 1.375);
|
|
212
212
|
}
|
|
@@ -214,8 +214,8 @@
|
|
|
214
214
|
@mixin btn-link {
|
|
215
215
|
@include button-link;
|
|
216
216
|
@include focus {
|
|
217
|
-
@include single-box($c-grey-
|
|
218
|
-
background-color: $c-grey-
|
|
217
|
+
@include single-box($c-grey-l21);
|
|
218
|
+
background-color: $c-grey-l21;
|
|
219
219
|
color: $white;
|
|
220
220
|
}
|
|
221
221
|
}
|
|
@@ -223,13 +223,13 @@
|
|
|
223
223
|
@mixin btn-video-help {
|
|
224
224
|
@include button-link(
|
|
225
225
|
$padding: 1.25em,
|
|
226
|
-
$background: $c-grey-
|
|
226
|
+
$background: $c-grey-l96);
|
|
227
227
|
font-weight: 700;
|
|
228
228
|
text-align: left;
|
|
229
229
|
width: 100%;
|
|
230
230
|
|
|
231
231
|
@include focus {
|
|
232
|
-
background-color: $c-grey-
|
|
232
|
+
background-color: $c-grey-l44;
|
|
233
233
|
color: $white;
|
|
234
234
|
}
|
|
235
235
|
}
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
@mixin btn-exit {
|
|
238
238
|
@include button-link;
|
|
239
239
|
@include focus {
|
|
240
|
-
outline: 0.1875rem solid $c-grey-
|
|
240
|
+
outline: 0.1875rem solid $c-grey-l21;
|
|
241
241
|
border-radius: 50%;
|
|
242
242
|
box-shadow: none;
|
|
243
243
|
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
}
|
|
247
247
|
|
|
248
248
|
path.tint {
|
|
249
|
-
fill: $c-grey-
|
|
249
|
+
fill: $c-grey-l21;
|
|
250
250
|
}
|
|
251
251
|
}
|
|
252
252
|
}
|
|
@@ -296,13 +296,13 @@
|
|
|
296
296
|
|
|
297
297
|
@mixin btn-cta {
|
|
298
298
|
@include button-solid(
|
|
299
|
-
$background: $c-grey-
|
|
299
|
+
$background: $c-grey-l21,
|
|
300
300
|
$display: 'flex');
|
|
301
301
|
fill: $white;
|
|
302
302
|
}
|
|
303
303
|
|
|
304
304
|
@mixin btn-carousel {
|
|
305
|
-
@include button-solid($c-grey-
|
|
305
|
+
@include button-solid($c-grey-l21);
|
|
306
306
|
@include single-box($white);
|
|
307
307
|
border-radius: 50%;
|
|
308
308
|
font-size: 0;
|
|
@@ -313,8 +313,8 @@
|
|
|
313
313
|
}
|
|
314
314
|
|
|
315
315
|
&:disabled {
|
|
316
|
-
background-color: $c-grey-
|
|
317
|
-
border-color: $c-grey-
|
|
316
|
+
background-color: $c-grey-l87;
|
|
317
|
+
border-color: $c-grey-l87;
|
|
318
318
|
opacity: 1;
|
|
319
319
|
}
|
|
320
320
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
@mixin card {
|
|
3
|
-
border: 1px solid $c-grey-
|
|
3
|
+
border: 1px solid $c-grey-l87;
|
|
4
4
|
border-radius: $border-radius-lg;
|
|
5
5
|
background-color: white;
|
|
6
6
|
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
@mixin card-header {
|
|
13
|
-
border-bottom: 1px solid $c-grey-
|
|
13
|
+
border-bottom: 1px solid $c-grey-l87;
|
|
14
14
|
padding: 1.5rem 1.75rem 1.25rem;
|
|
15
15
|
background-color: transparent;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
@mixin card-subtitle {
|
|
19
|
-
color: $c-grey-
|
|
19
|
+
color: $c-grey-l44 !important;
|
|
20
20
|
font-size: $font-size-sm;
|
|
21
21
|
font-weight: 400;
|
|
22
22
|
margin: 0;
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
padding: 1rem;
|
|
32
32
|
|
|
33
33
|
@include media-breakpoint-up(md) {
|
|
34
|
-
border-top: 1px solid $c-grey-
|
|
34
|
+
border-top: 1px solid $c-grey-l65;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
@mixin card-img {
|
|
39
|
-
border: 1px solid $c-grey-
|
|
39
|
+
border: 1px solid $c-grey-l65;
|
|
40
40
|
margin-bottom: 1rem;
|
|
41
41
|
max-width: 100%;
|
|
42
42
|
}
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
@mixin welcome($max-width: 23rem) {
|
|
21
|
-
box-shadow: 0 0 0.3125rem rgba($c-grey-
|
|
22
|
-
border: 1px solid $c-grey-
|
|
21
|
+
box-shadow: 0 0 0.3125rem rgba($c-grey-l21, 0.1);
|
|
22
|
+
border: 1px solid $c-grey-l87;
|
|
23
23
|
border-radius: $border-radius;
|
|
24
24
|
margin-bottom: 1.5rem;
|
|
25
25
|
max-width: $max-width;
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
box-shadow: 0 0 0 $size $bg;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
@mixin link-focus($color: $c-grey-
|
|
28
|
+
@mixin link-focus($color: $c-grey-l11, $border: $white) {
|
|
29
29
|
@include focus {
|
|
30
30
|
@include double-box($color, $border);
|
|
31
31
|
background-color: $color;
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
@mixin input-focus-defaults {
|
|
37
|
-
@include single-box($c-grey-
|
|
38
|
-
border: 1px solid $c-grey-
|
|
39
|
-
background-color: $c-grey-
|
|
37
|
+
@include single-box($c-grey-l44, 0.0625rem);
|
|
38
|
+
border: 1px solid $c-grey-l44;
|
|
39
|
+
background-color: $c-grey-l96;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
@mixin neutral-status-colors {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
|
|
2
2
|
@mixin table-row($gap: 0.75rem) {
|
|
3
|
-
border-bottom: 1px solid $c-grey-
|
|
3
|
+
border-bottom: 1px solid $c-grey-l87;
|
|
4
4
|
padding-bottom: $gap;
|
|
5
5
|
padding-top: $gap;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
@mixin table-link--focus {
|
|
9
|
-
@include single-box($c-grey-
|
|
10
|
-
background-color: $c-grey-
|
|
9
|
+
@include single-box($c-grey-l21);
|
|
10
|
+
background-color: $c-grey-l21;
|
|
11
11
|
color: $white;
|
|
12
12
|
}
|
|
13
13
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
th, td {
|
|
24
24
|
@include media-breakpoint-up(md) {
|
|
25
25
|
&:not(:last-of-type) {
|
|
26
|
-
border-right: 1px solid $c-grey-
|
|
26
|
+
border-right: 1px solid $c-grey-l87;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
&:last-of-type {
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
padding: 0.8125rem 2.5rem 0.8125rem 0.8125rem;
|
|
4
4
|
background-position: right 0.75rem center;
|
|
5
5
|
background-image: url($select-arrow);
|
|
6
|
-
border: 1px solid $c-grey-
|
|
7
|
-
background-color: $c-grey-
|
|
6
|
+
border: 1px solid $c-grey-l65;
|
|
7
|
+
background-color: $c-grey-l96;
|
|
8
8
|
border-radius: $border-radius-lg;
|
|
9
9
|
background-size: 1rem 0.75rem;
|
|
10
10
|
background-repeat: no-repeat;
|
|
11
11
|
line-height: 1.375rem;
|
|
12
|
-
color: $c-grey-
|
|
12
|
+
color: $c-grey-l21;
|
|
13
13
|
font-size: inherit;
|
|
14
14
|
font-weight: 400;
|
|
15
15
|
transition: none;
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
outline: none;
|
|
25
25
|
|
|
26
26
|
~ label {
|
|
27
|
-
@include single-box($c-grey-
|
|
28
|
-
border: 1px solid $c-grey-
|
|
29
|
-
background-color: $c-grey-
|
|
27
|
+
@include single-box($c-grey-l44, 0.0625rem);
|
|
28
|
+
border: 1px solid $c-grey-l44;
|
|
29
|
+
background-color: $c-grey-l96;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
&:checked ~ label {
|
|
@@ -43,19 +43,19 @@
|
|
|
43
43
|
|
|
44
44
|
@mixin generic-input-label($state: neutral) {
|
|
45
45
|
padding: 0.75rem 0.75rem 0.625rem 2.75rem;
|
|
46
|
-
border: 1px solid $c-grey-
|
|
46
|
+
border: 1px solid $c-grey-l65;
|
|
47
47
|
border-radius: $border-radius-lg;
|
|
48
48
|
background-color: $white;
|
|
49
49
|
font-weight: 400;
|
|
50
50
|
display: block;
|
|
51
51
|
|
|
52
52
|
@if $state != disabled {
|
|
53
|
-
color: $c-grey-
|
|
53
|
+
color: $c-grey-l21;
|
|
54
54
|
cursor: pointer;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
@if $state == disabled {
|
|
58
|
-
color: $c-grey-
|
|
58
|
+
color: $c-grey-l44;
|
|
59
59
|
cursor: not-allowed;
|
|
60
60
|
|
|
61
61
|
&.spx-label-field__checkout,
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
|
|
2
2
|
@mixin all-text-inputs {
|
|
3
|
-
[type=
|
|
4
|
-
[type=
|
|
5
|
-
[type=
|
|
6
|
-
[type=
|
|
7
|
-
[type=
|
|
8
|
-
[type=
|
|
9
|
-
[type=
|
|
10
|
-
[type=
|
|
11
|
-
[type=
|
|
12
|
-
[type=
|
|
13
|
-
[type=
|
|
14
|
-
[type=
|
|
15
|
-
[type=
|
|
16
|
-
[type=
|
|
3
|
+
[type=color],
|
|
4
|
+
[type=date],
|
|
5
|
+
[type=datetime],
|
|
6
|
+
[type=datetime-local],
|
|
7
|
+
[type=email],
|
|
8
|
+
[type=month],
|
|
9
|
+
[type=number],
|
|
10
|
+
[type=password],
|
|
11
|
+
[type=search],
|
|
12
|
+
[type=tel],
|
|
13
|
+
[type=text],
|
|
14
|
+
[type=time],
|
|
15
|
+
[type=url],
|
|
16
|
+
[type=week],
|
|
17
17
|
input:not([type]),
|
|
18
18
|
textarea {
|
|
19
19
|
@content;
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
@mixin text-input-defaults {
|
|
24
24
|
border: solid $border-width $c-border-strong;
|
|
25
25
|
padding: 0.875rem 0.875rem 0.75rem;
|
|
26
|
-
background-color: $c-grey-
|
|
26
|
+
background-color: $c-grey-l96;
|
|
27
27
|
border-radius: $border-radius-lg;
|
|
28
28
|
line-height: 1.375rem;
|
|
29
|
-
color: $c-grey-
|
|
29
|
+
color: $c-grey-l21;
|
|
30
30
|
|
|
31
31
|
&:disabled, &[readonly] {
|
|
32
|
-
background-color: $c-grey-
|
|
33
|
-
color: $c-grey-
|
|
32
|
+
background-color: $c-grey-l96;
|
|
33
|
+
color: $c-grey-l44;
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
$mq: md;
|
|
4
4
|
|
|
5
5
|
thead {
|
|
6
|
-
background-color: $c-grey-
|
|
6
|
+
background-color: $c-grey-l96;
|
|
7
7
|
margin-bottom: 1rem;
|
|
8
8
|
font-weight: 700;
|
|
9
9
|
display: block;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
thead tr {
|
|
17
|
-
border: 1px solid $c-grey-
|
|
17
|
+
border: 1px solid $c-grey-l87;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
tr {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
tbody tr {
|
|
33
|
-
border: 1px solid $c-grey-
|
|
33
|
+
border: 1px solid $c-grey-l87;
|
|
34
34
|
|
|
35
35
|
&:not(:last-of-type) {
|
|
36
36
|
margin-bottom: 1rem;
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
|
|
43
43
|
@include media-breakpoint-up($mq) {
|
|
44
44
|
&:not(:last-of-type) {
|
|
45
|
-
border-right: 1px solid $c-grey-
|
|
45
|
+
border-right: 1px solid $c-grey-l87;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
&:last-of-type {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
$mq: md;
|
|
4
4
|
|
|
5
5
|
thead {
|
|
6
|
-
background-color: $c-grey-
|
|
6
|
+
background-color: $c-grey-l96;
|
|
7
7
|
margin-bottom: 1rem;
|
|
8
8
|
font-weight: 700;
|
|
9
9
|
display: block;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
thead tr, tbody tr.active {
|
|
17
|
-
border: 1px solid $c-grey-
|
|
17
|
+
border: 1px solid $c-grey-l87;
|
|
18
18
|
display: grid;
|
|
19
19
|
|
|
20
20
|
&:not(:last-of-type) {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
|
|
36
36
|
@include media-breakpoint-up($mq) {
|
|
37
37
|
&:not(:last-of-type) {
|
|
38
|
-
border-right: 1px solid $c-grey-
|
|
38
|
+
border-right: 1px solid $c-grey-l87;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
&:last-of-type {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
@include media-breakpoint-down($mq) {
|
|
28
28
|
border-radius: $border-radius-lg;
|
|
29
|
-
border: 1px solid $c-grey-
|
|
29
|
+
border: 1px solid $c-grey-l87;
|
|
30
30
|
display: block;
|
|
31
31
|
padding: 1rem;
|
|
32
32
|
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
&:not(:first-of-type):not(:last-of-type) {
|
|
47
|
-
border-top: 1px solid $c-grey-
|
|
47
|
+
border-top: 1px solid $c-grey-l87;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
&:last-of-type {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
$mq: md;
|
|
4
4
|
|
|
5
5
|
thead {
|
|
6
|
-
background-color: $c-grey-
|
|
6
|
+
background-color: $c-grey-l96;
|
|
7
7
|
margin-bottom: 1rem;
|
|
8
8
|
font-weight: 700;
|
|
9
9
|
display: block;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
thead tr, tbody tr {
|
|
17
|
-
border: 1px solid $c-grey-
|
|
17
|
+
border: 1px solid $c-grey-l87;
|
|
18
18
|
display: grid;
|
|
19
19
|
|
|
20
20
|
&:not(:last-of-type) {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
$mq: md;
|
|
4
4
|
|
|
5
5
|
thead {
|
|
6
|
-
background-color: $c-grey-
|
|
6
|
+
background-color: $c-grey-l96;
|
|
7
7
|
margin-bottom: 1rem;
|
|
8
8
|
font-weight: 700;
|
|
9
9
|
display: block;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
tr {
|
|
17
|
-
border: 1px solid $c-grey-
|
|
17
|
+
border: 1px solid $c-grey-l87;
|
|
18
18
|
display: grid;
|
|
19
19
|
|
|
20
20
|
&:not(:last-of-type) {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
text-align: center;
|
|
38
38
|
|
|
39
39
|
&:not(:last-of-type) {
|
|
40
|
-
border-right: 1px solid $c-grey-
|
|
40
|
+
border-right: 1px solid $c-grey-l87;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
&:first-of-type {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
@include media-breakpoint-down($mq) {
|
|
22
22
|
border-radius: $border-radius-lg;
|
|
23
|
-
border: 1px solid $c-grey-
|
|
23
|
+
border: 1px solid $c-grey-l87;
|
|
24
24
|
display: block;
|
|
25
25
|
padding: 1rem;
|
|
26
26
|
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
&:not(:first-of-type):not(:last-of-type) {
|
|
45
|
-
border-top: 1px solid $c-grey-
|
|
45
|
+
border-top: 1px solid $c-grey-l87;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
&:last-of-type {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
|
|
2
|
-
$c-border-faint: $c-grey-
|
|
3
|
-
$c-border-strong: $c-grey-
|
|
2
|
+
$c-border-faint: $c-grey-l87;
|
|
3
|
+
$c-border-strong: $c-grey-l65;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
|
-
$c-grey-
|
|
3
|
-
$c-grey-
|
|
4
|
-
$c-grey-
|
|
5
|
-
$c-grey-concrete
|
|
6
|
-
$c-grey-
|
|
7
|
-
$c-grey-
|
|
2
|
+
$c-grey-l11: hsl(0, 0%, 11%); // midnight
|
|
3
|
+
$c-grey-l21: hsl(0, 0%, 21%); // night
|
|
4
|
+
$c-grey-l44: hsl(0, 0%, 44%); // steel
|
|
5
|
+
$c-grey-l65:hsl(0, 0%, 65%); // concrete
|
|
6
|
+
$c-grey-l87: hsl(0, 0%, 87%); // pearl
|
|
7
|
+
$c-grey-l96: hsl(0, 0%, 96%); // alpine
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
> li {
|
|
3
|
+
&.l11 { background-color: $c-grey-l11; }
|
|
4
|
+
&.l21 { background-color: $c-grey-l21; }
|
|
5
|
+
&.l44 { background-color: $c-grey-l44; }
|
|
6
|
+
&.l65 { background-color: $c-grey-l65; }
|
|
7
|
+
&.l87 { background-color: $c-grey-l87; }
|
|
8
|
+
&.l96 { background-color: $c-grey-l96; }
|
|
9
|
+
}
|
package/library/scss/styles.scss
CHANGED
|
@@ -9,17 +9,18 @@
|
|
|
9
9
|
body {
|
|
10
10
|
line-height: $line-height-md;
|
|
11
11
|
font-family: $font-family;
|
|
12
|
-
color: $c-grey-
|
|
13
|
-
}
|
|
12
|
+
color: $c-grey-l21;
|
|
13
|
+
}
|
|
14
14
|
|
|
15
15
|
.br-color--palette {
|
|
16
16
|
list-style: none;
|
|
17
|
+
margin: 0 0 2rem;
|
|
17
18
|
display: flex;
|
|
18
19
|
gap: 0.125rem;
|
|
19
20
|
padding: 0;
|
|
20
|
-
margin: 0;
|
|
21
21
|
|
|
22
22
|
&.generic { @import "scss/colors/generic"; }
|
|
23
|
+
&.grey { @import "scss/colors/grey"; }
|
|
23
24
|
}
|
|
24
25
|
|
|
25
26
|
.br-color--sample {
|
|
@@ -36,3 +37,17 @@ body {
|
|
|
36
37
|
}
|
|
37
38
|
}
|
|
38
39
|
|
|
40
|
+
h1 {
|
|
41
|
+
border-bottom: 1px solid grey;
|
|
42
|
+
padding-bottom: 0.25rem;
|
|
43
|
+
margin: 0 0 2rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
h2 {
|
|
47
|
+
margin: 0 0 1rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
h3 {
|
|
51
|
+
margin: 0 0 0.5rem;
|
|
52
|
+
}
|
|
53
|
+
|
|
@@ -67,15 +67,15 @@
|
|
|
67
67
|
body {
|
|
68
68
|
line-height: 1.4;
|
|
69
69
|
font-family: FuturaLTPro, "Helvetica", "Arial", sans-serif;
|
|
70
|
-
color:
|
|
70
|
+
color: hsl(0deg, 0%, 21%);
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
.br-color--palette {
|
|
74
74
|
list-style: none;
|
|
75
|
+
margin: 0 0 2rem;
|
|
75
76
|
display: flex;
|
|
76
77
|
gap: 0.125rem;
|
|
77
78
|
padding: 0;
|
|
78
|
-
margin: 0;
|
|
79
79
|
}
|
|
80
80
|
.br-color--palette.generic > li {
|
|
81
81
|
background-color: hsl(21deg, 100%, 41%);
|
|
@@ -104,6 +104,24 @@ body {
|
|
|
104
104
|
.br-color--palette.generic > li.s100-l15 {
|
|
105
105
|
background-color: hsl(21deg, 100%, 15%);
|
|
106
106
|
}
|
|
107
|
+
.br-color--palette.grey > li.l11 {
|
|
108
|
+
background-color: hsl(0deg, 0%, 11%);
|
|
109
|
+
}
|
|
110
|
+
.br-color--palette.grey > li.l21 {
|
|
111
|
+
background-color: hsl(0deg, 0%, 21%);
|
|
112
|
+
}
|
|
113
|
+
.br-color--palette.grey > li.l44 {
|
|
114
|
+
background-color: hsl(0deg, 0%, 44%);
|
|
115
|
+
}
|
|
116
|
+
.br-color--palette.grey > li.l65 {
|
|
117
|
+
background-color: hsl(0deg, 0%, 65%);
|
|
118
|
+
}
|
|
119
|
+
.br-color--palette.grey > li.l87 {
|
|
120
|
+
background-color: hsl(0deg, 0%, 87%);
|
|
121
|
+
}
|
|
122
|
+
.br-color--palette.grey > li.l96 {
|
|
123
|
+
background-color: hsl(0deg, 0%, 96%);
|
|
124
|
+
}
|
|
107
125
|
|
|
108
126
|
.br-color--sample {
|
|
109
127
|
background: grey;
|
|
@@ -116,4 +134,18 @@ body {
|
|
|
116
134
|
font-weight: bold;
|
|
117
135
|
color: grey;
|
|
118
136
|
display: grid;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
h1 {
|
|
140
|
+
border-bottom: 1px solid grey;
|
|
141
|
+
padding-bottom: 0.25rem;
|
|
142
|
+
margin: 0 0 2rem;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
h2 {
|
|
146
|
+
margin: 0 0 1rem;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
h3 {
|
|
150
|
+
margin: 0 0 0.5rem;
|
|
119
151
|
}
|
package/library/views/index.pug
CHANGED
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
extends layout
|
|
2
2
|
block content
|
|
3
3
|
h1 Color Palettes
|
|
4
|
+
|
|
5
|
+
h2 Grey
|
|
6
|
+
ul.br-color--palette.grey
|
|
7
|
+
li.br-color--sample.l11
|
|
8
|
+
li.br-color--sample.l21
|
|
9
|
+
li.br-color--sample.l44
|
|
10
|
+
li.br-color--sample.l65
|
|
11
|
+
li.br-color--sample.l87
|
|
12
|
+
li.br-color--sample.l96
|
|
13
|
+
|
|
4
14
|
h2 Brand
|
|
15
|
+
|
|
5
16
|
h3 Generic
|
|
6
17
|
ul.br-color--palette.generic
|
|
7
18
|
li.br-color--sample
|
package/package.json
CHANGED
package/scss/_close-icon.scss
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
width: 1.875rem;
|
|
5
5
|
|
|
6
6
|
.outline, .cross {
|
|
7
|
-
fill: $c-grey-
|
|
7
|
+
fill: $c-grey-l21;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.fill {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
&.focus-visible {
|
|
25
|
-
@include single-box($c-grey-
|
|
25
|
+
@include single-box($c-grey-l21);
|
|
26
26
|
background-color: $white;
|
|
27
27
|
border-radius: 50%;
|
|
28
28
|
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.fill {
|
|
34
|
-
fill: $c-grey-
|
|
34
|
+
fill: $c-grey-l21;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
}
|
package/scss/_footer.scss
CHANGED
package/scss/_input.scss
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
input::placeholder {
|
|
9
|
-
color: $c-grey-
|
|
9
|
+
color: $c-grey-l65;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
input[type=checkbox],
|
|
@@ -27,6 +27,14 @@ input[type=number] {
|
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
input[type=file] {
|
|
31
|
+
@include focus {
|
|
32
|
+
@include double-box($c-grey-l96, $c-grey-l44);
|
|
33
|
+
background-color: $c-grey-l96;
|
|
34
|
+
outline: none;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
30
38
|
@include all-text-inputs {
|
|
31
39
|
@include text-input-defaults;
|
|
32
40
|
@include focus {
|
package/scss/_klaro.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@mixin cm-button {
|
|
2
|
-
background: $c-grey-
|
|
2
|
+
background: $c-grey-l44;
|
|
3
3
|
border-radius: $border-radius;
|
|
4
4
|
font-size: $font-size-sm;
|
|
5
5
|
padding: 0.5em 0.75em;
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
&.focus-visible {
|
|
21
|
-
@include double-box($c-grey-
|
|
21
|
+
@include double-box($c-grey-l21, $white, md);
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
&.cm-btn-success {
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
color: inherit;
|
|
69
69
|
|
|
70
70
|
&.focus-visible {
|
|
71
|
-
@include double-box($c-grey-
|
|
72
|
-
background-color: $c-grey-
|
|
71
|
+
@include double-box($c-grey-l21, $c-grey-l96, md);
|
|
72
|
+
background-color: $c-grey-l21;
|
|
73
73
|
outline: none;
|
|
74
74
|
}
|
|
75
75
|
}
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.cm-list-description {
|
|
93
|
-
color: $c-grey-
|
|
93
|
+
color: $c-grey-l65;
|
|
94
94
|
font-size: $font-size-sm;
|
|
95
95
|
padding-top: 0.25rem;
|
|
96
96
|
}
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
top: 0;
|
|
105
105
|
|
|
106
106
|
&:focus + .cm-list-label .slider {
|
|
107
|
-
@include double-box($c-grey-
|
|
107
|
+
@include double-box($c-grey-l21, $white);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
&:checked + .cm-list-label .slider {
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
.slider {
|
|
127
|
-
background-color: $c-grey-
|
|
127
|
+
background-color: $c-grey-l44;
|
|
128
128
|
display: inline-block;
|
|
129
129
|
position: absolute;
|
|
130
130
|
cursor: pointer;
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
.klaro {
|
|
164
|
-
color: $c-grey-
|
|
164
|
+
color: $c-grey-l96;
|
|
165
165
|
|
|
166
166
|
label {
|
|
167
167
|
margin-bottom: 0.25rem;
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
&.focus-visible {
|
|
196
|
-
@include double-box($c-grey-
|
|
196
|
+
@include double-box($c-grey-l21, $c-grey-l87);
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
|
|
@@ -223,8 +223,8 @@
|
|
|
223
223
|
|
|
224
224
|
.cm-modal {
|
|
225
225
|
&.cm-klaro {
|
|
226
|
-
background: $c-grey-
|
|
227
|
-
color: $c-grey-
|
|
226
|
+
background: $c-grey-l21;
|
|
227
|
+
color: $c-grey-l87;
|
|
228
228
|
box-shadow: 0 4px 6px 0 rgba($black, 0.2),
|
|
229
229
|
5px 5px 10px 0 rgba($black, 0.2);
|
|
230
230
|
transform: translateY(-50%);
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
}
|
|
247
247
|
|
|
248
248
|
.cm-header {
|
|
249
|
-
border-bottom: 1px solid $c-grey-
|
|
249
|
+
border-bottom: 1px solid $c-grey-l44;
|
|
250
250
|
padding: 1rem 3.15rem 1rem 1rem;
|
|
251
251
|
font-size: $font-size-sm;
|
|
252
252
|
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
p {
|
|
258
|
-
color: $c-grey-
|
|
258
|
+
color: $c-grey-l65;
|
|
259
259
|
}
|
|
260
260
|
}
|
|
261
261
|
|
|
@@ -302,7 +302,7 @@
|
|
|
302
302
|
}
|
|
303
303
|
|
|
304
304
|
&.cm-toggle-all {
|
|
305
|
-
border-top: 1px solid $c-grey-
|
|
305
|
+
border-top: 1px solid $c-grey-l44;
|
|
306
306
|
padding-top: 1rem;
|
|
307
307
|
}
|
|
308
308
|
}
|
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
}
|
|
322
322
|
|
|
323
323
|
.cm-footer {
|
|
324
|
-
border-top: 1px solid $c-grey-
|
|
324
|
+
border-top: 1px solid $c-grey-l44;
|
|
325
325
|
padding: 1rem;
|
|
326
326
|
|
|
327
327
|
.cm-powered-by {
|
|
@@ -337,7 +337,7 @@
|
|
|
337
337
|
|
|
338
338
|
.cm-list-label {
|
|
339
339
|
&.focus-visible {
|
|
340
|
-
@include double-box($c-grey-
|
|
340
|
+
@include double-box($c-grey-l21, $c-grey-l96);
|
|
341
341
|
outline: none;
|
|
342
342
|
}
|
|
343
343
|
}
|
|
@@ -365,12 +365,12 @@
|
|
|
365
365
|
outline: none;
|
|
366
366
|
|
|
367
367
|
svg {
|
|
368
|
-
@include double-box($c-grey-
|
|
368
|
+
@include double-box($c-grey-l21, $white, md);
|
|
369
369
|
}
|
|
370
370
|
}
|
|
371
371
|
|
|
372
372
|
svg {
|
|
373
|
-
stroke: $c-grey-
|
|
373
|
+
stroke: $c-grey-l87;
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
376
|
}
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
|
|
382
382
|
&:not(.cookie-modal-notice) {
|
|
383
383
|
@include cookie-position;
|
|
384
|
-
background: $c-grey-
|
|
384
|
+
background: $c-grey-l21;
|
|
385
385
|
|
|
386
386
|
.cn-body {
|
|
387
387
|
padding: 1.25rem;
|
|
@@ -399,7 +399,7 @@
|
|
|
399
399
|
}
|
|
400
400
|
|
|
401
401
|
p {
|
|
402
|
-
color: $c-grey-
|
|
402
|
+
color: $c-grey-l65;
|
|
403
403
|
}
|
|
404
404
|
|
|
405
405
|
&.cn-changes {
|
|
@@ -420,7 +420,7 @@
|
|
|
420
420
|
}
|
|
421
421
|
|
|
422
422
|
.cn-learn-more {
|
|
423
|
-
background: $c-grey-
|
|
423
|
+
background: $c-grey-l44;
|
|
424
424
|
border-radius: $border-radius;
|
|
425
425
|
text-decoration: none;
|
|
426
426
|
display: inline-block;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
$angle: 120deg;
|
|
3
3
|
|
|
4
4
|
.card[membership] {
|
|
5
|
-
box-shadow: 0 0 0.375rem rgba($c-grey-
|
|
6
|
-
background: $c-grey-
|
|
5
|
+
box-shadow: 0 0 0.375rem rgba($c-grey-l44, 0.5);
|
|
6
|
+
background: $c-grey-l21;
|
|
7
7
|
width: calc(100% - 1rem);
|
|
8
8
|
display: inline-block;
|
|
9
9
|
margin: 0.5rem;
|
package/scss/card/_related.scss
CHANGED