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.
- package/package.json +1 -1
- package/scss/_btn.scss +16 -0
package/package.json
CHANGED
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;
|