barbican-reset 1.4.6 → 1.4.7

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.
@@ -19,20 +19,14 @@ export default {
19
19
  <style lang="scss" module>
20
20
 
21
21
  .skiplink {
22
- border: 0.25rem solid $black;
22
+ border: 0.25rem solid $c-grey-night;
23
+ border-radius: $border-radius-lg;
23
24
  background-color: $white;
24
- display: inline-block;
25
- border-radius: 0.5rem;
25
+ color: $c-grey-night;
26
26
  position: absolute;
27
27
  padding: 0.5rem;
28
- color: $black;
29
- margin: auto;
30
- width: 12rem;
31
28
  z-index: -1;
32
- top: 0.5rem;
33
29
  opacity: 0;
34
- right: 0;
35
- left: 0;
36
30
 
37
31
  @include focus {
38
32
  opacity: 1;
@@ -17,4 +17,12 @@
17
17
  @import "festival.scss";
18
18
  @import "focus.scss";
19
19
  @import "font.scss";
20
- @import "loading.scss";
20
+ @import "loading.scss";
21
+
22
+ @mixin table_link {
23
+ @include focus {
24
+ @include single-box($c-grey-night);
25
+ background-color: $c-grey-night;
26
+ color: $white;
27
+ }
28
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barbican-reset",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "A collection of useful scss imports and js scripts, that provide consistent styling and functionality across barbican projects.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -51,4 +51,8 @@ table.etickets {
51
51
  display: none;
52
52
  }
53
53
  }
54
+
55
+ a {
56
+ @include table_link;
57
+ }
54
58
  }
@@ -13,7 +13,7 @@ table.orders {
13
13
  }
14
14
  }
15
15
 
16
- thead tr, tbody tr.active {
16
+ thead tr, tbody tr {
17
17
  border: 1px solid $c-grey-pearl;
18
18
  display: grid;
19
19
 
@@ -44,6 +44,12 @@ table.orders {
44
44
  }
45
45
  }
46
46
 
47
+ tr.full-width {
48
+ justify-content: center;
49
+ grid-template: none;
50
+ border: none;
51
+ }
52
+
47
53
  label {
48
54
  font-size: $font-size-lg;
49
55
 
@@ -51,4 +57,8 @@ table.orders {
51
57
  display: none;
52
58
  }
53
59
  }
60
+
61
+ a {
62
+ @include table_link;
63
+ }
54
64
  }