6 .leaflet-marker-shadow,
7 .leaflet-tile-container,
9 .leaflet-pane > canvas,
22 .leaflet-marker-shadow {
23 -webkit-user-select: none;
24 -moz-user-select: none;
26 -webkit-user-drag: none;
28 /* Safari renders non-retina tile on retina better with this, but Chrome is worse */
29 .leaflet-safari .leaflet-tile {
30 image-rendering: -webkit-optimize-contrast;
32 /* hack that prevents hw layers "stretching" when loading new tiles */
33 .leaflet-safari .leaflet-tile-container {
36 -webkit-transform-origin: 0 0;
39 .leaflet-marker-shadow {
42 /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
43 /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
44 .leaflet-container .leaflet-overlay-pane svg,
45 .leaflet-container .leaflet-marker-pane img,
46 .leaflet-container .leaflet-shadow-pane img,
47 .leaflet-container .leaflet-tile-pane img,
48 .leaflet-container img.leaflet-image-layer,
49 .leaflet-container .leaflet-tile {
50 max-width: none !important;
51 max-height: none !important;
54 .leaflet-container.leaflet-touch-zoom {
55 -ms-touch-action: pan-x pan-y;
56 touch-action: pan-x pan-y;
58 .leaflet-container.leaflet-touch-drag {
59 -ms-touch-action: pinch-zoom;
60 /* Fallback for FF which doesn't support pinch-zoom */
62 touch-action: pinch-zoom;
64 .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
65 -ms-touch-action: none;
69 -webkit-tap-highlight-color: transparent;
71 .leaflet-container a {
72 -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
78 .leaflet-tile-loaded {
84 -moz-box-sizing: border-box;
85 box-sizing: border-box;
88 /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
89 .leaflet-overlay-pane svg {
90 -moz-user-select: none;
93 .leaflet-pane { z-index: 400; }
95 .leaflet-tile-pane { z-index: 200; }
96 .leaflet-overlay-pane { z-index: 400; }
97 .leaflet-shadow-pane { z-index: 500; }
98 .leaflet-marker-pane { z-index: 600; }
99 .leaflet-tooltip-pane { z-index: 650; }
100 .leaflet-popup-pane { z-index: 700; }
102 .leaflet-map-pane canvas { z-index: 100; }
103 .leaflet-map-pane svg { z-index: 200; }
110 behavior: url(#default#VML);
111 display: inline-block;
116 /* control positioning */
121 pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
122 pointer-events: auto;
128 pointer-events: none;
146 .leaflet-right .leaflet-control {
149 .leaflet-top .leaflet-control {
152 .leaflet-bottom .leaflet-control {
155 .leaflet-left .leaflet-control {
158 .leaflet-right .leaflet-control {
163 /* zoom and fade animations */
165 .leaflet-fade-anim .leaflet-tile {
166 will-change: opacity;
168 .leaflet-fade-anim .leaflet-popup {
170 -webkit-transition: opacity 0.2s linear;
171 -moz-transition: opacity 0.2s linear;
172 transition: opacity 0.2s linear;
174 .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
177 .leaflet-zoom-animated {
178 -webkit-transform-origin: 0 0;
179 -ms-transform-origin: 0 0;
180 transform-origin: 0 0;
182 .leaflet-zoom-anim .leaflet-zoom-animated {
183 will-change: transform;
185 .leaflet-zoom-anim .leaflet-zoom-animated {
186 -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
187 -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
188 transition: transform 0.25s cubic-bezier(0,0,0.25,1);
190 .leaflet-zoom-anim .leaflet-tile,
191 .leaflet-pan-anim .leaflet-tile {
192 -webkit-transition: none;
193 -moz-transition: none;
197 .leaflet-zoom-anim .leaflet-zoom-hide {
204 .leaflet-interactive {
208 cursor: -webkit-grab;
213 .leaflet-crosshair .leaflet-interactive {
220 .leaflet-dragging .leaflet-grab,
221 .leaflet-dragging .leaflet-grab .leaflet-interactive,
222 .leaflet-dragging .leaflet-marker-draggable {
224 cursor: -webkit-grabbing;
225 cursor: -moz-grabbing;
229 /* marker & overlays interactivity */
230 .leaflet-marker-icon,
231 .leaflet-marker-shadow,
232 .leaflet-image-layer,
233 .leaflet-pane > svg path,
234 .leaflet-tile-container {
235 pointer-events: none;
238 .leaflet-marker-icon.leaflet-interactive,
239 .leaflet-image-layer.leaflet-interactive,
240 .leaflet-pane > svg path.leaflet-interactive {
241 pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
242 pointer-events: auto;
251 .leaflet-container a {
254 .leaflet-container a.leaflet-active {
255 outline: 2px solid orange;
258 border: 2px dotted #38f;
259 background: rgba(255,255,255,0.5);
263 /* general typography */
265 font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
269 /* general toolbar styles */
272 box-shadow: 0 1px 5px rgba(0,0,0,0.65);
276 .leaflet-bar a:hover {
277 background-color: #fff;
278 border-bottom: 1px solid #ccc;
284 text-decoration: none;
288 .leaflet-control-layers-toggle {
289 background-position: 50% 50%;
290 background-repeat: no-repeat;
293 .leaflet-bar a:hover {
294 background-color: #f4f4f4;
296 .leaflet-bar a:first-child {
297 border-top-left-radius: 4px;
298 border-top-right-radius: 4px;
300 .leaflet-bar a:last-child {
301 border-bottom-left-radius: 4px;
302 border-bottom-right-radius: 4px;
305 .leaflet-bar a.leaflet-disabled {
307 background-color: #f4f4f4;
311 .leaflet-touch .leaflet-bar a {
316 .leaflet-touch .leaflet-bar a:first-child {
317 border-top-left-radius: 2px;
318 border-top-right-radius: 2px;
320 .leaflet-touch .leaflet-bar a:last-child {
321 border-bottom-left-radius: 2px;
322 border-bottom-right-radius: 2px;
327 .leaflet-control-zoom-in,
328 .leaflet-control-zoom-out {
329 font: bold 18px 'Lucida Console', Monaco, monospace;
333 .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
340 .leaflet-control-layers {
341 box-shadow: 0 1px 5px rgba(0,0,0,0.4);
345 .leaflet-control-layers-toggle {
346 background-image: url(images/layers.png);
350 .leaflet-retina .leaflet-control-layers-toggle {
351 background-image: url(images/layers-2x.png);
352 background-size: 26px 26px;
354 .leaflet-touch .leaflet-control-layers-toggle {
358 .leaflet-control-layers .leaflet-control-layers-list,
359 .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
362 .leaflet-control-layers-expanded .leaflet-control-layers-list {
366 .leaflet-control-layers-expanded {
367 padding: 6px 10px 6px 6px;
371 .leaflet-control-layers-scrollbar {
376 .leaflet-control-layers-selector {
381 .leaflet-control-layers label {
384 .leaflet-control-layers-separator {
386 border-top: 1px solid #ddd;
387 margin: 5px -10px 5px -6px;
390 /* Default icon URLs */
391 .leaflet-default-icon-path {
392 background-image: url(images/marker-icon.png);
396 /* attribution and scale controls */
398 .leaflet-container .leaflet-control-attribution {
400 background: rgba(255, 255, 255, 0.7);
403 .leaflet-control-attribution,
404 .leaflet-control-scale-line {
408 .leaflet-control-attribution a {
409 text-decoration: none;
411 .leaflet-control-attribution a:hover {
412 text-decoration: underline;
414 .leaflet-container .leaflet-control-attribution,
415 .leaflet-container .leaflet-control-scale {
418 .leaflet-left .leaflet-control-scale {
421 .leaflet-bottom .leaflet-control-scale {
424 .leaflet-control-scale-line {
425 border: 2px solid #777;
428 padding: 2px 5px 1px;
432 -moz-box-sizing: border-box;
433 box-sizing: border-box;
436 background: rgba(255, 255, 255, 0.5);
438 .leaflet-control-scale-line:not(:first-child) {
439 border-top: 2px solid #777;
443 .leaflet-control-scale-line:not(:first-child):not(:last-child) {
444 border-bottom: 2px solid #777;
447 .leaflet-touch .leaflet-control-attribution,
448 .leaflet-touch .leaflet-control-layers,
449 .leaflet-touch .leaflet-bar {
452 .leaflet-touch .leaflet-control-layers,
453 .leaflet-touch .leaflet-bar {
454 border: 2px solid rgba(0,0,0,0.2);
455 background-clip: padding-box;
466 .leaflet-popup-content-wrapper {
471 .leaflet-popup-content {
475 .leaflet-popup-content p {
478 .leaflet-popup-tip-container {
485 pointer-events: none;
492 margin: -10px auto 0;
494 -webkit-transform: rotate(45deg);
495 -moz-transform: rotate(45deg);
496 -ms-transform: rotate(45deg);
497 transform: rotate(45deg);
499 .leaflet-popup-content-wrapper,
503 box-shadow: 0 3px 14px rgba(0,0,0,0.4);
505 .leaflet-container a.leaflet-popup-close-button {
509 padding: 4px 4px 0 0;
514 font: 16px/14px Tahoma, Verdana, sans-serif;
516 text-decoration: none;
518 background: transparent;
520 .leaflet-container a.leaflet-popup-close-button:hover {
523 .leaflet-popup-scrolled {
525 border-bottom: 1px solid #ddd;
526 border-top: 1px solid #ddd;
529 .leaflet-oldie .leaflet-popup-content-wrapper {
532 .leaflet-oldie .leaflet-popup-tip {
536 -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
537 filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
539 .leaflet-oldie .leaflet-popup-tip-container {
543 .leaflet-oldie .leaflet-control-zoom,
544 .leaflet-oldie .leaflet-control-layers,
545 .leaflet-oldie .leaflet-popup-content-wrapper,
546 .leaflet-oldie .leaflet-popup-tip {
547 border: 1px solid #999;
555 border: 1px solid #666;
560 /* Base styles for the element that has a tooltip */
564 background-color: #fff;
565 border: 1px solid #fff;
569 -webkit-user-select: none;
570 -moz-user-select: none;
571 -ms-user-select: none;
573 pointer-events: none;
574 box-shadow: 0 1px 3px rgba(0,0,0,0.4);
576 .leaflet-tooltip.leaflet-clickable {
578 pointer-events: auto;
580 .leaflet-tooltip-top:before,
581 .leaflet-tooltip-bottom:before,
582 .leaflet-tooltip-left:before,
583 .leaflet-tooltip-right:before {
585 pointer-events: none;
586 border: 6px solid transparent;
587 background: transparent;
593 .leaflet-tooltip-bottom {
596 .leaflet-tooltip-top {
599 .leaflet-tooltip-bottom:before,
600 .leaflet-tooltip-top:before {
604 .leaflet-tooltip-top:before {
606 margin-bottom: -12px;
607 border-top-color: #fff;
609 .leaflet-tooltip-bottom:before {
613 border-bottom-color: #fff;
615 .leaflet-tooltip-left {
618 .leaflet-tooltip-right {
621 .leaflet-tooltip-left:before,
622 .leaflet-tooltip-right:before {
626 .leaflet-tooltip-left:before {
629 border-left-color: #fff;
631 .leaflet-tooltip-right:before {
634 border-right-color: #fff;