29 lines
852 B
CSS
29 lines
852 B
CSS
/* For GGMap Mutant, enable clickable attribution links */
|
|
.gm-style .gm-style-cc {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.gm-style iframe {
|
|
width: 0px !important;
|
|
height: 0px !important;
|
|
}
|
|
|
|
/* Make the tiles align left always, https://gitlab.com/IvanSanchez/Leaflet.GridLayer.GoogleMutant/-/issues/44 */
|
|
.leaflet-tile {
|
|
text-align: left !important;
|
|
}
|
|
|
|
.gm-style {
|
|
visibility: hidden !important;
|
|
}
|
|
|
|
/* Hack to avoid map tile gap issue in webkit Ref: https://github.com/Leaflet/Leaflet/issues/3575. */
|
|
img.leaflet-tile,
|
|
img.leaflet-marker-icon,
|
|
img.leaflet-marker-shadow {
|
|
/* work-around from here: https://github.com/Leaflet/Leaflet/issues/161 */
|
|
outline: 1px solid transparent;
|
|
/* work-around from here: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
|
|
mix-blend-mode: plus-lighter;
|
|
}
|