barbican-reset 2.59.0 → 2.60.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/package.json +1 -1
- package/scss/_close-icon.scss +3 -3
- package/scss/_footer.scss +2 -3
- package/scss/_main.scss +1 -1
- package/scss/card/_membership.scss +1 -1
- package/scss/helpers/mixins/_br-skiplink.scss +3 -3
- package/scss/helpers/mixins/_content.scss +1 -1
- package/scss/helpers/mixins/_festival.scss +1 -1
- package/scss/helpers/mixins/_focus.scss +5 -5
- package/scss/helpers/mixins/input/_generic.scss +1 -1
- package/scss/helpers/variables/index.scss +1 -1
package/package.json
CHANGED
package/scss/_close-icon.scss
CHANGED
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
|
|
24
24
|
&.focus-visible {
|
|
25
25
|
@include single-box($c-grey-l21);
|
|
26
|
-
background-color:
|
|
26
|
+
background-color: white;
|
|
27
27
|
border-radius: 50%;
|
|
28
28
|
|
|
29
29
|
.outline,
|
|
30
30
|
.cross {
|
|
31
|
-
fill:
|
|
31
|
+
fill: white;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
.fill {
|
|
35
35
|
fill: $c-grey-l21;
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
-
}
|
|
38
|
+
}
|
package/scss/_footer.scss
CHANGED
package/scss/_main.scss
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
@mixin br-skiplink {
|
|
2
|
-
border:
|
|
3
|
-
|
|
4
|
-
background-color: $br-white;
|
|
2
|
+
border: 1px solid $c-grey-l21;
|
|
3
|
+
background-color: white;
|
|
5
4
|
color: $c-grey-l21;
|
|
6
5
|
position: absolute;
|
|
7
6
|
padding: 0.5rem;
|
|
7
|
+
margin: 0.5rem;
|
|
8
8
|
z-index: -1;
|
|
9
9
|
opacity: 0;
|
|
10
10
|
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
// @mixin focus-tabs-dark {
|
|
46
|
-
// @include single-box(
|
|
47
|
-
// background-color:
|
|
46
|
+
// @include single-box(white);
|
|
47
|
+
// background-color: white;
|
|
48
48
|
// color: $black;
|
|
49
49
|
// } // deprecated
|
|
50
50
|
|
|
@@ -54,17 +54,17 @@
|
|
|
54
54
|
z-index: 2;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
@mixin double-box($bg:
|
|
57
|
+
@mixin double-box($bg: white, $col: $black, $bg_size: 0.25rem, $col_size: 0.15rem) {
|
|
58
58
|
@include box-setup;
|
|
59
59
|
box-shadow: 0 0 0 $bg_size $bg, 0 0 0 ($bg_size + $col_size) $col;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
@mixin single-box($bg:
|
|
62
|
+
@mixin single-box($bg: white, $size: 0.25rem) {
|
|
63
63
|
@include box-setup;
|
|
64
64
|
box-shadow: 0 0 0 $size $bg;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
@mixin link-focus($color: $c-grey-l11, $border:
|
|
67
|
+
@mixin link-focus($color: $c-grey-l11, $border: white) {
|
|
68
68
|
@include focus {
|
|
69
69
|
@include double-box($color, $border);
|
|
70
70
|
background-color: $color;
|