barbican-reset 2.25.0 → 2.27.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.
@@ -139,7 +139,7 @@
139
139
  }
140
140
 
141
141
  @include focus {
142
- @include single-box($c-grey-l21,
142
+ @include single-box(currentColor,
143
143
  0.1875rem); // @BUG: safari outline + border-radius
144
144
  border-radius: 50%;
145
145
 
@@ -148,7 +148,7 @@
148
148
  }
149
149
 
150
150
  path.tint {
151
- fill: $c-grey-l21;
151
+ fill: currentColor;
152
152
  }
153
153
  }
154
154
  }
@@ -331,6 +331,11 @@
331
331
  @include display-button(flex, 0.5);
332
332
  }
333
333
 
334
+ @mixin btn-remove-membership-from-basket {
335
+ @include solid-button($background: $c-status-error);
336
+ @include display-button(flex, 0.5);
337
+ }
338
+
334
339
  // Access Overlay Work -- End
335
340
 
336
341
  @mixin btn-expand {
package/package.json CHANGED
@@ -103,5 +103,5 @@
103
103
  "watch:patterns": "cd patterns && gulp watch"
104
104
  },
105
105
  "style": "dist/css/barbican-reset.css",
106
- "version": "2.25.0"
106
+ "version": "2.27.0"
107
107
  }
package/scss/_btn.scss CHANGED
@@ -143,9 +143,13 @@
143
143
  @include btn-add-membership-to-basket;
144
144
  }
145
145
 
146
+ &.btn-remove-membership-from-basket {
147
+ @include btn-remove-membership-from-basket;
148
+ }
149
+
146
150
  // modifyers
147
151
 
148
152
  &.expand {
149
153
  @include btn-expand;
150
154
  }
151
- }
155
+ }