41 lines
738 B
CSS
41 lines
738 B
CSS
body {
|
|
width: 100%;
|
|
}
|
|
|
|
#mapid {
|
|
height: 85vh;
|
|
}
|
|
|
|
.disabled {
|
|
pointer-events: none;
|
|
cursor: default;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
button.hide-markers-active {
|
|
color: #007bff !important;
|
|
}
|
|
|
|
.leaflet-bottom.leaflet-left .leaflet-control {
|
|
clear: none;
|
|
}
|
|
|
|
.leaflet-bottom.leaflet-left .leaflet-bar button {
|
|
display: inline-block;
|
|
border-right: 1px solid #ccc;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.leaflet-bottom.leaflet-left .leaflet-bar button:first-of-type {
|
|
border-top-left-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
.leaflet-bottom.leaflet-left .leaflet-bar button:last-of-type {
|
|
border-top-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border-bottom-left-radius: 0;
|
|
border-right: none;
|
|
}
|