datastake-daf 0.6.95 → 0.6.97

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