barbican-reset 1.3.2 → 1.3.6
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/components/placeholder.vue +3 -3
- package/helpers/mixins/_buttons.scss +14 -0
- package/icons/back_arrow.vue +3 -1
- package/package.json +1 -1
- package/scss/_app.scss +6 -10
- package/scss/_btn.scss +8 -0
- package/scss/_header.scss +1 -1
- package/scss/_main.scss +1 -1
- package/scss/index.scss +5 -1
- package/scss/table/_etickets.scss +54 -0
- package/scss/table/_orders.scss +4 -0
- package/scss/table/index.scss +1 -0
|
@@ -7,8 +7,8 @@ export default {
|
|
|
7
7
|
name: 'Placeholder',
|
|
8
8
|
props: {
|
|
9
9
|
margin: {
|
|
10
|
-
type:
|
|
11
|
-
default: 0
|
|
10
|
+
type: String,
|
|
11
|
+
default: "0"
|
|
12
12
|
},
|
|
13
13
|
height: {
|
|
14
14
|
type: Number,
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
},
|
|
17
17
|
width: {
|
|
18
18
|
type: String,
|
|
19
|
-
default: 100
|
|
19
|
+
default: "100"
|
|
20
20
|
},
|
|
21
21
|
right: {
|
|
22
22
|
type: Boolean,
|
|
@@ -129,6 +129,13 @@
|
|
|
129
129
|
@include button-solid($c-power-blue);
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
+
@mixin btn-power-login {
|
|
133
|
+
@include button-solid(
|
|
134
|
+
$background: $white,
|
|
135
|
+
$color: $c-power-blue
|
|
136
|
+
);
|
|
137
|
+
}
|
|
138
|
+
|
|
132
139
|
@mixin btn-info {
|
|
133
140
|
@include button-solid($c-status-neutral);
|
|
134
141
|
}
|
|
@@ -204,6 +211,13 @@
|
|
|
204
211
|
);
|
|
205
212
|
}
|
|
206
213
|
|
|
214
|
+
@mixin btn-cta {
|
|
215
|
+
@include button-solid(
|
|
216
|
+
$background: $c-grey-night,
|
|
217
|
+
$display: 'flex');
|
|
218
|
+
fill: $white;
|
|
219
|
+
}
|
|
220
|
+
|
|
207
221
|
@mixin btn-invisible {
|
|
208
222
|
&, &:focus {
|
|
209
223
|
background: transparent;
|
package/icons/back_arrow.vue
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg width="16" height="16" viewBox="0 0 16 16"
|
|
2
|
+
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M16 7H3.83L9.42 1.41L8 0L0 8L8 16L9.41 14.59L3.83 9H16V7Z" />
|
|
4
|
+
</svg>
|
|
3
5
|
</template>
|
|
4
6
|
|
|
5
7
|
<script>
|
package/package.json
CHANGED
package/scss/_app.scss
CHANGED
|
@@ -5,9 +5,8 @@
|
|
|
5
5
|
display: flex;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
#app
|
|
9
|
-
&.
|
|
10
|
-
&.powerStream {
|
|
8
|
+
#app {
|
|
9
|
+
&.powerSplash {
|
|
11
10
|
background-position: center -15rem;
|
|
12
11
|
background-color: $c-power-blue;
|
|
13
12
|
background-repeat: no-repeat;
|
|
@@ -22,13 +21,10 @@
|
|
|
22
21
|
}
|
|
23
22
|
}
|
|
24
23
|
|
|
25
|
-
&.
|
|
26
|
-
&.
|
|
27
|
-
&.
|
|
28
|
-
&.
|
|
29
|
-
&.concertStream,
|
|
30
|
-
&.theatreDashboard,
|
|
31
|
-
&.theatreStream {
|
|
24
|
+
&.videoSplash,
|
|
25
|
+
&.cinemaSplash,
|
|
26
|
+
&.concertSplash,
|
|
27
|
+
&.theatreSplash {
|
|
32
28
|
background-image: url("/img/videos/splash-bg.jpg");
|
|
33
29
|
background-color: $c-splash-videos;
|
|
34
30
|
background-position: center -4rem;
|
package/scss/_btn.scss
CHANGED
package/scss/_header.scss
CHANGED
package/scss/_main.scss
CHANGED
package/scss/index.scss
CHANGED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
table.etickets {
|
|
2
|
+
|
|
3
|
+
$mq: md;
|
|
4
|
+
|
|
5
|
+
thead {
|
|
6
|
+
background-color: $c-grey-alpine;
|
|
7
|
+
margin-bottom: 1rem;
|
|
8
|
+
font-weight: 700;
|
|
9
|
+
display: block;
|
|
10
|
+
|
|
11
|
+
@include media-breakpoint-down($mq) {
|
|
12
|
+
display: none;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
tr {
|
|
17
|
+
border: 1px solid $c-grey-pearl;
|
|
18
|
+
display: grid;
|
|
19
|
+
|
|
20
|
+
@include media-breakpoint-up($mq) {
|
|
21
|
+
grid-template-columns: 9rem auto 9rem;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@include media-breakpoint-down($mq) {
|
|
25
|
+
border-radius: $border-radius-lg;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
th, td {
|
|
30
|
+
padding: 0.75rem;
|
|
31
|
+
|
|
32
|
+
@include media-breakpoint-up($mq) {
|
|
33
|
+
&:not(:last-of-type) {
|
|
34
|
+
border-right: 1px solid $c-grey-pearl;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&:last-of-type {
|
|
38
|
+
text-align: right;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
label {
|
|
44
|
+
font-size: $font-size-lg;
|
|
45
|
+
|
|
46
|
+
@include media-breakpoint-up($mq) {
|
|
47
|
+
display: none;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
tbody > div:not(:last-of-type) {
|
|
52
|
+
margin-bottom: 1rem;
|
|
53
|
+
}
|
|
54
|
+
}
|
package/scss/table/_orders.scss
CHANGED