barbican-reset 1.6.9 → 1.7.3
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/animations/confirm.js +62 -0
- package/animations/index.js +8 -0
- package/components/br_container.vue +2 -2
- package/components/br_footer/lower.vue +11 -0
- package/components/br_footer/upper.vue +17 -0
- package/components/br_form_update.vue +2 -22
- package/components/footer_logos.vue +1 -0
- package/helpers/mixins/_br-alert.scss +99 -0
- package/helpers/mixins/_br-footer.scss +27 -0
- package/helpers/mixins/_br-form-row.scss +29 -0
- package/helpers/mixins/_br-form-update.scss +15 -0
- package/helpers/mixins/_card.scss +46 -2
- package/helpers/mixins/_city-of-london.scss +12 -0
- package/helpers/mixins/_content.scss +3 -3
- package/helpers/mixins/_focus.scss +2 -2
- package/helpers/mixins/_table.scss +29 -28
- package/helpers/mixins/index.scss +5 -2
- package/helpers/mixins/input/_generic.scss +3 -2
- package/helpers/mixins/input/_text.scss +21 -0
- package/helpers/mixins/table/_basket.scss +33 -0
- package/{scss → helpers/mixins}/table/_details.scss +2 -3
- package/{scss → helpers/mixins}/table/_etickets.scss +2 -2
- package/{scss → helpers/mixins}/table/_gifts.scss +2 -2
- package/helpers/mixins/table/_membership.scss +8 -0
- package/{scss → helpers/mixins}/table/_orders.scss +2 -12
- package/{scss → helpers/mixins}/table/_preferences.scss +2 -2
- package/{scss → helpers/mixins}/table/_resale.scss +2 -1
- package/{scss → helpers/mixins}/table/_section.scss +1 -1
- package/{scss → helpers/mixins}/table/_tickets.scss +2 -2
- package/helpers/variables/_alerts.scss +7 -0
- package/helpers/variables/_layout.scss +3 -6
- package/helpers/variables/_typography.scss +0 -4
- package/helpers/variables/colors/_brand.scss +1 -0
- package/helpers/variables/index.scss +1 -0
- package/icons/city_of_london_lockup.vue +2 -20
- package/index.js +2 -2
- package/package.json +2 -2
- package/scss/_br-alert.scss +49 -0
- package/scss/_br-footer.scss +8 -0
- package/scss/{_form-row.scss → _br-form-row.scss} +1 -25
- package/scss/_br-form-update.scss +8 -0
- package/scss/_br-wrap.scss +3 -3
- package/scss/_city-of-london.scss +4 -0
- package/scss/_fonts.scss +20 -22
- package/scss/_input.scss +7 -7
- package/scss/_list.scss +1 -1
- package/scss/_table.scss +25 -0
- package/scss/card/index.scss +6 -21
- package/scss/index.scss +7 -5
- package/components/footer_lower.vue +0 -20
- package/components/footer_upper.vue +0 -51
- package/scss/_alert.scss +0 -132
- package/scss/table/_basket.scss +0 -31
- package/scss/table/_membership.scss +0 -6
- package/scss/table/index.scss +0 -20
package/scss/_alert.scss
DELETED
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
$neutral_wrap: $c-status-neutral, $c-status-neutral-fade, $c-status-neutral-light;
|
|
3
|
-
$success_wrap: $c-status-success, $c-status-success-fade, $c-status-success-light;
|
|
4
|
-
$error_wrap: $c-status-error, $c-status-error-fade, $c-status-error-light;
|
|
5
|
-
|
|
6
|
-
$neutral_focus: $c-status-neutral, $c-status-neutral-fade;
|
|
7
|
-
$success_focus: $c-status-success, $c-status-success-fade;
|
|
8
|
-
$error_focus: $c-status-error, $c-status-error-fade;
|
|
9
|
-
|
|
10
|
-
@mixin status_focus($main, $fade) {
|
|
11
|
-
@include focus {
|
|
12
|
-
@include single-box($main);
|
|
13
|
-
background-color: $main;
|
|
14
|
-
color: $fade;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
@mixin exit($main, $fade) {
|
|
19
|
-
path.cross {
|
|
20
|
-
fill: $main;
|
|
21
|
-
}
|
|
22
|
-
path.tint {
|
|
23
|
-
fill: $fade;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
@include focus {
|
|
27
|
-
outline-color: $main;
|
|
28
|
-
|
|
29
|
-
path.cross {
|
|
30
|
-
fill: $fade;
|
|
31
|
-
}
|
|
32
|
-
path.tint {
|
|
33
|
-
fill: $main;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
@mixin wrap($main, $fade, $light) {
|
|
39
|
-
background-color: $fade;
|
|
40
|
-
border-color: $light;
|
|
41
|
-
color: $main;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.br-alert {
|
|
45
|
-
@include media-breakpoint-down(xs) {
|
|
46
|
-
font-size: $font-size-sm;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
&.center {
|
|
50
|
-
text-align: center;
|
|
51
|
-
|
|
52
|
-
.wrap {
|
|
53
|
-
justify-content: center;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.wrap {
|
|
58
|
-
@include wrap($neutral_wrap...);
|
|
59
|
-
border-radius: $border-radius-lg;
|
|
60
|
-
border-width: $border-width;
|
|
61
|
-
padding: 0.75rem 0.875rem;
|
|
62
|
-
border-style: solid;
|
|
63
|
-
|
|
64
|
-
.btn.btn-link, a {
|
|
65
|
-
@include status_focus($neutral_focus...);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
&.error {
|
|
69
|
-
@include wrap($error_wrap...);
|
|
70
|
-
|
|
71
|
-
.btn.btn-link, a {
|
|
72
|
-
@include status_focus($error_focus...);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
&.success {
|
|
77
|
-
@include wrap($success_wrap...);
|
|
78
|
-
|
|
79
|
-
.btn.btn-link, a {
|
|
80
|
-
@include status_focus($success_focus...);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
&.inline {
|
|
85
|
-
@include inline-block;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
&.toggle {
|
|
89
|
-
justify-content: space-between;
|
|
90
|
-
align-items: center;
|
|
91
|
-
display: flex;
|
|
92
|
-
gap: $space;
|
|
93
|
-
|
|
94
|
-
&.inline {
|
|
95
|
-
display: inline-flex;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
p {
|
|
100
|
-
margin-bottom: 0;
|
|
101
|
-
|
|
102
|
-
+ p {
|
|
103
|
-
margin-top: 1rem;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.title {
|
|
109
|
-
margin-bottom: 0.25rem;
|
|
110
|
-
font-weight: 700;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.flex {
|
|
114
|
-
justify-content: space-between;
|
|
115
|
-
display: flex;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.btn.btn-exit {
|
|
119
|
-
|
|
120
|
-
&.error {
|
|
121
|
-
@include exit($error_focus...);
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
&.success {
|
|
125
|
-
@include exit($success_focus...);
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
&.neutral {
|
|
129
|
-
@include exit($neutral_focus...);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
package/scss/table/_basket.scss
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
table.basket tr {
|
|
3
|
-
@include table-row;
|
|
4
|
-
justify-content: space-between;
|
|
5
|
-
display: flex;
|
|
6
|
-
gap: 0.75rem;
|
|
7
|
-
|
|
8
|
-
&.promo {
|
|
9
|
-
padding-bottom: 1rem;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
&.donation {
|
|
13
|
-
@include basket-row-grid;
|
|
14
|
-
padding-bottom: 1rem;
|
|
15
|
-
padding-top: 1rem;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
&.total {
|
|
19
|
-
font-size: $h4-font-size;
|
|
20
|
-
border-bottom: none;
|
|
21
|
-
font-weight: 700;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&.continue {
|
|
25
|
-
border-bottom: none;
|
|
26
|
-
|
|
27
|
-
td {
|
|
28
|
-
width: 100%;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
package/scss/table/index.scss
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
@import "tickets";
|
|
3
|
-
@import "basket";
|
|
4
|
-
@import "section";
|
|
5
|
-
@import "orders";
|
|
6
|
-
@import "details";
|
|
7
|
-
@import "resale";
|
|
8
|
-
@import "preferences";
|
|
9
|
-
@import "etickets";
|
|
10
|
-
@import "membership";
|
|
11
|
-
@import "gifts";
|
|
12
|
-
|
|
13
|
-
table {
|
|
14
|
-
border-spacing: 0;
|
|
15
|
-
width: 100%;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
td {
|
|
19
|
-
padding: 0;
|
|
20
|
-
}
|