iticket-seatingplan-dev 1.3.6 → 1.3.7

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.
Binary file
@@ -1,731 +0,0 @@
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
-
11
-
12
- .legendBox {
13
- background: rgba(0, 0, 0, 0.03);
14
- padding: 0.5rem 1rem;
15
- border-radius: 3px;
16
- text-align: left;
17
- }
18
-
19
- .legendHeader {
20
- font-weight: bold;
21
- }
22
-
23
-
24
- .rotate {
25
- animation: rotation 2s infinite linear;
26
- }
27
-
28
- @keyframes rotation {
29
- from {
30
- transform: rotate(0deg);
31
- }
32
- to {
33
- transform: rotate(-359deg);
34
- }
35
- }
36
-
37
- .priceage:hover {
38
- background: #ecf0f1;
39
- border: 1px solid #ecf0f1 !important;
40
- transition: 0.5s;
41
- transform: scale(1.01);
42
- }
43
-
44
- code {
45
- font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
46
- monospace;
47
- }
48
-
49
- .App {
50
- height: 100%;
51
- }
52
-
53
- .loading {
54
- display: flex;
55
- justify-content: center;
56
- align-items: center;
57
- min-height: 500px;
58
- flex-direction: column;
59
- }
60
-
61
-
62
- g:focus {
63
- outline: none;
64
- }
65
-
66
- path:focus {
67
- outline: none;
68
- }
69
-
70
-
71
-
72
- /* LEAFLET */
73
-
74
- /* required styles */
75
-
76
- .leaflet-pane,
77
- .leaflet-tile,
78
- .leaflet-marker-icon,
79
- .leaflet-marker-shadow,
80
- .leaflet-tile-container,
81
- .leaflet-pane > svg,
82
- .leaflet-pane > canvas,
83
- .leaflet-zoom-box,
84
- .leaflet-image-layer,
85
- .leaflet-layer {
86
- position: absolute;
87
- left: 0;
88
- top: 0;
89
- }
90
- .leaflet-container {
91
- overflow: hidden;
92
- }
93
- .leaflet-tile,
94
- .leaflet-marker-icon,
95
- .leaflet-marker-shadow {
96
- -webkit-user-select: none;
97
- -moz-user-select: none;
98
- user-select: none;
99
- -webkit-user-drag: none;
100
- }
101
- /* Prevents IE11 from highlighting tiles in blue */
102
- .leaflet-tile::selection {
103
- background: transparent;
104
- }
105
- /* Safari renders non-retina tile on retina better with this, but Chrome is worse */
106
- .leaflet-safari .leaflet-tile {
107
- image-rendering: -webkit-optimize-contrast;
108
- }
109
- /* hack that prevents hw layers "stretching" when loading new tiles */
110
- .leaflet-safari .leaflet-tile-container {
111
- width: 1600px;
112
- height: 1600px;
113
- -webkit-transform-origin: 0 0;
114
- }
115
- .leaflet-marker-icon,
116
- .leaflet-marker-shadow {
117
- display: block;
118
- }
119
- /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
120
- /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
121
- .leaflet-container .leaflet-overlay-pane svg {
122
- max-width: none !important;
123
- max-height: none !important;
124
- }
125
- .leaflet-container .leaflet-marker-pane img,
126
- .leaflet-container .leaflet-shadow-pane img,
127
- .leaflet-container .leaflet-tile-pane img,
128
- .leaflet-container img.leaflet-image-layer,
129
- .leaflet-container .leaflet-tile {
130
- max-width: none !important;
131
- max-height: none !important;
132
- width: auto;
133
- padding: 0;
134
- }
135
-
136
- .leaflet-container.leaflet-touch-zoom {
137
- -ms-touch-action: pan-x pan-y;
138
- touch-action: pan-x pan-y;
139
- }
140
- .leaflet-container.leaflet-touch-drag {
141
- -ms-touch-action: pinch-zoom;
142
- /* Fallback for FF which doesn't support pinch-zoom */
143
- touch-action: none;
144
- touch-action: pinch-zoom;
145
- }
146
- .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
147
- -ms-touch-action: none;
148
- touch-action: none;
149
- }
150
- .leaflet-container {
151
- -webkit-tap-highlight-color: transparent;
152
- }
153
- .leaflet-container a {
154
- -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
155
- }
156
- .leaflet-tile {
157
- filter: inherit;
158
- visibility: hidden;
159
- }
160
- .leaflet-tile-loaded {
161
- visibility: inherit;
162
- }
163
- .leaflet-zoom-box {
164
- width: 0;
165
- height: 0;
166
- -moz-box-sizing: border-box;
167
- box-sizing: border-box;
168
- z-index: 800;
169
- }
170
- /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
171
- .leaflet-overlay-pane svg {
172
- -moz-user-select: none;
173
- }
174
-
175
- .leaflet-pane { z-index: 400; }
176
-
177
- .leaflet-tile-pane { z-index: 200; }
178
- .leaflet-overlay-pane { z-index: 400; }
179
- .leaflet-shadow-pane { z-index: 500; }
180
- .leaflet-marker-pane { z-index: 600; }
181
- .leaflet-tooltip-pane { z-index: 650; }
182
- .leaflet-popup-pane { z-index: 700; }
183
-
184
- .leaflet-map-pane canvas { z-index: 100; }
185
- .leaflet-map-pane svg { z-index: 200; }
186
-
187
- .leaflet-vml-shape {
188
- width: 1px;
189
- height: 1px;
190
- }
191
- .lvml {
192
- behavior: url(#default#VML);
193
- display: inline-block;
194
- position: absolute;
195
- }
196
-
197
-
198
- /* control positioning */
199
-
200
- .leaflet-control {
201
- position: relative;
202
- z-index: 800;
203
- pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
204
- pointer-events: auto;
205
- }
206
- .leaflet-top,
207
- .leaflet-bottom {
208
- position: absolute;
209
- z-index: 1000;
210
- pointer-events: none;
211
- }
212
- .leaflet-top {
213
- top: 0;
214
- }
215
- .leaflet-right {
216
- right: 0;
217
- }
218
- .leaflet-bottom {
219
- bottom: 0;
220
- }
221
- .leaflet-left {
222
- left: 0;
223
- }
224
- .leaflet-control {
225
- float: left;
226
- clear: both;
227
- }
228
- .leaflet-right .leaflet-control {
229
- float: right;
230
- }
231
- .leaflet-top .leaflet-control {
232
- margin-top: 10px;
233
- }
234
- .leaflet-bottom .leaflet-control {
235
- margin-bottom: 10px;
236
- }
237
- .leaflet-left .leaflet-control {
238
- margin-left: 10px;
239
- }
240
- .leaflet-right .leaflet-control {
241
- margin-right: 10px;
242
- }
243
-
244
-
245
- /* zoom and fade animations */
246
-
247
- .leaflet-fade-anim .leaflet-popup {
248
- opacity: 0;
249
- -webkit-transition: opacity 0.2s linear;
250
- -moz-transition: opacity 0.2s linear;
251
- transition: opacity 0.2s linear;
252
- }
253
- .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
254
- opacity: 1;
255
- }
256
- .leaflet-zoom-animated {
257
- -webkit-transform-origin: 0 0;
258
- -ms-transform-origin: 0 0;
259
- transform-origin: 0 0;
260
- }
261
- svg.leaflet-zoom-animated {
262
- will-change: transform;
263
- }
264
-
265
- .leaflet-zoom-anim .leaflet-zoom-animated {
266
- -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
267
- -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
268
- transition: transform 0.25s cubic-bezier(0,0,0.25,1);
269
- }
270
- .leaflet-zoom-anim .leaflet-tile,
271
- .leaflet-pan-anim .leaflet-tile {
272
- -webkit-transition: none;
273
- -moz-transition: none;
274
- transition: none;
275
- }
276
-
277
- .leaflet-zoom-anim .leaflet-zoom-hide {
278
- visibility: hidden;
279
- }
280
-
281
-
282
- /* cursors */
283
-
284
- .leaflet-interactive {
285
- cursor: pointer;
286
- }
287
- .leaflet-grab {
288
- cursor: -webkit-grab;
289
- cursor: -moz-grab;
290
- cursor: grab;
291
- }
292
- .leaflet-crosshair,
293
- .leaflet-crosshair .leaflet-interactive {
294
- cursor: crosshair;
295
- }
296
- .leaflet-popup-pane,
297
- .leaflet-control {
298
- cursor: auto;
299
- }
300
- .leaflet-dragging .leaflet-grab,
301
- .leaflet-dragging .leaflet-grab .leaflet-interactive,
302
- .leaflet-dragging .leaflet-marker-draggable {
303
- cursor: move;
304
- cursor: -webkit-grabbing;
305
- cursor: -moz-grabbing;
306
- cursor: grabbing;
307
- }
308
-
309
- /* marker & overlays interactivity */
310
- .leaflet-marker-icon,
311
- .leaflet-marker-shadow,
312
- .leaflet-image-layer,
313
- .leaflet-pane > svg path,
314
- .leaflet-tile-container {
315
- pointer-events: none;
316
- }
317
-
318
- .leaflet-marker-icon.leaflet-interactive,
319
- .leaflet-image-layer.leaflet-interactive,
320
- .leaflet-pane > svg path.leaflet-interactive,
321
- svg.leaflet-image-layer.leaflet-interactive path {
322
- pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
323
- pointer-events: auto;
324
- }
325
-
326
- /* visual tweaks */
327
-
328
- .leaflet-container {
329
- background: #ddd;
330
- outline-offset: 1px;
331
- }
332
- .leaflet-container a {
333
- color: #0078A8;
334
- }
335
- .leaflet-zoom-box {
336
- border: 2px dotted #38f;
337
- background: rgba(255,255,255,0.5);
338
- }
339
-
340
-
341
- /* general typography */
342
- .leaflet-container {
343
- font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
344
- font-size: 12px;
345
- font-size: 0.75rem;
346
- line-height: 1.5;
347
- }
348
-
349
-
350
- /* general toolbar styles */
351
-
352
- .leaflet-bar {
353
- box-shadow: 0 1px 5px rgba(0,0,0,0.65);
354
- border-radius: 4px;
355
- }
356
- .leaflet-bar a {
357
- background-color: #fff;
358
- border-bottom: 1px solid #ccc;
359
- width: 26px;
360
- height: 26px;
361
- line-height: 26px;
362
- display: block;
363
- text-align: center;
364
- text-decoration: none;
365
- color: black;
366
- }
367
- .leaflet-bar a,
368
- .leaflet-control-layers-toggle {
369
- background-position: 50% 50%;
370
- background-repeat: no-repeat;
371
- display: block;
372
- }
373
- .leaflet-bar a:hover,
374
- .leaflet-bar a:focus {
375
- background-color: #f4f4f4;
376
- }
377
- .leaflet-bar a:first-child {
378
- border-top-left-radius: 4px;
379
- border-top-right-radius: 4px;
380
- }
381
- .leaflet-bar a:last-child {
382
- border-bottom-left-radius: 4px;
383
- border-bottom-right-radius: 4px;
384
- border-bottom: none;
385
- }
386
- .leaflet-bar a.leaflet-disabled {
387
- cursor: default;
388
- background-color: #f4f4f4;
389
- color: #bbb;
390
- }
391
-
392
- .leaflet-touch .leaflet-bar a {
393
- width: 30px;
394
- height: 30px;
395
- line-height: 30px;
396
- }
397
- .leaflet-touch .leaflet-bar a:first-child {
398
- border-top-left-radius: 2px;
399
- border-top-right-radius: 2px;
400
- }
401
- .leaflet-touch .leaflet-bar a:last-child {
402
- border-bottom-left-radius: 2px;
403
- border-bottom-right-radius: 2px;
404
- }
405
-
406
- /* zoom control */
407
-
408
- .leaflet-control-zoom-in,
409
- .leaflet-control-zoom-out {
410
- font: bold 18px 'Lucida Console', Monaco, monospace;
411
- text-indent: 1px;
412
- }
413
-
414
- .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
415
- font-size: 22px;
416
- }
417
-
418
-
419
- /* layers control */
420
-
421
- .leaflet-control-layers {
422
- box-shadow: 0 1px 5px rgba(0,0,0,0.4);
423
- background: #fff;
424
- border-radius: 5px;
425
- }
426
- .leaflet-control-layers-toggle {
427
- background-image: url(../assets/layers.png);
428
- width: 36px;
429
- height: 36px;
430
- }
431
- .leaflet-retina .leaflet-control-layers-toggle {
432
- background-image: url(../assets/layers-2x.png);
433
- background-size: 26px 26px;
434
- }
435
- .leaflet-touch .leaflet-control-layers-toggle {
436
- width: 44px;
437
- height: 44px;
438
- }
439
- .leaflet-control-layers .leaflet-control-layers-list,
440
- .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
441
- display: none;
442
- }
443
- .leaflet-control-layers-expanded .leaflet-control-layers-list {
444
- display: block;
445
- position: relative;
446
- }
447
- .leaflet-control-layers-expanded {
448
- padding: 6px 10px 6px 6px;
449
- color: #333;
450
- background: #fff;
451
- }
452
- .leaflet-control-layers-scrollbar {
453
- overflow-y: scroll;
454
- overflow-x: hidden;
455
- padding-right: 5px;
456
- }
457
- .leaflet-control-layers-selector {
458
- margin-top: 2px;
459
- position: relative;
460
- top: 1px;
461
- }
462
- .leaflet-control-layers label {
463
- display: block;
464
- font-size: 13px;
465
- font-size: 1.08333em;
466
- }
467
- .leaflet-control-layers-separator {
468
- height: 0;
469
- border-top: 1px solid #ddd;
470
- margin: 5px -10px 5px -6px;
471
- }
472
-
473
- /* Default icon URLs */
474
- .leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
475
- background-image: url(../assets/marker-icon.png);
476
- }
477
-
478
-
479
- /* attribution and scale controls */
480
-
481
- .leaflet-container .leaflet-control-attribution {
482
- display: none;
483
- background: #fff;
484
- background: rgba(255, 255, 255, 0.8);
485
- margin: 0;
486
- }
487
- .leaflet-control-attribution,
488
- .leaflet-control-scale-line {
489
- padding: 0 5px;
490
- color: #333;
491
- line-height: 1.4;
492
- }
493
- .leaflet-control-attribution a {
494
- text-decoration: none;
495
- }
496
- .leaflet-control-attribution a:hover,
497
- .leaflet-control-attribution a:focus {
498
- text-decoration: underline;
499
- }
500
- .leaflet-attribution-flag {
501
- display: inline !important;
502
- vertical-align: baseline !important;
503
- width: 1em;
504
- height: 0.6669em;
505
- }
506
- .leaflet-left .leaflet-control-scale {
507
- margin-left: 5px;
508
- }
509
- .leaflet-bottom .leaflet-control-scale {
510
- margin-bottom: 5px;
511
- }
512
- .leaflet-control-scale-line {
513
- border: 2px solid #777;
514
- border-top: none;
515
- line-height: 1.1;
516
- padding: 2px 5px 1px;
517
- white-space: nowrap;
518
- -moz-box-sizing: border-box;
519
- box-sizing: border-box;
520
- background: rgba(255, 255, 255, 0.8);
521
- text-shadow: 1px 1px #fff;
522
- }
523
- .leaflet-control-scale-line:not(:first-child) {
524
- border-top: 2px solid #777;
525
- border-bottom: none;
526
- margin-top: -2px;
527
- }
528
- .leaflet-control-scale-line:not(:first-child):not(:last-child) {
529
- border-bottom: 2px solid #777;
530
- }
531
-
532
- .leaflet-touch .leaflet-control-attribution,
533
- .leaflet-touch .leaflet-control-layers,
534
- .leaflet-touch .leaflet-bar {
535
- box-shadow: none;
536
- }
537
- .leaflet-touch .leaflet-control-layers,
538
- .leaflet-touch .leaflet-bar {
539
- border: 2px solid rgba(0,0,0,0.2);
540
- background-clip: padding-box;
541
- }
542
-
543
-
544
- /* popup */
545
-
546
- .leaflet-popup {
547
- position: absolute;
548
- text-align: center;
549
- margin-bottom: 20px;
550
- }
551
- .leaflet-popup-content-wrapper {
552
- padding: 1px;
553
- text-align: left;
554
- border-radius: 12px;
555
- }
556
- .leaflet-popup-content {
557
- margin: 0.5rem;
558
- line-height: 1.3;
559
- font-size: 13px;
560
- font-size: 1.08333em;
561
- min-height: 1px;
562
- }
563
- .leaflet-popup-content p {
564
- margin: 17px 0;
565
- margin: 1.3em 0;
566
- }
567
- .leaflet-popup-tip-container {
568
- width: 40px;
569
- height: 20px;
570
- position: absolute;
571
- left: 50%;
572
- margin-top: -1px;
573
- margin-left: -20px;
574
- overflow: hidden;
575
- pointer-events: none;
576
- }
577
- .leaflet-popup-tip {
578
- width: 17px;
579
- height: 17px;
580
- padding: 1px;
581
-
582
- margin: -10px auto 0;
583
- pointer-events: auto;
584
-
585
- -webkit-transform: rotate(45deg);
586
- -moz-transform: rotate(45deg);
587
- -ms-transform: rotate(45deg);
588
- transform: rotate(45deg);
589
- }
590
- .leaflet-popup-content-wrapper,
591
- .leaflet-popup-tip {
592
- background: white;
593
- color: #333;
594
- box-shadow: 0 3px 14px rgba(0,0,0,0.4);
595
- }
596
- .leaflet-container a.leaflet-popup-close-button {
597
- position: absolute;
598
- top: 0;
599
- right: 0;
600
- border: none;
601
- text-align: center;
602
- width: 24px;
603
- height: 24px;
604
- font: 16px/24px Tahoma, Verdana, sans-serif;
605
- color: #757575;
606
- text-decoration: none;
607
- background: transparent;
608
- display: none;
609
- }
610
- .leaflet-container a.leaflet-popup-close-button:hover,
611
- .leaflet-container a.leaflet-popup-close-button:focus {
612
- color: #585858;
613
- }
614
- .leaflet-popup-scrolled {
615
- overflow: auto;
616
- }
617
-
618
- .leaflet-oldie .leaflet-popup-content-wrapper {
619
- -ms-zoom: 1;
620
- }
621
- .leaflet-oldie .leaflet-popup-tip {
622
- width: 24px;
623
- margin: 0 auto;
624
-
625
- -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
626
- filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
627
- }
628
-
629
- .leaflet-oldie .leaflet-control-zoom,
630
- .leaflet-oldie .leaflet-control-layers,
631
- .leaflet-oldie .leaflet-popup-content-wrapper,
632
- .leaflet-oldie .leaflet-popup-tip {
633
- border: 1px solid #999;
634
- }
635
-
636
-
637
- /* div icon */
638
-
639
- .leaflet-div-icon {
640
- background: #fff;
641
- border: 1px solid #666;
642
- }
643
-
644
-
645
- /* Tooltip */
646
- /* Base styles for the element that has a tooltip */
647
- .leaflet-tooltip {
648
- position: absolute;
649
- padding: 6px;
650
- background-color: #fff;
651
- border: 1px solid #fff;
652
- border-radius: 3px;
653
- color: #222;
654
- white-space: nowrap;
655
- -webkit-user-select: none;
656
- -moz-user-select: none;
657
- -ms-user-select: none;
658
- user-select: none;
659
- pointer-events: none;
660
- box-shadow: 0 1px 3px rgba(0,0,0,0.4);
661
- }
662
- .leaflet-tooltip.leaflet-interactive {
663
- cursor: pointer;
664
- pointer-events: auto;
665
- }
666
- .leaflet-tooltip-top:before,
667
- .leaflet-tooltip-bottom:before,
668
- .leaflet-tooltip-left:before,
669
- .leaflet-tooltip-right:before {
670
- position: absolute;
671
- pointer-events: none;
672
- border: 6px solid transparent;
673
- background: transparent;
674
- content: "";
675
- }
676
-
677
- /* Directions */
678
-
679
- .leaflet-tooltip-bottom {
680
- margin-top: 6px;
681
- }
682
- .leaflet-tooltip-top {
683
- margin-top: -6px;
684
- }
685
- .leaflet-tooltip-bottom:before,
686
- .leaflet-tooltip-top:before {
687
- left: 50%;
688
- margin-left: -6px;
689
- }
690
- .leaflet-tooltip-top:before {
691
- bottom: 0;
692
- margin-bottom: -12px;
693
- border-top-color: #fff;
694
- }
695
- .leaflet-tooltip-bottom:before {
696
- top: 0;
697
- margin-top: -12px;
698
- margin-left: -6px;
699
- border-bottom-color: #fff;
700
- }
701
- .leaflet-tooltip-left {
702
- margin-left: -6px;
703
- }
704
- .leaflet-tooltip-right {
705
- margin-left: 6px;
706
- }
707
- .leaflet-tooltip-left:before,
708
- .leaflet-tooltip-right:before {
709
- top: 50%;
710
- margin-top: -6px;
711
- }
712
- .leaflet-tooltip-left:before {
713
- right: 0;
714
- margin-right: -12px;
715
- border-left-color: #fff;
716
- }
717
- .leaflet-tooltip-right:before {
718
- left: 0;
719
- margin-left: -12px;
720
- border-right-color: #fff;
721
- }
722
-
723
- /* Printing */
724
-
725
- @media print {
726
- /* Prevent printers from removing background-images of controls. */
727
- .leaflet-control {
728
- -webkit-print-color-adjust: exact;
729
- print-color-adjust: exact;
730
- }
731
- }