barbican-reset 2.30.0 → 2.31.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/helpers/mixins/_basket.scss +7 -6
- package/helpers/mixins/_br-alert.scss +1 -1
- package/helpers/mixins/_br-card.scss +1 -1
- package/helpers/mixins/_br-footer.scss +2 -2
- package/helpers/mixins/_br-form-row.scss +5 -6
- package/helpers/mixins/_br-form-update.scss +2 -3
- package/helpers/mixins/_buttons.scss +6 -6
- package/helpers/mixins/_content.scss +1 -2
- package/helpers/mixins/_festival.scss +7 -7
- package/helpers/mixins/_table.scss +7 -6
- package/helpers/mixins/account/_orders.scss +1 -1
- package/helpers/mixins/drupal/_br-search-form.scss +13 -5
- package/helpers/mixins/input/_select.scss +2 -2
- package/helpers/mixins/input/_text.scss +10 -2
- package/helpers/mixins/table/_details.scss +10 -12
- package/helpers/mixins/table/_etickets.scss +6 -8
- package/helpers/mixins/table/_gifts.scss +7 -10
- package/helpers/mixins/table/_membership.scss +1 -2
- package/helpers/mixins/table/_orders.scss +5 -7
- package/helpers/mixins/table/_preferences.scss +8 -10
- package/helpers/mixins/table/_resale.scss +2 -5
- package/helpers/mixins/table/_simple.scss +1 -2
- package/helpers/mixins/table/_tickets.scss +7 -10
- package/package.json +1 -1
- package/scss/_app.scss +4 -3
- package/scss/_br-checkbox.scss +1 -1
- package/scss/_br-container.scss +4 -4
- package/scss/_br-form-row.scss +6 -6
- package/scss/_card-deck.scss +3 -4
- package/scss/_klaro.scss +8 -8
- package/scss/_main.scss +9 -5
- package/scss/card/_account.scss +3 -3
- package/scss/card/_membership.scss +9 -8
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
|
|
2
1
|
@mixin summary-sm {
|
|
3
|
-
@include
|
|
2
|
+
@include medium-down {
|
|
4
3
|
@content;
|
|
5
4
|
}
|
|
6
|
-
|
|
5
|
+
|
|
6
|
+
@include large-only {
|
|
7
7
|
@content;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
@mixin summary-lg {
|
|
12
|
-
@include
|
|
12
|
+
@include medium-only {
|
|
13
13
|
@content;
|
|
14
14
|
}
|
|
15
|
-
|
|
15
|
+
|
|
16
|
+
@include x-large-up {
|
|
16
17
|
@content;
|
|
17
18
|
}
|
|
18
19
|
}
|
|
@@ -25,5 +26,5 @@
|
|
|
25
26
|
|
|
26
27
|
@include summary-sm {
|
|
27
28
|
grid-auto-flow: row;
|
|
28
|
-
}
|
|
29
|
+
}
|
|
29
30
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
display: grid;
|
|
4
4
|
row-gap: 2rem;
|
|
5
5
|
|
|
6
|
-
@include
|
|
6
|
+
@include medium-up {
|
|
7
7
|
justify-content: flex-start;
|
|
8
8
|
align-items: flex-start;
|
|
9
9
|
grid-auto-flow: column;
|
|
@@ -24,4 +24,4 @@
|
|
|
24
24
|
@mixin br-footer-lower {
|
|
25
25
|
padding-bottom: 2rem;
|
|
26
26
|
padding-top: 2rem;
|
|
27
|
-
}
|
|
27
|
+
}
|
|
@@ -1,24 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
@mixin br-form-row($mq:sm) {
|
|
1
|
+
@mixin br-form-row {
|
|
3
2
|
&:not(:last-of-type) {
|
|
4
3
|
margin-bottom: 1rem;
|
|
5
4
|
}
|
|
6
5
|
|
|
7
|
-
@include
|
|
6
|
+
@include small-up {
|
|
8
7
|
grid-template-columns: 33fr 67fr;
|
|
9
8
|
align-items: flex-start;
|
|
10
9
|
gap: $gap-account;
|
|
11
10
|
display: grid;
|
|
12
11
|
}
|
|
13
12
|
|
|
14
|
-
>
|
|
15
|
-
@include
|
|
13
|
+
>label {
|
|
14
|
+
@include small-up {
|
|
16
15
|
margin-top: 1rem;
|
|
17
16
|
}
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
label {
|
|
21
|
-
@include
|
|
20
|
+
@include small-down {
|
|
22
21
|
margin-bottom: 0.5rem;
|
|
23
22
|
}
|
|
24
23
|
}
|
|
@@ -1,15 +1,14 @@
|
|
|
1
|
-
|
|
2
1
|
@mixin br-form-update {
|
|
3
2
|
display: grid;
|
|
4
3
|
gap: 1rem;
|
|
5
4
|
|
|
6
|
-
@include
|
|
5
|
+
@include small-up {
|
|
7
6
|
grid-template-columns: auto 6rem;
|
|
8
7
|
}
|
|
9
8
|
}
|
|
10
9
|
|
|
11
10
|
@mixin br-form-update--input {
|
|
12
|
-
@include text-input-defaults;
|
|
11
|
+
@include text-input-defaults;
|
|
13
12
|
user-select: none;
|
|
14
13
|
overflow: hidden;
|
|
15
14
|
}
|
|
@@ -154,23 +154,23 @@
|
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
@mixin btn-remove-ticket {
|
|
157
|
-
@include
|
|
157
|
+
@include small-down {
|
|
158
158
|
@include btn-remove;
|
|
159
159
|
width: 100%;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
@include
|
|
162
|
+
@include small-up {
|
|
163
163
|
@include btn-link;
|
|
164
164
|
}
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
@mixin btn-remove-gift {
|
|
168
|
-
@include
|
|
168
|
+
@include x-large-down {
|
|
169
169
|
@include btn-remove;
|
|
170
170
|
width: 100%;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
-
@include
|
|
173
|
+
@include x-large-up {
|
|
174
174
|
@include btn-link;
|
|
175
175
|
}
|
|
176
176
|
}
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
font-size: 0;
|
|
207
207
|
fill: white;
|
|
208
208
|
|
|
209
|
-
@include
|
|
209
|
+
@include large-down {
|
|
210
210
|
padding: 0.75rem;
|
|
211
211
|
}
|
|
212
212
|
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
justify-content: center;
|
|
323
323
|
min-width: initial;
|
|
324
324
|
|
|
325
|
-
@include
|
|
325
|
+
@include medium-down {
|
|
326
326
|
margin-top: 1rem;
|
|
327
327
|
width: 100%;
|
|
328
328
|
}
|
|
@@ -1,18 +1,17 @@
|
|
|
1
|
-
|
|
2
1
|
@mixin narrow-width {
|
|
3
2
|
max-width: 20rem;
|
|
4
3
|
|
|
5
|
-
@include
|
|
4
|
+
@include small-up {
|
|
6
5
|
max-width: 25rem;
|
|
7
6
|
}
|
|
8
7
|
|
|
9
|
-
@include
|
|
8
|
+
@include medium-up {
|
|
10
9
|
max-width: 50rem;
|
|
11
10
|
}
|
|
12
11
|
}
|
|
13
12
|
|
|
14
|
-
@mixin columns($size:
|
|
15
|
-
@include
|
|
13
|
+
@mixin columns($size: $small, $count: 2) {
|
|
14
|
+
@include min-width($size) {
|
|
16
15
|
grid-template-columns: repeat($count, 1fr);
|
|
17
16
|
}
|
|
18
17
|
}
|
|
@@ -30,7 +29,7 @@
|
|
|
30
29
|
text-align: center;
|
|
31
30
|
padding: 1.25rem;
|
|
32
31
|
|
|
33
|
-
@include
|
|
32
|
+
@include medium-up {
|
|
34
33
|
margin-bottom: 3rem;
|
|
35
34
|
}
|
|
36
35
|
|
|
@@ -41,7 +40,8 @@
|
|
|
41
40
|
|
|
42
41
|
@mixin section-margins {
|
|
43
42
|
margin-bottom: 2rem;
|
|
44
|
-
|
|
43
|
+
|
|
44
|
+
@include medium-up {
|
|
45
45
|
margin-bottom: 3rem;
|
|
46
46
|
}
|
|
47
47
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
@mixin table-row($gap: 0.75rem) {
|
|
3
2
|
border-bottom: 1px solid $c-grey-l87;
|
|
4
3
|
padding-bottom: $gap;
|
|
@@ -9,22 +8,24 @@
|
|
|
9
8
|
@include focus-tabs;
|
|
10
9
|
}
|
|
11
10
|
|
|
12
|
-
@mixin table-label($mq:
|
|
11
|
+
@mixin table-label($mq: $medium) {
|
|
13
12
|
font-size: $font-size-lg;
|
|
14
13
|
margin-bottom: 0.25rem;
|
|
15
14
|
|
|
16
|
-
@include
|
|
15
|
+
@include min-width($mq) {
|
|
17
16
|
@include sr-only;
|
|
18
17
|
}
|
|
19
18
|
}
|
|
20
19
|
|
|
21
20
|
@mixin default-table-style {
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
|
|
22
|
+
th,
|
|
23
|
+
td {
|
|
24
|
+
@include medium-up {
|
|
24
25
|
&:not(:last-of-type) {
|
|
25
26
|
border-right: 1px solid $c-grey-l87;
|
|
26
27
|
}
|
|
27
|
-
|
|
28
|
+
|
|
28
29
|
&:last-of-type {
|
|
29
30
|
text-align: right;
|
|
30
31
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@mixin br-search-form {
|
|
2
2
|
max-width: 20rem;
|
|
3
3
|
|
|
4
|
-
@include
|
|
4
|
+
@include medium-up {
|
|
5
5
|
@include inline-block;
|
|
6
6
|
max-width: 12.5rem;
|
|
7
7
|
margin: 0.25rem;
|
|
@@ -18,7 +18,9 @@
|
|
|
18
18
|
|
|
19
19
|
@if $background {
|
|
20
20
|
background-color: input-bg($color);
|
|
21
|
-
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@else {
|
|
22
24
|
background-color: transparent;
|
|
23
25
|
}
|
|
24
26
|
|
|
@@ -28,11 +30,15 @@
|
|
|
28
30
|
|
|
29
31
|
@include focus {
|
|
30
32
|
@include no-border;
|
|
33
|
+
|
|
31
34
|
@if $background {
|
|
32
35
|
background-color: input-bg($color);
|
|
33
|
-
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@else {
|
|
34
39
|
background-color: transparent;
|
|
35
40
|
}
|
|
41
|
+
|
|
36
42
|
@if $border {
|
|
37
43
|
@include br-border-reset-left($color);
|
|
38
44
|
}
|
|
@@ -56,7 +62,9 @@
|
|
|
56
62
|
|
|
57
63
|
@if $background {
|
|
58
64
|
background-color: input-bg($color);
|
|
59
|
-
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@else {
|
|
60
68
|
background-color: transparent;
|
|
61
69
|
}
|
|
62
70
|
|
|
@@ -74,4 +82,4 @@
|
|
|
74
82
|
}
|
|
75
83
|
}
|
|
76
84
|
}
|
|
77
|
-
}
|
|
85
|
+
}
|
|
@@ -4,17 +4,17 @@
|
|
|
4
4
|
padding: 0.8125rem 2.5rem 0.8125rem 0.8125rem;
|
|
5
5
|
background-position: right 0.75rem center;
|
|
6
6
|
background-image: url($select-arrow);
|
|
7
|
+
border-radius: $border-radius-lg;
|
|
7
8
|
border: 1px solid $c-grey-l65;
|
|
8
9
|
background-color: $c-grey-l96;
|
|
9
|
-
border-radius: $border-radius-lg;
|
|
10
10
|
background-size: 1rem 0.75rem;
|
|
11
11
|
background-repeat: no-repeat;
|
|
12
12
|
line-height: 1.375rem;
|
|
13
13
|
color: $c-grey-l21;
|
|
14
|
+
font-size: inherit;
|
|
14
15
|
font-weight: 400;
|
|
15
16
|
transition: none;
|
|
16
17
|
appearance: none;
|
|
17
|
-
font-size: 85%;
|
|
18
18
|
display: block;
|
|
19
19
|
width: 100%;
|
|
20
20
|
|
|
@@ -23,16 +23,24 @@
|
|
|
23
23
|
@mixin text-input-defaults {
|
|
24
24
|
border: solid $border-width $c-grey-l65;
|
|
25
25
|
padding: toRem(14) toRem(14) 0.75rem;
|
|
26
|
-
background-color: $c-grey-l96;
|
|
27
26
|
border-radius: $border-radius-lg;
|
|
27
|
+
background-color: $c-grey-l96;
|
|
28
28
|
line-height: 1.375rem;
|
|
29
|
+
font-size: inherit;
|
|
29
30
|
color: $c-grey-l21;
|
|
30
|
-
font-size: 85%;
|
|
31
31
|
|
|
32
32
|
@include input-focus {
|
|
33
33
|
@include input-focus-defaults;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
&::-ms-input-placeholder {
|
|
37
|
+
color: inherit;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&::placeholder {
|
|
41
|
+
color: inherit;
|
|
42
|
+
}
|
|
43
|
+
|
|
36
44
|
&:disabled,
|
|
37
45
|
&[readonly] {
|
|
38
46
|
background-color: $c-grey-l96;
|
|
@@ -1,14 +1,11 @@
|
|
|
1
|
-
|
|
2
1
|
@mixin details-table {
|
|
3
|
-
$mq: md;
|
|
4
|
-
|
|
5
2
|
thead {
|
|
6
3
|
@include fontfamily-black;
|
|
7
4
|
background-color: $c-grey-l96;
|
|
8
5
|
margin-bottom: 1rem;
|
|
9
6
|
display: block;
|
|
10
7
|
|
|
11
|
-
@include
|
|
8
|
+
@include medium-down {
|
|
12
9
|
display: none;
|
|
13
10
|
}
|
|
14
11
|
}
|
|
@@ -20,11 +17,11 @@
|
|
|
20
17
|
tr {
|
|
21
18
|
display: grid;
|
|
22
19
|
|
|
23
|
-
@include
|
|
20
|
+
@include medium-up {
|
|
24
21
|
grid-template-columns: $columns-details--header;
|
|
25
22
|
}
|
|
26
23
|
|
|
27
|
-
@include
|
|
24
|
+
@include medium-down {
|
|
28
25
|
border-radius: $border-radius-lg;
|
|
29
26
|
}
|
|
30
27
|
}
|
|
@@ -37,20 +34,21 @@
|
|
|
37
34
|
}
|
|
38
35
|
}
|
|
39
36
|
|
|
40
|
-
th,
|
|
37
|
+
th,
|
|
38
|
+
td {
|
|
41
39
|
padding: 0.75rem;
|
|
42
40
|
|
|
43
41
|
&[empty=true] {
|
|
44
|
-
@include
|
|
42
|
+
@include medium-down {
|
|
45
43
|
padding: 0;
|
|
46
|
-
}
|
|
44
|
+
}
|
|
47
45
|
}
|
|
48
46
|
|
|
49
|
-
@include
|
|
47
|
+
@include medium-up {
|
|
50
48
|
&:not(:last-of-type) {
|
|
51
49
|
border-right: 1px solid $c-grey-l87;
|
|
52
50
|
}
|
|
53
|
-
|
|
51
|
+
|
|
54
52
|
&:last-of-type {
|
|
55
53
|
text-align: right;
|
|
56
54
|
}
|
|
@@ -58,6 +56,6 @@
|
|
|
58
56
|
}
|
|
59
57
|
|
|
60
58
|
label {
|
|
61
|
-
@include table-label
|
|
59
|
+
@include table-label;
|
|
62
60
|
}
|
|
63
61
|
}
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
@mixin etickets-table {
|
|
2
|
-
$mq: md;
|
|
3
|
-
|
|
4
2
|
thead {
|
|
5
3
|
@include fontfamily-black;
|
|
6
4
|
background-color: $c-grey-l96;
|
|
7
5
|
margin-bottom: 1rem;
|
|
8
6
|
display: block;
|
|
9
7
|
|
|
10
|
-
@include
|
|
8
|
+
@include medium-down {
|
|
11
9
|
display: none;
|
|
12
10
|
}
|
|
13
11
|
}
|
|
@@ -21,11 +19,11 @@
|
|
|
21
19
|
margin-bottom: 1rem;
|
|
22
20
|
}
|
|
23
21
|
|
|
24
|
-
@include
|
|
22
|
+
@include medium-up {
|
|
25
23
|
grid-template-columns: $columns-etickets;
|
|
26
24
|
}
|
|
27
25
|
|
|
28
|
-
@include
|
|
26
|
+
@include medium-down {
|
|
29
27
|
border-radius: $border-radius-lg;
|
|
30
28
|
}
|
|
31
29
|
}
|
|
@@ -34,7 +32,7 @@
|
|
|
34
32
|
td {
|
|
35
33
|
padding: 0.75rem;
|
|
36
34
|
|
|
37
|
-
@include
|
|
35
|
+
@include medium-up {
|
|
38
36
|
&:not(:last-of-type) {
|
|
39
37
|
border-right: 1px solid $c-grey-l87;
|
|
40
38
|
}
|
|
@@ -46,7 +44,7 @@
|
|
|
46
44
|
}
|
|
47
45
|
|
|
48
46
|
label {
|
|
49
|
-
@include table-label
|
|
47
|
+
@include table-label;
|
|
50
48
|
}
|
|
51
49
|
|
|
52
50
|
a {
|
|
@@ -54,4 +52,4 @@
|
|
|
54
52
|
@include table-link--focus;
|
|
55
53
|
}
|
|
56
54
|
}
|
|
57
|
-
}
|
|
55
|
+
}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
|
|
2
1
|
@mixin gifts-table {
|
|
3
|
-
$mq: xl;
|
|
4
|
-
|
|
5
2
|
thead {
|
|
6
|
-
@include
|
|
3
|
+
@include x-large-down {
|
|
7
4
|
display: none;
|
|
8
5
|
}
|
|
9
6
|
}
|
|
@@ -13,27 +10,27 @@
|
|
|
13
10
|
}
|
|
14
11
|
|
|
15
12
|
tr {
|
|
16
|
-
@include
|
|
13
|
+
@include x-large-up {
|
|
17
14
|
@include table-row;
|
|
18
15
|
grid-template-columns: $columns-gifts;
|
|
19
16
|
display: grid;
|
|
20
17
|
gap: 0.75rem;
|
|
21
|
-
|
|
18
|
+
|
|
22
19
|
label {
|
|
23
20
|
@include sr-only;
|
|
24
21
|
}
|
|
25
22
|
}
|
|
26
23
|
|
|
27
|
-
@include
|
|
24
|
+
@include x-large-down {
|
|
28
25
|
border-radius: $border-radius-lg;
|
|
29
26
|
border: 1px solid $c-grey-l87;
|
|
30
27
|
display: block;
|
|
31
28
|
padding: 1rem;
|
|
32
|
-
|
|
29
|
+
|
|
33
30
|
&:not(:last-of-type) {
|
|
34
31
|
margin-bottom: 1rem;
|
|
35
32
|
}
|
|
36
|
-
|
|
33
|
+
|
|
37
34
|
td {
|
|
38
35
|
justify-content: space-between;
|
|
39
36
|
display: flex;
|
|
@@ -46,7 +43,7 @@
|
|
|
46
43
|
&:not(:first-of-type):not(:last-of-type) {
|
|
47
44
|
border-top: 1px solid $c-grey-l87;
|
|
48
45
|
}
|
|
49
|
-
|
|
46
|
+
|
|
50
47
|
&:last-of-type {
|
|
51
48
|
margin-top: 0.5rem;
|
|
52
49
|
}
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
@mixin orders-table($columns) {
|
|
2
|
-
$mq: md;
|
|
3
|
-
|
|
4
2
|
thead {
|
|
5
3
|
@include fontfamily-black;
|
|
6
4
|
background-color: $c-grey-l96;
|
|
7
5
|
margin-bottom: 1rem;
|
|
8
6
|
display: block;
|
|
9
7
|
|
|
10
|
-
@include
|
|
8
|
+
@include medium-down {
|
|
11
9
|
display: none;
|
|
12
10
|
}
|
|
13
11
|
}
|
|
@@ -21,11 +19,11 @@
|
|
|
21
19
|
margin-bottom: 1rem;
|
|
22
20
|
}
|
|
23
21
|
|
|
24
|
-
@include
|
|
22
|
+
@include medium-up {
|
|
25
23
|
grid-template-columns: $columns;
|
|
26
24
|
}
|
|
27
25
|
|
|
28
|
-
@include
|
|
26
|
+
@include medium-down {
|
|
29
27
|
border-radius: $border-radius-lg;
|
|
30
28
|
}
|
|
31
29
|
}
|
|
@@ -42,7 +40,7 @@
|
|
|
42
40
|
}
|
|
43
41
|
|
|
44
42
|
label {
|
|
45
|
-
@include table-label
|
|
43
|
+
@include table-label;
|
|
46
44
|
}
|
|
47
45
|
|
|
48
46
|
a {
|
|
@@ -50,4 +48,4 @@
|
|
|
50
48
|
@include table-link--focus;
|
|
51
49
|
}
|
|
52
50
|
}
|
|
53
|
-
}
|
|
51
|
+
}
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
@mixin preferences-table {
|
|
2
|
-
$mq: md;
|
|
3
|
-
|
|
4
2
|
thead {
|
|
5
3
|
@include fontfamily-black;
|
|
6
4
|
background-color: $c-grey-l96;
|
|
7
5
|
margin-bottom: 1rem;
|
|
8
6
|
display: block;
|
|
9
7
|
|
|
10
|
-
@include
|
|
8
|
+
@include medium-down {
|
|
11
9
|
display: none;
|
|
12
10
|
}
|
|
13
11
|
}
|
|
@@ -20,11 +18,11 @@
|
|
|
20
18
|
margin-bottom: 1rem;
|
|
21
19
|
}
|
|
22
20
|
|
|
23
|
-
@include
|
|
21
|
+
@include medium-up {
|
|
24
22
|
grid-template-columns: $columns-preferences;
|
|
25
23
|
}
|
|
26
24
|
|
|
27
|
-
@include
|
|
25
|
+
@include medium-down {
|
|
28
26
|
border-radius: $border-radius-lg;
|
|
29
27
|
}
|
|
30
28
|
}
|
|
@@ -33,7 +31,7 @@
|
|
|
33
31
|
td {
|
|
34
32
|
padding: 0.75rem;
|
|
35
33
|
|
|
36
|
-
@include
|
|
34
|
+
@include medium-up {
|
|
37
35
|
text-align: center;
|
|
38
36
|
|
|
39
37
|
&:not(:last-of-type) {
|
|
@@ -45,7 +43,7 @@
|
|
|
45
43
|
}
|
|
46
44
|
}
|
|
47
45
|
|
|
48
|
-
@include
|
|
46
|
+
@include medium-down {
|
|
49
47
|
&:not(:first-of-type) {
|
|
50
48
|
padding-top: 0;
|
|
51
49
|
}
|
|
@@ -53,11 +51,11 @@
|
|
|
53
51
|
}
|
|
54
52
|
|
|
55
53
|
label {
|
|
56
|
-
@include table-label
|
|
54
|
+
@include table-label;
|
|
57
55
|
}
|
|
58
56
|
|
|
59
57
|
.custom-radio {
|
|
60
|
-
@include
|
|
58
|
+
@include medium-up {
|
|
61
59
|
margin: 0;
|
|
62
60
|
|
|
63
61
|
input[type='radio'] {
|
|
@@ -71,4 +69,4 @@
|
|
|
71
69
|
}
|
|
72
70
|
}
|
|
73
71
|
}
|
|
74
|
-
}
|
|
72
|
+
}
|
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
|
|
2
1
|
@mixin resale-table {
|
|
3
2
|
margin-right: auto;
|
|
4
3
|
margin-left: auto;
|
|
5
4
|
max-width: 11rem;
|
|
6
5
|
|
|
7
|
-
$mq: md;
|
|
8
|
-
|
|
9
6
|
tbody tr {
|
|
10
7
|
border: 1px solid $c-grey-l87;
|
|
11
8
|
}
|
|
@@ -14,7 +11,7 @@
|
|
|
14
11
|
text-align: left;
|
|
15
12
|
padding: 0.625rem;
|
|
16
13
|
|
|
17
|
-
@include
|
|
14
|
+
@include medium-up {
|
|
18
15
|
&:last-of-type {
|
|
19
16
|
text-align: right;
|
|
20
17
|
}
|
|
@@ -22,6 +19,6 @@
|
|
|
22
19
|
}
|
|
23
20
|
|
|
24
21
|
label {
|
|
25
|
-
@include table-label
|
|
22
|
+
@include table-label;
|
|
26
23
|
}
|
|
27
24
|
}
|
|
@@ -1,24 +1,21 @@
|
|
|
1
|
-
|
|
2
1
|
@mixin tickets-table {
|
|
3
|
-
$mq: sm;
|
|
4
|
-
|
|
5
2
|
th {
|
|
6
3
|
@include fontfamily-black;
|
|
7
4
|
}
|
|
8
5
|
|
|
9
6
|
tr {
|
|
10
|
-
@include
|
|
7
|
+
@include small-up {
|
|
11
8
|
@include table-row;
|
|
12
9
|
grid-template-columns: $columns-tickets;
|
|
13
10
|
display: grid;
|
|
14
11
|
gap: 0.75rem;
|
|
15
|
-
|
|
12
|
+
|
|
16
13
|
label {
|
|
17
14
|
@include sr-only;
|
|
18
15
|
}
|
|
19
16
|
}
|
|
20
17
|
|
|
21
|
-
@include
|
|
18
|
+
@include small-down {
|
|
22
19
|
border-radius: $border-radius-lg;
|
|
23
20
|
border: 1px solid $c-grey-l87;
|
|
24
21
|
display: block;
|
|
@@ -27,11 +24,11 @@
|
|
|
27
24
|
&:first-of-type {
|
|
28
25
|
display: none;
|
|
29
26
|
}
|
|
30
|
-
|
|
27
|
+
|
|
31
28
|
&:not(:last-of-type) {
|
|
32
29
|
margin-bottom: 1rem;
|
|
33
30
|
}
|
|
34
|
-
|
|
31
|
+
|
|
35
32
|
td {
|
|
36
33
|
justify-content: space-between;
|
|
37
34
|
display: flex;
|
|
@@ -44,7 +41,7 @@
|
|
|
44
41
|
&:not(:first-of-type):not(:last-of-type) {
|
|
45
42
|
border-top: 1px solid $c-grey-l87;
|
|
46
43
|
}
|
|
47
|
-
|
|
44
|
+
|
|
48
45
|
&:last-of-type {
|
|
49
46
|
margin-top: 0.5rem;
|
|
50
47
|
}
|
|
@@ -53,7 +50,7 @@
|
|
|
53
50
|
}
|
|
54
51
|
|
|
55
52
|
.ticket-name {
|
|
56
|
-
@include
|
|
53
|
+
@include small-down {
|
|
57
54
|
display: none;
|
|
58
55
|
}
|
|
59
56
|
}
|
package/package.json
CHANGED
package/scss/_app.scss
CHANGED
|
@@ -5,8 +5,9 @@
|
|
|
5
5
|
display: flex;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
#app {
|
|
9
|
-
|
|
8
|
+
#app {
|
|
9
|
+
|
|
10
|
+
&.videoSplash,
|
|
10
11
|
&.cinemaSplash,
|
|
11
12
|
&.concertSplash,
|
|
12
13
|
&.theatreSplash {
|
|
@@ -20,7 +21,7 @@
|
|
|
20
21
|
background-repeat: no-repeat;
|
|
21
22
|
background-size: 72rem;
|
|
22
23
|
|
|
23
|
-
@include
|
|
24
|
+
@include xx-large-up {
|
|
24
25
|
background-position: center top;
|
|
25
26
|
}
|
|
26
27
|
}
|
package/scss/_br-checkbox.scss
CHANGED
package/scss/_br-container.scss
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
padding-bottom: 1.5rem;
|
|
22
22
|
padding-top: 1.5rem;
|
|
23
23
|
|
|
24
|
-
@include
|
|
24
|
+
@include small-up {
|
|
25
25
|
padding-bottom: 2.5rem;
|
|
26
26
|
padding-top: 2.5rem;
|
|
27
27
|
}
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
padding-bottom: 1.875rem;
|
|
32
32
|
padding-top: 1.875rem;
|
|
33
33
|
}
|
|
34
|
-
|
|
34
|
+
|
|
35
35
|
&.thin {
|
|
36
|
-
max-width: $layout-width-sm;
|
|
36
|
+
max-width: $layout-width-sm;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
&.masthead {
|
|
40
|
-
@include
|
|
40
|
+
@include small-up {
|
|
41
41
|
padding-bottom: 3rem;
|
|
42
42
|
padding-top: 3rem;
|
|
43
43
|
}
|
package/scss/_br-form-row.scss
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
.br-form-row {
|
|
3
2
|
@include br-form-row;
|
|
4
3
|
|
|
@@ -12,7 +11,8 @@
|
|
|
12
11
|
flex-direction: row-reverse;
|
|
13
12
|
display: flex;
|
|
14
13
|
|
|
15
|
-
input[type=text],
|
|
14
|
+
input[type=text],
|
|
15
|
+
input[type=email] {
|
|
16
16
|
border-bottom-right-radius: 0;
|
|
17
17
|
border-top-right-radius: 0;
|
|
18
18
|
border-right: none;
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
&:not(.label) {
|
|
23
|
-
@include
|
|
23
|
+
@include small-up {
|
|
24
24
|
grid-column: 2 / 3;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
|
|
27
|
+
|
|
28
28
|
&.submit {
|
|
29
29
|
justify-content: flex-end;
|
|
30
30
|
display: flex;
|
|
31
31
|
gap: 1rem;
|
|
32
32
|
|
|
33
|
-
@include
|
|
34
|
-
>
|
|
33
|
+
@include small-down {
|
|
34
|
+
>button {
|
|
35
35
|
width: 100%;
|
|
36
36
|
}
|
|
37
37
|
}
|
package/scss/_card-deck.scss
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
|
|
2
1
|
.card-deck {
|
|
3
2
|
justify-content: center;
|
|
4
3
|
display: grid;
|
|
5
4
|
gap: 2rem;
|
|
6
5
|
|
|
7
|
-
@include
|
|
6
|
+
@include medium-up {
|
|
8
7
|
align-items: flex-start;
|
|
9
8
|
grid-auto-flow: column;
|
|
10
9
|
}
|
|
@@ -13,11 +12,11 @@
|
|
|
13
12
|
max-width: 20rem;
|
|
14
13
|
margin-top: 0;
|
|
15
14
|
}
|
|
16
|
-
|
|
15
|
+
|
|
17
16
|
.card-title {
|
|
18
17
|
font-size: $h3-font-size;
|
|
19
18
|
}
|
|
20
|
-
|
|
19
|
+
|
|
21
20
|
.card-img {
|
|
22
21
|
border-radius: $border-radius-lg;
|
|
23
22
|
margin-top: 1rem;
|
package/scss/_klaro.scss
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
left: 0;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
@include
|
|
47
|
+
@include large-up {
|
|
48
48
|
box-shadow: 0 4px 6px 0 rgba($black, 0.2), 5px 5px 10px 0 rgba($black, 0.2);
|
|
49
49
|
border-radius: $border-radius;
|
|
50
50
|
max-width: 28rem;
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
width: 100%;
|
|
236
236
|
top: 50%;
|
|
237
237
|
|
|
238
|
-
@include
|
|
238
|
+
@include small-up {
|
|
239
239
|
border-radius: $border-radius;
|
|
240
240
|
position: relative;
|
|
241
241
|
max-width: 40rem;
|
|
@@ -389,12 +389,12 @@
|
|
|
389
389
|
margin-right: 0;
|
|
390
390
|
bottom: 0;
|
|
391
391
|
|
|
392
|
-
@include
|
|
392
|
+
@include large-up {
|
|
393
393
|
padding: 1rem;
|
|
394
394
|
}
|
|
395
395
|
|
|
396
396
|
p {
|
|
397
|
-
@include
|
|
397
|
+
@include x-small-down {
|
|
398
398
|
margin-bottom: 0.5rem;
|
|
399
399
|
}
|
|
400
400
|
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
.cn-buttons {
|
|
411
411
|
display: inline-block;
|
|
412
412
|
|
|
413
|
-
@include
|
|
413
|
+
@include x-small-down {
|
|
414
414
|
width: 100%;
|
|
415
415
|
|
|
416
416
|
button.cm-btn {
|
|
@@ -429,13 +429,13 @@
|
|
|
429
429
|
padding: 0.5rem;
|
|
430
430
|
color: $white;
|
|
431
431
|
|
|
432
|
-
@include
|
|
432
|
+
@include small-down {
|
|
433
433
|
margin-bottom: 1rem;
|
|
434
434
|
margin-right: 0;
|
|
435
435
|
width: 10rem;
|
|
436
436
|
}
|
|
437
437
|
|
|
438
|
-
@include
|
|
438
|
+
@include small-up {
|
|
439
439
|
margin-right: 1rem;
|
|
440
440
|
}
|
|
441
441
|
|
|
@@ -447,7 +447,7 @@
|
|
|
447
447
|
.cn-ok {
|
|
448
448
|
padding-top: 1.5rem;
|
|
449
449
|
|
|
450
|
-
@include
|
|
450
|
+
@include x-small-down {
|
|
451
451
|
text-align: center;
|
|
452
452
|
}
|
|
453
453
|
}
|
package/scss/_main.scss
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
main {
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
&.videoSplash,
|
|
4
|
+
&.cinemaSplash,
|
|
5
|
+
&.concertSplash,
|
|
6
|
+
&.theatreSplash {
|
|
3
7
|
padding-top: 2rem;
|
|
4
8
|
color: $white;
|
|
5
|
-
|
|
6
|
-
@include
|
|
9
|
+
|
|
10
|
+
@include medium-up {
|
|
7
11
|
padding-top: 4rem;
|
|
8
12
|
}
|
|
9
|
-
|
|
10
|
-
@include
|
|
13
|
+
|
|
14
|
+
@include xx-large-up {
|
|
11
15
|
padding-top: 10rem;
|
|
12
16
|
}
|
|
13
17
|
}
|
package/scss/card/_account.scss
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
|
|
2
1
|
.card[account] {
|
|
3
2
|
margin-top: $gap-account;
|
|
4
3
|
margin-bottom: 0;
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
>.card-body {
|
|
7
6
|
padding: $gap-account;
|
|
8
7
|
}
|
|
9
8
|
|
|
10
9
|
iframe {
|
|
11
10
|
min-height: 590px;
|
|
12
|
-
|
|
11
|
+
|
|
12
|
+
@include small-up {
|
|
13
13
|
min-height: 440px;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
$angle: 120deg;
|
|
3
2
|
$c-yb-membership-card-1: #8205FF;
|
|
4
3
|
$c-yb-membership-card-2: #C030AC;
|
|
@@ -13,16 +12,16 @@ $c-yb-membership-card-3: #FE5A59;
|
|
|
13
12
|
color: $white;
|
|
14
13
|
border: none;
|
|
15
14
|
|
|
16
|
-
@include
|
|
15
|
+
@include small-up {
|
|
17
16
|
width: 23rem;
|
|
18
17
|
}
|
|
19
18
|
|
|
20
|
-
|
|
19
|
+
>.card-body {
|
|
21
20
|
align-items: flex-start;
|
|
22
21
|
row-gap: 0.75rem;
|
|
23
22
|
display: grid;
|
|
24
23
|
|
|
25
|
-
@include
|
|
24
|
+
@include small-up {
|
|
26
25
|
row-gap: 2rem;
|
|
27
26
|
}
|
|
28
27
|
}
|
|
@@ -35,13 +34,15 @@ $c-yb-membership-card-3: #FE5A59;
|
|
|
35
34
|
background-color: $c-brand-membership-dark;
|
|
36
35
|
background-image: linear-gradient($angle, $c-brand-membership-dark 20%, $c-brand-membership 100%);
|
|
37
36
|
}
|
|
38
|
-
|
|
39
|
-
&.patron,
|
|
37
|
+
|
|
38
|
+
&.patron,
|
|
39
|
+
&.premier-patron {
|
|
40
40
|
background-color: $c-patron;
|
|
41
41
|
background-image: linear-gradient($angle, $c-patron 60%, $c-patron-light 75%, $c-patron 90%);
|
|
42
42
|
}
|
|
43
|
-
|
|
44
|
-
&.principle-patron,
|
|
43
|
+
|
|
44
|
+
&.principle-patron,
|
|
45
|
+
&.directors-circle {
|
|
45
46
|
background-color: $c-principle;
|
|
46
47
|
background-image: linear-gradient($angle, $c-principle 60%, $c-principle-light 75%, $c-principle 90%);
|
|
47
48
|
}
|