iticket-seatingplan-dev 1.3.7 → 1.4.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.
@@ -0,0 +1,975 @@
1
+ /* body {
2
+ margin: 0;
3
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5
+ sans-serif;
6
+ -webkit-font-smoothing: antialiased;
7
+ -moz-osx-font-smoothing: grayscale;
8
+ } */
9
+
10
+ .root {
11
+ width: 100%;
12
+ height: 100%;
13
+ }
14
+
15
+ .legendBox {
16
+ background: rgba(0, 0, 0, 0.1);
17
+ padding: 0.5rem 0.8rem;
18
+ border-radius: 3px;
19
+ text-align: left;
20
+ }
21
+
22
+ .legend-header {
23
+ display: flex;
24
+ justify-content: space-between;
25
+ }
26
+
27
+ .legend-header p {
28
+ font-weight: bold;
29
+ margin: 0;
30
+ }
31
+
32
+ .legend-header .legend-button {
33
+ flex: 1;
34
+ text-align: center;
35
+ }
36
+
37
+ .legend-header button {
38
+ margin: 0;
39
+ padding: 0;
40
+ border: none;
41
+ background: none;
42
+ cursor: pointer;
43
+ }
44
+
45
+ .legend-header button.expanded {
46
+ text-align: left;
47
+ }
48
+
49
+ .legend-header .close-button {
50
+ margin-right: -0.3rem;
51
+ }
52
+
53
+ .legend-contents {
54
+ height: 0px;
55
+ overflow: hidden;
56
+ }
57
+
58
+ .legend-contents.expanded {
59
+ min-width: 100px;
60
+ height: fit-content;
61
+ padding-top: 0.2rem;
62
+ }
63
+
64
+ .legend-item {
65
+ display: inline-flex;
66
+ }
67
+
68
+ .legend-item p {
69
+ margin: 0 0.5rem;
70
+ }
71
+
72
+ .legend-symbol {
73
+ width: 1rem;
74
+ height: 1rem;
75
+ border-radius: 100%;
76
+ }
77
+
78
+ .legend-symbol.legend-available {
79
+ background: #00e640;
80
+ }
81
+
82
+ .legend-symbol.legend-sold {
83
+ background: #95a5a6;
84
+ }
85
+
86
+ .legend-symbol.legend-in-cart {
87
+ background: #e74c3c;
88
+ }
89
+
90
+ .rotate {
91
+ animation: rotation 2s infinite linear;
92
+ }
93
+
94
+ @keyframes rotation {
95
+ from {
96
+ transform: rotate(0deg);
97
+ }
98
+ to {
99
+ transform: rotate(-359deg);
100
+ }
101
+ }
102
+
103
+ .ticket-popup .popup-header {
104
+ margin-top: 0.2rem;
105
+ margin-bottom: 0.2rem;
106
+ display: flex;
107
+ justify-content: space-between;
108
+ }
109
+
110
+ .popup-header button {
111
+ margin: 0;
112
+ padding: 0;
113
+ border: none;
114
+ background: transparent;
115
+ display: flex;
116
+ cursor: pointer;
117
+ }
118
+
119
+ .popup-header .close-button {
120
+ height: fit-content;
121
+ width: fit-content;
122
+ padding: 2px;
123
+ border-radius: 50%;
124
+ transition: background-color 0.2s;
125
+ }
126
+
127
+ .popup-header .close-button:hover {
128
+ background-color: #ecf0f1;
129
+ }
130
+
131
+ .ticket-popup .heading {
132
+ margin: 0;
133
+ margin-bottom: 0.2rem;
134
+ font-weight: bold;
135
+ }
136
+
137
+ .ticket-popup .seatname {
138
+ margin-top: 0.2rem;
139
+ margin-bottom: 0.2rem;
140
+ font-weight: bold;
141
+ font-size: 0.9rem;
142
+ }
143
+
144
+ .priceage {
145
+ min-width: 10rem;
146
+ border-radius: 0.25rem;
147
+ padding: 0.5rem;
148
+ border: 1px solid #bdc3c7;
149
+ margin-bottom: 0.2rem;
150
+ cursor: pointer;
151
+ }
152
+
153
+ .priceage:hover {
154
+ background: #ecf0f1;
155
+ border: 1px solid #ecf0f1 !important;
156
+ transition: 0.5s;
157
+ transform: scale(1.01);
158
+ }
159
+
160
+ .priceage .price {
161
+ margin: 0px;
162
+ display: flex;
163
+ justify-content: space-between;
164
+ gap: 0.5rem;
165
+ }
166
+
167
+ .priceage .price span {
168
+ display: inline-block;
169
+ }
170
+
171
+ code {
172
+ font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
173
+ monospace;
174
+ }
175
+
176
+ .App {
177
+ height: 100%;
178
+ }
179
+
180
+ .loading {
181
+ display: flex;
182
+ justify-content: center;
183
+ align-items: center;
184
+ min-height: 500px;
185
+ flex-direction: column;
186
+ }
187
+
188
+ g:focus {
189
+ outline: none;
190
+ }
191
+
192
+ path:focus {
193
+ outline: none;
194
+ }
195
+
196
+ .initialise-message {
197
+ margin-top: 2rem;
198
+ }
199
+
200
+ /* LEAFLET */
201
+
202
+ /* required styles */
203
+
204
+ .leaflet-pane,
205
+ .leaflet-tile,
206
+ .leaflet-marker-icon,
207
+ .leaflet-marker-shadow,
208
+ .leaflet-tile-container,
209
+ .leaflet-pane > svg,
210
+ .leaflet-pane > canvas,
211
+ .leaflet-zoom-box,
212
+ .leaflet-image-layer,
213
+ .leaflet-layer {
214
+ position: absolute;
215
+ left: 0;
216
+ top: 0;
217
+ }
218
+ .leaflet-container {
219
+ overflow: hidden;
220
+ }
221
+ .leaflet-tile,
222
+ .leaflet-marker-icon,
223
+ .leaflet-marker-shadow {
224
+ -webkit-user-select: none;
225
+ -moz-user-select: none;
226
+ user-select: none;
227
+ -webkit-user-drag: none;
228
+ }
229
+ /* Prevents IE11 from highlighting tiles in blue */
230
+ .leaflet-tile::selection {
231
+ background: transparent;
232
+ }
233
+ /* Safari renders non-retina tile on retina better with this, but Chrome is worse */
234
+ .leaflet-safari .leaflet-tile {
235
+ image-rendering: -webkit-optimize-contrast;
236
+ }
237
+ /* hack that prevents hw layers "stretching" when loading new tiles */
238
+ .leaflet-safari .leaflet-tile-container {
239
+ width: 1600px;
240
+ height: 1600px;
241
+ -webkit-transform-origin: 0 0;
242
+ }
243
+ .leaflet-marker-icon,
244
+ .leaflet-marker-shadow {
245
+ display: block;
246
+ }
247
+ /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
248
+ /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
249
+ .leaflet-container .leaflet-overlay-pane svg {
250
+ max-width: none !important;
251
+ max-height: none !important;
252
+ }
253
+ .leaflet-container .leaflet-marker-pane img,
254
+ .leaflet-container .leaflet-shadow-pane img,
255
+ .leaflet-container .leaflet-tile-pane img,
256
+ .leaflet-container img.leaflet-image-layer,
257
+ .leaflet-container .leaflet-tile {
258
+ max-width: none !important;
259
+ max-height: none !important;
260
+ width: auto;
261
+ padding: 0;
262
+ }
263
+
264
+ .leaflet-container.leaflet-touch-zoom {
265
+ -ms-touch-action: pan-x pan-y;
266
+ touch-action: pan-x pan-y;
267
+ }
268
+ .leaflet-container.leaflet-touch-drag {
269
+ -ms-touch-action: pinch-zoom;
270
+ /* Fallback for FF which doesn't support pinch-zoom */
271
+ touch-action: none;
272
+ touch-action: pinch-zoom;
273
+ }
274
+ .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
275
+ -ms-touch-action: none;
276
+ touch-action: none;
277
+ }
278
+ .leaflet-container {
279
+ -webkit-tap-highlight-color: transparent;
280
+ }
281
+ .leaflet-container a {
282
+ -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
283
+ }
284
+ .leaflet-tile {
285
+ filter: inherit;
286
+ visibility: hidden;
287
+ }
288
+ .leaflet-tile-loaded {
289
+ visibility: inherit;
290
+ }
291
+ .leaflet-zoom-box {
292
+ width: 0;
293
+ height: 0;
294
+ -moz-box-sizing: border-box;
295
+ box-sizing: border-box;
296
+ z-index: 800;
297
+ }
298
+ /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
299
+ .leaflet-overlay-pane svg {
300
+ -moz-user-select: none;
301
+ }
302
+
303
+ .leaflet-pane {
304
+ z-index: 400;
305
+ }
306
+ .leaflet-tile-pane {
307
+ z-index: 200;
308
+ }
309
+ .leaflet-overlay-pane {
310
+ z-index: 400;
311
+ }
312
+ .leaflet-shadow-pane {
313
+ z-index: 500;
314
+ }
315
+ .leaflet-marker-pane {
316
+ z-index: 600;
317
+ }
318
+ .leaflet-tooltip-pane {
319
+ z-index: 650;
320
+ }
321
+ .leaflet-popup-pane {
322
+ z-index: 700;
323
+ }
324
+ .leaflet-map-pane canvas {
325
+ z-index: 100;
326
+ }
327
+ .leaflet-map-pane svg {
328
+ z-index: 200;
329
+ }
330
+
331
+ .leaflet-vml-shape {
332
+ width: 1px;
333
+ height: 1px;
334
+ }
335
+ .lvml {
336
+ behavior: url(#default#VML);
337
+ display: inline-block;
338
+ position: absolute;
339
+ }
340
+
341
+ /* control positioning */
342
+
343
+ .leaflet-control {
344
+ position: relative;
345
+ z-index: 800;
346
+ pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
347
+ pointer-events: auto;
348
+ }
349
+ .leaflet-top,
350
+ .leaflet-bottom {
351
+ position: absolute;
352
+ z-index: 1000;
353
+ pointer-events: none;
354
+ }
355
+ .leaflet-top {
356
+ top: 0;
357
+ }
358
+ .leaflet-right {
359
+ right: 0;
360
+ }
361
+ .leaflet-bottom {
362
+ bottom: 0;
363
+ }
364
+ .leaflet-left {
365
+ left: 0;
366
+ }
367
+ .leaflet-control {
368
+ float: left;
369
+ clear: both;
370
+ }
371
+ .leaflet-right .leaflet-control {
372
+ float: right;
373
+ }
374
+ .leaflet-top .leaflet-control {
375
+ margin-top: 10px;
376
+ }
377
+ .leaflet-bottom .leaflet-control {
378
+ margin-bottom: 10px;
379
+ }
380
+ .leaflet-left .leaflet-control {
381
+ margin-left: 10px;
382
+ }
383
+ .leaflet-right .leaflet-control {
384
+ margin-right: 10px;
385
+ }
386
+
387
+ /* zoom and fade animations */
388
+
389
+ .leaflet-fade-anim .leaflet-popup {
390
+ opacity: 0;
391
+ -webkit-transition: opacity 0.2s linear;
392
+ -moz-transition: opacity 0.2s linear;
393
+ transition: opacity 0.2s linear;
394
+ }
395
+ .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
396
+ opacity: 1;
397
+ }
398
+ .leaflet-zoom-animated {
399
+ -webkit-transform-origin: 0 0;
400
+ -ms-transform-origin: 0 0;
401
+ transform-origin: 0 0;
402
+ }
403
+ svg.leaflet-zoom-animated {
404
+ will-change: transform;
405
+ }
406
+
407
+ .leaflet-zoom-anim .leaflet-zoom-animated {
408
+ -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
409
+ -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
410
+ transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
411
+ }
412
+ .leaflet-zoom-anim .leaflet-tile,
413
+ .leaflet-pan-anim .leaflet-tile {
414
+ -webkit-transition: none;
415
+ -moz-transition: none;
416
+ transition: none;
417
+ }
418
+
419
+ .leaflet-zoom-anim .leaflet-zoom-hide {
420
+ visibility: hidden;
421
+ }
422
+
423
+ /* cursors */
424
+
425
+ .leaflet-interactive {
426
+ cursor: pointer;
427
+ }
428
+ .leaflet-grab {
429
+ cursor: -webkit-grab;
430
+ cursor: -moz-grab;
431
+ cursor: grab;
432
+ }
433
+ .leaflet-crosshair,
434
+ .leaflet-crosshair .leaflet-interactive {
435
+ cursor: crosshair;
436
+ }
437
+ .leaflet-popup-pane,
438
+ .leaflet-control {
439
+ cursor: auto;
440
+ }
441
+ .leaflet-dragging .leaflet-grab,
442
+ .leaflet-dragging .leaflet-grab .leaflet-interactive,
443
+ .leaflet-dragging .leaflet-marker-draggable {
444
+ cursor: move;
445
+ cursor: -webkit-grabbing;
446
+ cursor: -moz-grabbing;
447
+ cursor: grabbing;
448
+ }
449
+
450
+ /* marker & overlays interactivity */
451
+ .leaflet-marker-icon,
452
+ .leaflet-marker-shadow,
453
+ .leaflet-image-layer,
454
+ .leaflet-pane > svg path,
455
+ .leaflet-tile-container {
456
+ pointer-events: none;
457
+ }
458
+
459
+ .leaflet-marker-icon.leaflet-interactive,
460
+ .leaflet-image-layer.leaflet-interactive,
461
+ .leaflet-pane > svg path.leaflet-interactive,
462
+ svg.leaflet-image-layer.leaflet-interactive path {
463
+ pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
464
+ pointer-events: auto;
465
+ }
466
+
467
+ /* visual tweaks */
468
+
469
+ .leaflet-container {
470
+ --accent-color: rgba(99, 102, 241, 0.08);
471
+ --bg-color: rgb(249, 250, 251);
472
+ background-color: var(--bg-color);
473
+ background-image: linear-gradient(var(--accent-color) 1px, transparent 1px),
474
+ linear-gradient(to right, var(--accent-color) 1px, var(--bg-color) 1px);
475
+ background-size: 20px 20px;
476
+ outline-offset: 1px;
477
+ min-height: 500px;
478
+ height: 100%;
479
+ }
480
+ .leaflet-container a {
481
+ color: #0078a8;
482
+ }
483
+ .leaflet-zoom-box {
484
+ border: 2px dotted #38f;
485
+ background: rgba(255, 255, 255, 0.5);
486
+ }
487
+
488
+ /* general typography */
489
+ .leaflet-container,
490
+ .initialise-message,
491
+ .loading {
492
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
493
+ }
494
+
495
+ .leaflet-container {
496
+ font-size: 12px;
497
+ font-size: 0.75rem;
498
+ line-height: 1.5;
499
+ }
500
+
501
+ /* general toolbar styles */
502
+
503
+ .leaflet-bar {
504
+ box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
505
+ border-radius: 4px;
506
+ }
507
+ .leaflet-bar a {
508
+ background-color: #fff;
509
+ border-bottom: 1px solid #ccc;
510
+ width: 26px;
511
+ height: 26px;
512
+ line-height: 26px;
513
+ display: block;
514
+ text-align: center;
515
+ text-decoration: none;
516
+ color: black;
517
+ }
518
+ .leaflet-bar a,
519
+ .leaflet-control-layers-toggle {
520
+ background-position: 50% 50%;
521
+ background-repeat: no-repeat;
522
+ display: block;
523
+ }
524
+ .leaflet-bar a:hover,
525
+ .leaflet-bar a:focus {
526
+ background-color: #f4f4f4;
527
+ }
528
+ .leaflet-bar a:first-child {
529
+ border-top-left-radius: 4px;
530
+ border-top-right-radius: 4px;
531
+ }
532
+ .leaflet-bar a:last-child {
533
+ border-bottom-left-radius: 4px;
534
+ border-bottom-right-radius: 4px;
535
+ border-bottom: none;
536
+ }
537
+ .leaflet-bar a.leaflet-disabled {
538
+ cursor: default;
539
+ background-color: #f4f4f4;
540
+ color: #bbb;
541
+ }
542
+
543
+ .leaflet-touch .leaflet-bar a {
544
+ width: 30px;
545
+ height: 30px;
546
+ line-height: 30px;
547
+ }
548
+ .leaflet-touch .leaflet-bar a:first-child {
549
+ border-top-left-radius: 2px;
550
+ border-top-right-radius: 2px;
551
+ }
552
+ .leaflet-touch .leaflet-bar a:last-child {
553
+ border-bottom-left-radius: 2px;
554
+ border-bottom-right-radius: 2px;
555
+ }
556
+
557
+ /* zoom control */
558
+
559
+ .extra-controls {
560
+ display: flex;
561
+ flex-direction: column;
562
+ border: 2px solid rgba(0, 0, 0, 0.2);
563
+ border-radius: 4px;
564
+ background-clip: padding-box;
565
+ }
566
+
567
+ .leaflet-control-zoom-in,
568
+ .leaflet-control-zoom-out {
569
+ font: bold 18px "Lucida Console", Monaco, monospace;
570
+ text-indent: 1px;
571
+ }
572
+
573
+ .extra-controls .leaflet-control-zoom-in {
574
+ border: none;
575
+ border-radius: 4px 4px 0 0;
576
+ background: #fff;
577
+ cursor: pointer;
578
+ width: 30px;
579
+ height: 30px;
580
+ display: flex;
581
+ align-items: center;
582
+ justify-content: center;
583
+ }
584
+
585
+ .leaflet-control-zoom-in.reload-seating-plan {
586
+ border-radius: 0 0 0 0;
587
+ border-top: 1px solid #ccc;
588
+ }
589
+
590
+ .leaflet-touch .leaflet-control-zoom-in,
591
+ .leaflet-touch .leaflet-control-zoom-out {
592
+ font-size: 22px;
593
+ }
594
+
595
+ .full-screen-close-button {
596
+ border: none;
597
+ padding: 5px;
598
+ background-color: transparent;
599
+ cursor: pointer;
600
+ border-radius: 50%;
601
+ transition: background-color 0.2s;
602
+ display: none;
603
+ justify-content: center;
604
+ align-items: center;
605
+ }
606
+
607
+ .full-screen-close-button:hover {
608
+ background-color: #ecf0f1;
609
+ }
610
+
611
+ .full-screen-close-button.show {
612
+ display: flex;
613
+ }
614
+
615
+ /* layers control */
616
+
617
+ .leaflet-control-layers {
618
+ box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
619
+ background: #fff;
620
+ border-radius: 5px;
621
+ }
622
+ .leaflet-control-layers-toggle {
623
+ background-image: url(../assets/layers.png);
624
+ width: 36px;
625
+ height: 36px;
626
+ }
627
+ .leaflet-retina .leaflet-control-layers-toggle {
628
+ background-image: url(../assets/layers-2x.png);
629
+ background-size: 26px 26px;
630
+ }
631
+ .leaflet-touch .leaflet-control-layers-toggle {
632
+ width: 44px;
633
+ height: 44px;
634
+ }
635
+ .leaflet-control-layers .leaflet-control-layers-list,
636
+ .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
637
+ display: none;
638
+ }
639
+ .leaflet-control-layers-expanded .leaflet-control-layers-list {
640
+ display: block;
641
+ position: relative;
642
+ }
643
+ .leaflet-control-layers-expanded {
644
+ padding: 6px 10px 6px 6px;
645
+ color: #333;
646
+ background: #fff;
647
+ }
648
+ .leaflet-control-layers-scrollbar {
649
+ overflow-y: scroll;
650
+ overflow-x: hidden;
651
+ padding-right: 5px;
652
+ }
653
+ .leaflet-control-layers-selector {
654
+ margin-top: 2px;
655
+ position: relative;
656
+ top: 1px;
657
+ }
658
+ .leaflet-control-layers label {
659
+ display: block;
660
+ font-size: 13px;
661
+ font-size: 1.08333em;
662
+ }
663
+ .leaflet-control-layers-separator {
664
+ height: 0;
665
+ border-top: 1px solid #ddd;
666
+ margin: 5px -10px 5px -6px;
667
+ }
668
+
669
+ /* Default icon URLs */
670
+ .leaflet-default-icon-path {
671
+ /* used only in path-guessing heuristic, see L.Icon.Default */
672
+ background-image: url(../assets/marker-icon.png);
673
+ }
674
+
675
+ /* attribution and scale controls */
676
+
677
+ .leaflet-container .leaflet-control-attribution {
678
+ display: none;
679
+ background: #fff;
680
+ background: rgba(255, 255, 255, 0.8);
681
+ margin: 0;
682
+ }
683
+ .leaflet-control-attribution,
684
+ .leaflet-control-scale-line {
685
+ padding: 0 5px;
686
+ color: #333;
687
+ line-height: 1.4;
688
+ }
689
+ .leaflet-control-attribution a {
690
+ text-decoration: none;
691
+ }
692
+ .leaflet-control-attribution a:hover,
693
+ .leaflet-control-attribution a:focus {
694
+ text-decoration: underline;
695
+ }
696
+ .leaflet-attribution-flag {
697
+ display: inline !important;
698
+ vertical-align: baseline !important;
699
+ width: 1em;
700
+ height: 0.6669em;
701
+ }
702
+ .leaflet-left .leaflet-control-scale {
703
+ margin-left: 5px;
704
+ }
705
+ .leaflet-bottom .leaflet-control-scale {
706
+ margin-bottom: 5px;
707
+ }
708
+ .leaflet-control-scale-line {
709
+ border: 2px solid #777;
710
+ border-top: none;
711
+ line-height: 1.1;
712
+ padding: 2px 5px 1px;
713
+ white-space: nowrap;
714
+ -moz-box-sizing: border-box;
715
+ box-sizing: border-box;
716
+ background: rgba(255, 255, 255, 0.8);
717
+ text-shadow: 1px 1px #fff;
718
+ }
719
+ .leaflet-control-scale-line:not(:first-child) {
720
+ border-top: 2px solid #777;
721
+ border-bottom: none;
722
+ margin-top: -2px;
723
+ }
724
+ .leaflet-control-scale-line:not(:first-child):not(:last-child) {
725
+ border-bottom: 2px solid #777;
726
+ }
727
+
728
+ .leaflet-touch .leaflet-control-attribution,
729
+ .leaflet-touch .leaflet-control-layers,
730
+ .leaflet-touch .leaflet-bar {
731
+ box-shadow: none;
732
+ }
733
+ .leaflet-touch .leaflet-control-layers,
734
+ .leaflet-touch .leaflet-bar {
735
+ border: 2px solid rgba(0, 0, 0, 0.2);
736
+ background-clip: padding-box;
737
+ }
738
+
739
+ /* popup */
740
+
741
+ .leaflet-popup {
742
+ position: absolute;
743
+ text-align: center;
744
+ margin-bottom: 20px;
745
+ }
746
+ .leaflet-popup-content-wrapper {
747
+ padding: 1px;
748
+ text-align: left;
749
+ border-radius: 12px;
750
+ }
751
+ .leaflet-popup-content {
752
+ margin: 0.5rem;
753
+ line-height: 1.3;
754
+ font-size: 13px;
755
+ font-size: 1.08333em;
756
+ min-height: 1px;
757
+ }
758
+ .leaflet-popup-content p {
759
+ margin: 17px 0;
760
+ margin: 1.3em 0;
761
+ }
762
+ .leaflet-popup-tip-container {
763
+ width: 40px;
764
+ height: 20px;
765
+ position: absolute;
766
+ left: 50%;
767
+ margin-top: -1px;
768
+ margin-left: -20px;
769
+ overflow: hidden;
770
+ pointer-events: none;
771
+ }
772
+ .leaflet-popup-tip {
773
+ width: 17px;
774
+ height: 17px;
775
+ padding: 1px;
776
+
777
+ margin: -10px auto 0;
778
+ pointer-events: auto;
779
+
780
+ -webkit-transform: rotate(45deg);
781
+ -moz-transform: rotate(45deg);
782
+ -ms-transform: rotate(45deg);
783
+ transform: rotate(45deg);
784
+ }
785
+ .leaflet-popup-content-wrapper,
786
+ .leaflet-popup-tip {
787
+ background: white;
788
+ color: #333;
789
+ box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
790
+ }
791
+ .leaflet-container a.leaflet-popup-close-button {
792
+ position: absolute;
793
+ top: 0;
794
+ right: 0;
795
+ border: none;
796
+ text-align: center;
797
+ width: 24px;
798
+ height: 24px;
799
+ font: 16px/24px Tahoma, Verdana, sans-serif;
800
+ color: #757575;
801
+ text-decoration: none;
802
+ background: transparent;
803
+ display: none;
804
+ }
805
+ .leaflet-container a.leaflet-popup-close-button:hover,
806
+ .leaflet-container a.leaflet-popup-close-button:focus {
807
+ color: #585858;
808
+ }
809
+ .leaflet-popup-scrolled {
810
+ overflow: auto;
811
+ }
812
+
813
+ .leaflet-oldie .leaflet-popup-content-wrapper {
814
+ -ms-zoom: 1;
815
+ }
816
+ .leaflet-oldie .leaflet-popup-tip {
817
+ width: 24px;
818
+ margin: 0 auto;
819
+
820
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
821
+ filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
822
+ }
823
+
824
+ .leaflet-oldie .leaflet-control-zoom,
825
+ .leaflet-oldie .leaflet-control-layers,
826
+ .leaflet-oldie .leaflet-popup-content-wrapper,
827
+ .leaflet-oldie .leaflet-popup-tip {
828
+ border: 1px solid #999;
829
+ }
830
+
831
+ /* div icon */
832
+
833
+ .leaflet-div-icon {
834
+ background: #fff;
835
+ border: 1px solid #666;
836
+ }
837
+
838
+ /* Tooltip */
839
+ /* Base styles for the element that has a tooltip */
840
+ .leaflet-tooltip {
841
+ position: absolute;
842
+ padding: 6px;
843
+ background-color: #fff;
844
+ border: 1px solid #fff;
845
+ border-radius: 3px;
846
+ color: #222;
847
+ white-space: nowrap;
848
+ -webkit-user-select: none;
849
+ -moz-user-select: none;
850
+ -ms-user-select: none;
851
+ user-select: none;
852
+ pointer-events: none;
853
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
854
+ }
855
+ .leaflet-tooltip.leaflet-interactive {
856
+ cursor: pointer;
857
+ pointer-events: auto;
858
+ }
859
+ .leaflet-tooltip-top:before,
860
+ .leaflet-tooltip-bottom:before,
861
+ .leaflet-tooltip-left:before,
862
+ .leaflet-tooltip-right:before {
863
+ position: absolute;
864
+ pointer-events: none;
865
+ border: 6px solid transparent;
866
+ background: transparent;
867
+ content: "";
868
+ }
869
+
870
+ @media screen and (max-width: 1024px) {
871
+ .seatname-tooltip {
872
+ display: none;
873
+ pointer-events: none;
874
+ }
875
+ }
876
+
877
+ /* Directions */
878
+
879
+ .leaflet-tooltip-bottom {
880
+ margin-top: 6px;
881
+ }
882
+ .leaflet-tooltip-top {
883
+ margin-top: -6px;
884
+ }
885
+ .leaflet-tooltip-bottom:before,
886
+ .leaflet-tooltip-top:before {
887
+ left: 50%;
888
+ margin-left: -6px;
889
+ }
890
+ .leaflet-tooltip-top:before {
891
+ bottom: 0;
892
+ margin-bottom: -12px;
893
+ border-top-color: #fff;
894
+ }
895
+ .leaflet-tooltip-bottom:before {
896
+ top: 0;
897
+ margin-top: -12px;
898
+ margin-left: -6px;
899
+ border-bottom-color: #fff;
900
+ }
901
+ .leaflet-tooltip-left {
902
+ margin-left: -6px;
903
+ }
904
+ .leaflet-tooltip-right {
905
+ margin-left: 6px;
906
+ }
907
+ .leaflet-tooltip-left:before,
908
+ .leaflet-tooltip-right:before {
909
+ top: 50%;
910
+ margin-top: -6px;
911
+ }
912
+ .leaflet-tooltip-left:before {
913
+ right: 0;
914
+ margin-right: -12px;
915
+ border-left-color: #fff;
916
+ }
917
+ .leaflet-tooltip-right:before {
918
+ left: 0;
919
+ margin-left: -12px;
920
+ border-right-color: #fff;
921
+ }
922
+
923
+ /* Full screen mode */
924
+
925
+ .seating-plan {
926
+ border-radius: 5px;
927
+ overflow: hidden;
928
+ }
929
+
930
+ .seating-plan-backdrop {
931
+ content: "";
932
+ position: fixed;
933
+ top: 0;
934
+ left: 0;
935
+ width: 100vw;
936
+ height: 100vh;
937
+ pointer-events: none;
938
+ background-color: transparent;
939
+ transition: background-color 0.2s ease-in-out;
940
+ z-index: 0;
941
+ }
942
+
943
+ .seating-plan-backdrop.full-screen {
944
+ pointer-events: auto;
945
+ background-color: rgba(0, 0, 0, 0.4);
946
+ z-index: 999;
947
+ }
948
+
949
+ .seating-plan.full-screen {
950
+ position: fixed;
951
+ top: 0;
952
+ left: 0;
953
+ height: 90%;
954
+ width: 80%;
955
+ margin: 5vh 10vw;
956
+ z-index: 1000;
957
+ }
958
+
959
+ @media screen and (max-width: 1024px) {
960
+ .seating-plan.full-screen {
961
+ height: 80%;
962
+ width: calc(100% - 40px);
963
+ margin: 10vh 20px;
964
+ }
965
+ }
966
+
967
+ /* Printing */
968
+
969
+ @media print {
970
+ /* Prevent printers from removing background-images of controls. */
971
+ .leaflet-control {
972
+ -webkit-print-color-adjust: exact;
973
+ print-color-adjust: exact;
974
+ }
975
+ }