barbican-reset 2.2.6 → 2.2.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.
- package/helpers/mixins/_buttons.scss +14 -14
- package/package.json +9 -9
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
|
|
60
60
|
@mixin solid-button(
|
|
61
61
|
$background: $c-brand-generic,
|
|
62
|
-
$color:
|
|
62
|
+
$color: white,
|
|
63
63
|
$border: 1px,
|
|
64
64
|
$padding: false,
|
|
65
65
|
$margin: false,
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
|
|
111
111
|
@mixin outline-button(
|
|
112
112
|
$color: $c-brand-generic,
|
|
113
|
-
$background:
|
|
113
|
+
$background: white,
|
|
114
114
|
$border: 1px,
|
|
115
115
|
$padding: false,
|
|
116
116
|
$margin: false,
|
|
@@ -223,7 +223,7 @@
|
|
|
223
223
|
|
|
224
224
|
@mixin btn-outline-header {
|
|
225
225
|
@include outline-button(
|
|
226
|
-
$color:
|
|
226
|
+
$color: white,
|
|
227
227
|
$background: $c-brand-generic,
|
|
228
228
|
$border: 0.125rem,
|
|
229
229
|
$display: "flex"
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
@mixin btn-power-login {
|
|
251
|
-
@include solid-button($background:
|
|
251
|
+
@include solid-button($background: white, $color: $c-power-blue);
|
|
252
252
|
}
|
|
253
253
|
|
|
254
254
|
@mixin btn-info {
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
|
|
286
286
|
@include focus {
|
|
287
287
|
background-color: $c-grey-l44;
|
|
288
|
-
color:
|
|
288
|
+
color: white;
|
|
289
289
|
}
|
|
290
290
|
}
|
|
291
291
|
|
|
@@ -304,7 +304,7 @@
|
|
|
304
304
|
border-radius: 50%;
|
|
305
305
|
|
|
306
306
|
path.cross {
|
|
307
|
-
fill:
|
|
307
|
+
fill: white;
|
|
308
308
|
}
|
|
309
309
|
|
|
310
310
|
path.tint {
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
}
|
|
335
335
|
|
|
336
336
|
@mixin btn-membership-card {
|
|
337
|
-
@include outline-button($color:
|
|
337
|
+
@include outline-button($color: white, $background: transparent);
|
|
338
338
|
|
|
339
339
|
@include focus {
|
|
340
340
|
&.member {
|
|
@@ -347,20 +347,20 @@
|
|
|
347
347
|
}
|
|
348
348
|
|
|
349
349
|
@mixin btn-video-login {
|
|
350
|
-
|
|
350
|
+
@include solid-button($background: white, $color: #0a0a0a);
|
|
351
351
|
}
|
|
352
352
|
|
|
353
353
|
@mixin btn-cta {
|
|
354
354
|
@include solid-button($background: $c-grey-l21, $display: "flex");
|
|
355
|
-
fill:
|
|
355
|
+
fill: white;
|
|
356
356
|
}
|
|
357
357
|
|
|
358
358
|
@mixin btn-carousel {
|
|
359
359
|
@include solid-button($c-grey-l21);
|
|
360
|
-
@include single-box(
|
|
360
|
+
@include single-box(white);
|
|
361
361
|
border-radius: 50%;
|
|
362
362
|
font-size: 0;
|
|
363
|
-
fill:
|
|
363
|
+
fill: white;
|
|
364
364
|
|
|
365
365
|
@include media-breakpoint-down(lg) {
|
|
366
366
|
padding: 0.75rem;
|
|
@@ -378,7 +378,7 @@
|
|
|
378
378
|
}
|
|
379
379
|
|
|
380
380
|
@mixin btn-menu-focus($brand: $c-brand-generic) {
|
|
381
|
-
background-color:
|
|
381
|
+
background-color: white;
|
|
382
382
|
color: $brand;
|
|
383
383
|
|
|
384
384
|
path {
|
|
@@ -389,7 +389,7 @@
|
|
|
389
389
|
@mixin btn-menu {
|
|
390
390
|
@include display-button(flex, 0.75);
|
|
391
391
|
@include outline-button(
|
|
392
|
-
$color:
|
|
392
|
+
$color: white,
|
|
393
393
|
$background: $c-brand-generic,
|
|
394
394
|
$padding: 0 0.75rem,
|
|
395
395
|
$margin: 0.25rem,
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
@mixin btn-basket {
|
|
411
411
|
@include display-button(flex, 0.5);
|
|
412
412
|
@include solid-button(
|
|
413
|
-
$background:
|
|
413
|
+
$background: white,
|
|
414
414
|
$color: $c-brand-generic,
|
|
415
415
|
$padding: 0 0.75rem,
|
|
416
416
|
$margin: 0.25rem,
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_args": [
|
|
3
3
|
[
|
|
4
|
-
"barbican-reset@2.2.
|
|
4
|
+
"barbican-reset@2.2.7",
|
|
5
5
|
"/Users/pheading/Sites/eticketing-vue"
|
|
6
6
|
]
|
|
7
7
|
],
|
|
8
|
-
"_from": "barbican-reset@2.2.
|
|
9
|
-
"_id": "barbican-reset@2.2.
|
|
8
|
+
"_from": "barbican-reset@2.2.7",
|
|
9
|
+
"_id": "barbican-reset@2.2.7",
|
|
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@2.2.
|
|
38
|
+
"raw": "barbican-reset@2.2.7",
|
|
39
39
|
"name": "barbican-reset",
|
|
40
40
|
"escapedName": "barbican-reset",
|
|
41
|
-
"rawSpec": "2.2.
|
|
41
|
+
"rawSpec": "2.2.7",
|
|
42
42
|
"saveSpec": null,
|
|
43
|
-
"fetchSpec": "2.2.
|
|
43
|
+
"fetchSpec": "2.2.7"
|
|
44
44
|
},
|
|
45
45
|
"_requiredBy": [
|
|
46
46
|
"/"
|
|
47
47
|
],
|
|
48
|
-
"_resolved": "https://registry.npmjs.org/barbican-reset/-/barbican-reset-2.2.
|
|
49
|
-
"_spec": "2.2.
|
|
48
|
+
"_resolved": "https://registry.npmjs.org/barbican-reset/-/barbican-reset-2.2.7.tgz",
|
|
49
|
+
"_spec": "2.2.7",
|
|
50
50
|
"_where": "/Users/pheading/Sites/eticketing-vue",
|
|
51
51
|
"author": {
|
|
52
52
|
"name": "Paul Heading"
|
|
@@ -100,5 +100,5 @@
|
|
|
100
100
|
"watch:patterns": "cd patterns && gulp watch"
|
|
101
101
|
},
|
|
102
102
|
"style": "dist/css/barbican-reset.css",
|
|
103
|
-
"version": "2.2.
|
|
103
|
+
"version": "2.2.7"
|
|
104
104
|
}
|