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 max-width: none !important;
52 .leaflet-container.leaflet-touch-zoom {
53 -ms-touch-action: pan-x pan-y;
54 touch-action: pan-x pan-y;
56 .leaflet-container.leaflet-touch-drag {
57 -ms-touch-action: pinch-zoom;
59 .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
60 -ms-touch-action: none;
64 -webkit-tap-highlight-color: transparent;
66 .leaflet-container a {
67 -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
73 .leaflet-tile-loaded {
79 -moz-box-sizing: border-box;
80 box-sizing: border-box;
83 /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
84 .leaflet-overlay-pane svg {
85 -moz-user-select: none;
88 .leaflet-pane { z-index: 400; }
90 .leaflet-tile-pane { z-index: 200; }
91 .leaflet-overlay-pane { z-index: 400; }
92 .leaflet-shadow-pane { z-index: 500; }
93 .leaflet-marker-pane { z-index: 600; }
94 .leaflet-tooltip-pane { z-index: 650; }
95 .leaflet-popup-pane { z-index: 700; }
97 .leaflet-map-pane canvas { z-index: 100; }
98 .leaflet-map-pane svg { z-index: 200; }
105 behavior: url(#default#VML);
106 display: inline-block;
111 /* control positioning */
116 pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
117 pointer-events: auto;
123 pointer-events: none;
141 .leaflet-right .leaflet-control {
144 .leaflet-top .leaflet-control {
147 .leaflet-bottom .leaflet-control {
150 .leaflet-left .leaflet-control {
153 .leaflet-right .leaflet-control {
158 /* zoom and fade animations */
160 .leaflet-fade-anim .leaflet-tile {
161 will-change: opacity;
163 .leaflet-fade-anim .leaflet-popup {
165 -webkit-transition: opacity 0.2s linear;
166 -moz-transition: opacity 0.2s linear;
167 -o-transition: opacity 0.2s linear;
168 transition: opacity 0.2s linear;
170 .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
173 .leaflet-zoom-animated {
174 -webkit-transform-origin: 0 0;
175 -ms-transform-origin: 0 0;
176 transform-origin: 0 0;
178 .leaflet-zoom-anim .leaflet-zoom-animated {
179 will-change: transform;
181 .leaflet-zoom-anim .leaflet-zoom-animated {
182 -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
183 -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
184 -o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1);
185 transition: transform 0.25s cubic-bezier(0,0,0.25,1);
187 .leaflet-zoom-anim .leaflet-tile,
188 .leaflet-pan-anim .leaflet-tile {
189 -webkit-transition: none;
190 -moz-transition: none;
195 .leaflet-zoom-anim .leaflet-zoom-hide {
202 .leaflet-interactive {
206 cursor: -webkit-grab;
210 .leaflet-crosshair .leaflet-interactive {
217 .leaflet-dragging .leaflet-grab,
218 .leaflet-dragging .leaflet-grab .leaflet-interactive,
219 .leaflet-dragging .leaflet-marker-draggable {
221 cursor: -webkit-grabbing;
222 cursor: -moz-grabbing;
225 /* marker & overlays interactivity */
226 .leaflet-marker-icon,
227 .leaflet-marker-shadow,
228 .leaflet-image-layer,
229 .leaflet-pane > svg path,
230 .leaflet-tile-container {
231 pointer-events: none;
234 .leaflet-marker-icon.leaflet-interactive,
235 .leaflet-image-layer.leaflet-interactive,
236 .leaflet-pane > svg path.leaflet-interactive {
237 pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
238 pointer-events: auto;
247 .leaflet-container a {
250 .leaflet-container a.leaflet-active {
251 outline: 2px solid orange;
254 border: 2px dotted #38f;
255 background: rgba(255,255,255,0.5);
259 /* general typography */
261 font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
265 /* general toolbar styles */
268 box-shadow: 0 1px 5px rgba(0,0,0,0.65);
272 .leaflet-bar a:hover {
273 background-color: #fff;
274 border-bottom: 1px solid #ccc;
280 text-decoration: none;
284 .leaflet-control-layers-toggle {
285 background-position: 50% 50%;
286 background-repeat: no-repeat;
289 .leaflet-bar a:hover {
290 background-color: #f4f4f4;
292 .leaflet-bar a:first-child {
293 border-top-left-radius: 4px;
294 border-top-right-radius: 4px;
296 .leaflet-bar a:last-child {
297 border-bottom-left-radius: 4px;
298 border-bottom-right-radius: 4px;
301 .leaflet-bar a.leaflet-disabled {
303 background-color: #f4f4f4;
307 .leaflet-touch .leaflet-bar a {
312 .leaflet-touch .leaflet-bar a:first-child {
313 border-top-left-radius: 2px;
314 border-top-right-radius: 2px;
316 .leaflet-touch .leaflet-bar a:last-child {
317 border-bottom-left-radius: 2px;
318 border-bottom-right-radius: 2px;
323 .leaflet-control-zoom-in,
324 .leaflet-control-zoom-out {
325 font: bold 18px 'Lucida Console', Monaco, monospace;
329 .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
336 .leaflet-control-layers {
337 box-shadow: 0 1px 5px rgba(0,0,0,0.4);
341 .leaflet-control-layers-toggle {
342 background-image: url(images/layers.png);
346 .leaflet-retina .leaflet-control-layers-toggle {
347 background-image: url(images/layers-2x.png);
348 background-size: 26px 26px;
350 .leaflet-touch .leaflet-control-layers-toggle {
354 .leaflet-control-layers .leaflet-control-layers-list,
355 .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
358 .leaflet-control-layers-expanded .leaflet-control-layers-list {
362 .leaflet-control-layers-expanded {
363 padding: 6px 10px 6px 6px;
367 .leaflet-control-layers-scrollbar {
372 .leaflet-control-layers-selector {
377 .leaflet-control-layers label {
380 .leaflet-control-layers-separator {
382 border-top: 1px solid #ddd;
383 margin: 5px -10px 5px -6px;
386 /* Default icon URLs */
387 .leaflet-default-icon-path {
388 background-image: url(images/marker-icon.png);
392 /* attribution and scale controls */
394 .leaflet-container .leaflet-control-attribution {
396 background: rgba(255, 255, 255, 0.7);
399 .leaflet-control-attribution,
400 .leaflet-control-scale-line {
404 .leaflet-control-attribution a {
405 text-decoration: none;
407 .leaflet-control-attribution a:hover {
408 text-decoration: underline;
410 .leaflet-container .leaflet-control-attribution,
411 .leaflet-container .leaflet-control-scale {
414 .leaflet-left .leaflet-control-scale {
417 .leaflet-bottom .leaflet-control-scale {
420 .leaflet-control-scale-line {
421 border: 2px solid #777;
424 padding: 2px 5px 1px;
428 -moz-box-sizing: border-box;
429 box-sizing: border-box;
432 background: rgba(255, 255, 255, 0.5);
434 .leaflet-control-scale-line:not(:first-child) {
435 border-top: 2px solid #777;
439 .leaflet-control-scale-line:not(:first-child):not(:last-child) {
440 border-bottom: 2px solid #777;
443 .leaflet-touch .leaflet-control-attribution,
444 .leaflet-touch .leaflet-control-layers,
445 .leaflet-touch .leaflet-bar {
448 .leaflet-touch .leaflet-control-layers,
449 .leaflet-touch .leaflet-bar {
450 border: 2px solid rgba(0,0,0,0.2);
451 background-clip: padding-box;
462 .leaflet-popup-content-wrapper {
467 .leaflet-popup-content {
471 .leaflet-popup-content p {
474 .leaflet-popup-tip-container {
481 pointer-events: none;
488 margin: -10px auto 0;
490 -webkit-transform: rotate(45deg);
491 -moz-transform: rotate(45deg);
492 -ms-transform: rotate(45deg);
493 -o-transform: rotate(45deg);
494 transform: rotate(45deg);
496 .leaflet-popup-content-wrapper,
500 box-shadow: 0 3px 14px rgba(0,0,0,0.4);
502 .leaflet-container a.leaflet-popup-close-button {
506 padding: 4px 4px 0 0;
511 font: 16px/14px Tahoma, Verdana, sans-serif;
513 text-decoration: none;
515 background: transparent;
517 .leaflet-container a.leaflet-popup-close-button:hover {
520 .leaflet-popup-scrolled {
522 border-bottom: 1px solid #ddd;
523 border-top: 1px solid #ddd;
526 .leaflet-oldie .leaflet-popup-content-wrapper {
529 .leaflet-oldie .leaflet-popup-tip {
533 -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
534 filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
536 .leaflet-oldie .leaflet-popup-tip-container {
540 .leaflet-oldie .leaflet-control-zoom,
541 .leaflet-oldie .leaflet-control-layers,
542 .leaflet-oldie .leaflet-popup-content-wrapper,
543 .leaflet-oldie .leaflet-popup-tip {
544 border: 1px solid #999;
552 border: 1px solid #666;
557 /* Base styles for the element that has a tooltip */
561 background-color: #fff;
562 border: 1px solid #fff;
566 -webkit-user-select: none;
567 -moz-user-select: none;
568 -ms-user-select: none;
570 pointer-events: none;
571 box-shadow: 0 1px 3px rgba(0,0,0,0.4);
573 .leaflet-tooltip.leaflet-clickable {
575 pointer-events: auto;
577 .leaflet-tooltip-top:before,
578 .leaflet-tooltip-bottom:before,
579 .leaflet-tooltip-left:before,
580 .leaflet-tooltip-right:before {
582 pointer-events: none;
583 border: 6px solid transparent;
584 background: transparent;
590 .leaflet-tooltip-bottom {
593 .leaflet-tooltip-top {
596 .leaflet-tooltip-bottom:before,
597 .leaflet-tooltip-top:before {
601 .leaflet-tooltip-top:before {
603 margin-bottom: -12px;
604 border-top-color: #fff;
606 .leaflet-tooltip-bottom:before {
610 border-bottom-color: #fff;
612 .leaflet-tooltip-left {
615 .leaflet-tooltip-right {
618 .leaflet-tooltip-left:before,
619 .leaflet-tooltip-right:before {
623 .leaflet-tooltip-left:before {
626 border-left-color: #fff;
628 .leaflet-tooltip-right:before {
631 border-right-color: #fff;