barbican-reset 2.12.0 → 2.13.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/scss/_btn.scss +16 -0
package/package.json CHANGED
@@ -54,5 +54,5 @@
54
54
  "watch:patterns": "cd patterns && gulp watch"
55
55
  },
56
56
  "style": "dist/css/barbican-reset.css",
57
- "version": "2.12.0"
57
+ "version": "2.13.0"
58
58
  }
package/scss/_btn.scss CHANGED
@@ -6,11 +6,27 @@
6
6
  @include btn-primary;
7
7
  }
8
8
 
9
+ // branded buttons
10
+
11
+ @each $key, $value in $brands {
12
+ &.btn-#{$key} {
13
+ @include solid-button(color($key));
14
+ }
15
+ }
16
+
9
17
  &.btn-outline-primary {
10
18
  // orange outline, fill on focus
11
19
  @include btn-outline-primary;
12
20
  }
13
21
 
22
+ // branded outline buttons
23
+
24
+ @each $key, $value in $brands {
25
+ &.btn-outline-#{$key} {
26
+ @include outline-button(color($key));
27
+ }
28
+ }
29
+
14
30
  &.btn-outline-header {
15
31
  // orange outline, fill on focus
16
32
  @include btn-outline-header;