forked from Snck3rs/contao-leaflet-maps
24 lines
668 B
CSS
24 lines
668 B
CSS
.leaflet-control-loading:empty {
|
|
/* This is where your loading indicator would go */
|
|
background-image: url('loading.gif');
|
|
}
|
|
|
|
.leaflet-control-loading,
|
|
.leaflet-control-zoom a.leaflet-control-loading ,
|
|
.leaflet-control-zoomslider a.leaflet-control-loading {
|
|
display: none;
|
|
}
|
|
|
|
.leaflet-control-loading.is-loading,
|
|
.leaflet-control-zoom a.leaflet-control-loading.is-loading,
|
|
.leaflet-control-zoomslider a.leaflet-control-loading.is-loading {
|
|
display: block;
|
|
}
|
|
|
|
/* Necessary for display consistency in Leaflet >= 0.6 */
|
|
.leaflet-bar-part-bottom {
|
|
border-bottom: medium none;
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
}
|