barbican-reset 1.9.8 → 1.9.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.
@@ -1,9 +1,18 @@
1
+
2
+ @mixin focus-visible {
3
+ &[data-focus-visible-added],
4
+ &:focus-visible {
5
+ @content;
6
+ }
7
+ }
8
+
1
9
  @mixin focus {
2
10
  &:not([disabled=disabled]) {
3
- &[data-focus-visible-added],
4
- &:focus-visible,
5
- &:focus,
6
- &:hover {
11
+ @include focus-visible {
12
+ @content;
13
+ }
14
+
15
+ &:focus, &:hover {
7
16
  @content;
8
17
  }
9
18
  }
@@ -49,4 +58,9 @@
49
58
  background-color: $c-status-neutral-fade;
50
59
  border: 1px solid $c-status-neutral;
51
60
  color: $c-status-neutral;
61
+ }
62
+
63
+ @mixin hover-label-table {
64
+ box-shadow: none;
65
+ border: none;
52
66
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "_args": [
3
3
  [
4
- "barbican-reset@1.9.8",
4
+ "barbican-reset@1.9.9",
5
5
  "/Users/pheading/Sites/eticketing-vue"
6
6
  ]
7
7
  ],
8
- "_from": "barbican-reset@1.9.8",
9
- "_id": "barbican-reset@1.9.8",
8
+ "_from": "barbican-reset@1.9.9",
9
+ "_id": "barbican-reset@1.9.9",
10
10
  "_inBundle": false,
11
11
  "_integrity": "sha512-9QMrzuoZ/NZfFlFagC6go3ofn5hBhU9rtSPEeGH0krwY5dBKOlfs8oGIvqUaEGFKI+jQ3spuDOQoeyYK5NRiQw==",
12
12
  "_location": "/barbican-reset",
@@ -35,18 +35,18 @@
35
35
  "_requested": {
36
36
  "type": "version",
37
37
  "registry": true,
38
- "raw": "barbican-reset@1.9.8",
38
+ "raw": "barbican-reset@1.9.9",
39
39
  "name": "barbican-reset",
40
40
  "escapedName": "barbican-reset",
41
- "rawSpec": "1.9.8",
41
+ "rawSpec": "1.9.9",
42
42
  "saveSpec": null,
43
- "fetchSpec": "1.9.8"
43
+ "fetchSpec": "1.9.9"
44
44
  },
45
45
  "_requiredBy": [
46
46
  "/"
47
47
  ],
48
- "_resolved": "https://registry.npmjs.org/barbican-reset/-/barbican-reset-1.9.8.tgz",
49
- "_spec": "1.9.8",
48
+ "_resolved": "https://registry.npmjs.org/barbican-reset/-/barbican-reset-1.9.9.tgz",
49
+ "_spec": "1.9.9",
50
50
  "_where": "/Users/pheading/Sites/eticketing-vue",
51
51
  "author": {
52
52
  "name": "Paul Heading"
@@ -96,5 +96,5 @@
96
96
  "test": "echo \"Error: no test specified\" && exit 1"
97
97
  },
98
98
  "style": "dist/css/barbican-reset.css",
99
- "version": "1.9.8"
99
+ "version": "1.9.9"
100
100
  }
package/scss/_atomic.scss CHANGED
@@ -63,6 +63,10 @@ $paddings05: "padding-top", "padding-bottom", "padding-right", "padding-left";
63
63
  margin: 0;
64
64
  }
65
65
 
66
+ .margin-bottom-0 {
67
+ margin-bottom: 0;
68
+ }
69
+
66
70
  .margin-top-025 {
67
71
  margin-top: 0.25rem;
68
72
  }
@@ -1,3 +1,4 @@
1
+
1
2
  .custom-checkbox {
2
3
  @include checkbox-input;
3
4
 
@@ -12,18 +13,19 @@
12
13
  margin-top: 0.625rem;
13
14
  }
14
15
 
15
- + label {
16
+ ~ label {
16
17
  @include sr-only;
17
18
  }
18
19
 
19
20
  @include focus {
21
+ ~ label {
22
+ @include hover-label-table;
23
+ }
24
+ }
25
+
26
+ @include focus-visible {
20
27
  outline: 1px solid $c-grey-l65;
21
28
  outline-offset: 0.125rem;
22
-
23
- ~ label {
24
- box-shadow: none;
25
- border: none;
26
- }
27
29
  }
28
30
  }
29
31