iticket-seatingplan-dev 1.0.21 → 1.0.23
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.
|
@@ -40,7 +40,7 @@ const SeatingPlan = _ref => {
|
|
|
40
40
|
const [chosenSeat, setChosenSeat] = (0, _react.useState)(null);
|
|
41
41
|
const statusColors = {
|
|
42
42
|
unknown: '#95a5a6',
|
|
43
|
-
available: '#
|
|
43
|
+
available: '#00E640',
|
|
44
44
|
sold: '#95a5a6',
|
|
45
45
|
reserved: '#95a5a6',
|
|
46
46
|
pending: '#e74c3c',
|
|
@@ -275,6 +275,7 @@ const SeatingPlan = _ref => {
|
|
|
275
275
|
marginBottom: '0.2rem',
|
|
276
276
|
cursor: 'pointer'
|
|
277
277
|
},
|
|
278
|
+
className: "priceage",
|
|
278
279
|
onClick: () => addTicketToCart(s, price.paId)
|
|
279
280
|
}, /*#__PURE__*/_react.default.createElement("p", {
|
|
280
281
|
style: {
|
|
@@ -1,10 +1,17 @@
|
|
|
1
|
-
body {
|
|
1
|
+
/* body {
|
|
2
2
|
margin: 0;
|
|
3
3
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
4
4
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
5
5
|
sans-serif;
|
|
6
6
|
-webkit-font-smoothing: antialiased;
|
|
7
7
|
-moz-osx-font-smoothing: grayscale;
|
|
8
|
+
} */
|
|
9
|
+
|
|
10
|
+
.priceage:hover {
|
|
11
|
+
background: #ecf0f1;
|
|
12
|
+
border: 1px solid #ecf0f1 !important;
|
|
13
|
+
transition: 0.5s;
|
|
14
|
+
transform: scale(1.01);
|
|
8
15
|
}
|
|
9
16
|
|
|
10
17
|
code {
|