@alisaitteke/seatmap-canvas 2.7.0 → 2.7.5

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.
@@ -0,0 +1,155 @@
1
+ .multi-select-enable .seatmap-svg .stage .blocks .block {
2
+ cursor: crosshair;
3
+ }
4
+ .multi-select-enable .seatmap-svg .stage .blocks .block .masks .seat-level-mask {
5
+ cursor: crosshair !important;
6
+ }
7
+ .multi-select-enable .seatmap-svg .stage .blocks .block .seats .seat {
8
+ cursor: crosshair;
9
+ }
10
+ .multi-select-enable .seatmap-svg .stage .blocks .block .seats .seat.selected {
11
+ cursor: crosshair;
12
+ }
13
+
14
+ .seatmap-svg {
15
+ position: relative;
16
+ width: 100%;
17
+ height: 100%;
18
+ }
19
+ .seatmap-svg.zoom-level-SEAT .stage .blocks .block .masks .seat-level-mask {
20
+ cursor: none;
21
+ }
22
+ .seatmap-svg.zoom-level-BLOCK .stage .blocks .block .masks .seat-level-mask {
23
+ cursor: none;
24
+ }
25
+ .seatmap-svg.zoom-level-VENUE .stage .blocks .block {
26
+ filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.61));
27
+ }
28
+ .seatmap-svg.zoom-level-VENUE .stage .blocks .block:hover {
29
+ transform: scale(1.02);
30
+ filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.7));
31
+ }
32
+ .seatmap-svg.zoom-level-VENUE .stage .blocks .block .masks .seat-level-mask {
33
+ cursor: none;
34
+ }
35
+ .seatmap-svg .zoom-out-bg {
36
+ cursor: zoom-out;
37
+ fill: transparent;
38
+ }
39
+ .seatmap-svg .stage .blocks .block {
40
+ cursor: pointer;
41
+ transition-property: transform, filter;
42
+ transition-duration: 0.17s;
43
+ transition-timing-function: ease-in-out;
44
+ filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0));
45
+ }
46
+ .seatmap-svg .stage .blocks .block .bounds .block-hull-border {
47
+ stroke-linejoin: round;
48
+ opacity: 0.5;
49
+ }
50
+ .seatmap-svg .stage .blocks .block .bounds .block-hull {
51
+ stroke-linejoin: round;
52
+ cursor: move;
53
+ }
54
+ .seatmap-svg .stage .blocks .block .masks .venue-level-mask {
55
+ transition-property: opacity;
56
+ transition-duration: 0.5s;
57
+ transition-delay: 0.2s;
58
+ transition-timing-function: ease-in-out;
59
+ stroke-linejoin: round;
60
+ opacity: 1;
61
+ }
62
+ .seatmap-svg .stage .blocks .block .masks .block-level-mask {
63
+ transition-property: opacity;
64
+ transition-duration: 0.5s;
65
+ transition-delay: 0.2s;
66
+ transition-timing-function: ease-in-out;
67
+ stroke-linejoin: round;
68
+ opacity: 0.7;
69
+ }
70
+ .seatmap-svg .stage .blocks .block .masks .seat-level-mask {
71
+ transition-property: opacity;
72
+ transition-duration: 0.5s;
73
+ transition-delay: 0.2s;
74
+ transition-timing-function: ease-in-out;
75
+ stroke-linejoin: round;
76
+ opacity: 0;
77
+ }
78
+ .seatmap-svg .stage .blocks .block .masks .bound-hide {
79
+ transition-property: opacity;
80
+ transition-duration: 0.5s;
81
+ transition-delay: 0.2s;
82
+ transition-timing-function: ease-in-out;
83
+ pointer-events: none;
84
+ opacity: 0;
85
+ }
86
+ .seatmap-svg .stage .blocks .block .info .title {
87
+ text-anchor: middle;
88
+ dominant-baseline: central;
89
+ pointer-events: none;
90
+ }
91
+ .seatmap-svg .stage .blocks .block .seats .seat {
92
+ cursor: copy;
93
+ }
94
+ .seatmap-svg .stage .blocks .block .seats .seat.selected {
95
+ cursor: pointer;
96
+ }
97
+ .seatmap-svg .stage .blocks .block .seats .seat.not-salable {
98
+ cursor: not-allowed;
99
+ opacity: 0.7;
100
+ }
101
+ .seatmap-svg .stage .blocks .block .seats .seat .label-text {
102
+ text-anchor: middle;
103
+ dominant-baseline: central;
104
+ }
105
+ .seatmap-svg .stage .blocks .block .labels .label circle {
106
+ stroke: rgba(0, 0, 0, 0.2);
107
+ }
108
+ .seatmap-svg .stage .blocks .block .labels .label .label-text {
109
+ text-anchor: middle;
110
+ dominant-baseline: central;
111
+ }
112
+ .seatmap-svg .stage .blocks .block .zoom-layers-container .zoom-layer-hull {
113
+ stroke-width: 80px;
114
+ stroke-linejoin: round;
115
+ }
116
+ @media (any-pointer: coarse) {
117
+ .seatmap-svg .stage .blocks .search-circle {
118
+ display: none;
119
+ }
120
+ }
121
+ .seatmap-svg .stage .search-circle {
122
+ opacity: 0;
123
+ transition-property: opacity;
124
+ transition-duration: 0.2s;
125
+ transition-delay: 0;
126
+ transition-timing-function: ease-in-out;
127
+ }
128
+ .seatmap-svg .stage .search-circle .circle {
129
+ fill: rgba(0, 0, 0, 0);
130
+ pointer-events: none;
131
+ stroke: rgba(0, 0, 0, 0.4);
132
+ stroke-width: 4px;
133
+ }
134
+ .seatmap-svg .stage .search-circle.hide {
135
+ transition-property: opacity;
136
+ transition-duration: 0.2s;
137
+ transition-delay: 0;
138
+ transition-timing-function: ease-in-out;
139
+ opacity: 0;
140
+ }
141
+ .seatmap-svg .stage .search-circle.show {
142
+ transition-property: opacity;
143
+ transition-duration: 0.2s;
144
+ transition-delay: 0;
145
+ transition-timing-function: ease-in-out;
146
+ opacity: 1;
147
+ }
148
+ .seatmap-svg .legend .legend-item circle {
149
+ stroke: #adadad;
150
+ stroke-width: 1px;
151
+ }
152
+ .seatmap-svg .legend .legend-item text {
153
+ text-anchor: start;
154
+ dominant-baseline: central;
155
+ }