LiveAtlas/src/scss/leaflet/_controls.scss
2020-12-15 22:14:04 +00:00

204 lines
2.8 KiB
SCSS

.leaflet-control {
background-color: $global-background;
border-radius: $global-border-radius;
margin: 0;
box-sizing: border-box;
overflow: hidden;
font-size: 1.5rem;
a, button {
@extend %button;
}
}
.leaflet-bar {
display: flex;
align-items: center;
padding: 0;
border: none;
a {
border-radius: 0;
border-bottom: 0.1rem solid #333333;
}
}
.leaflet-touch {
.leaflet-bar, .leaflet-control-layers {
border: none;
}
.leaflet-control-layers-toggle {
background-image: none;
width: 5rem;
height: 5rem;
}
.leaflet-top {
.leaflet-bar a {
height: 5rem;
width: 5rem;
line-height: 5rem;
&:first-child {
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
}
&:last-child {
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
}
}
}
}
.leaflet-control-link,
.leaflet-control-loading {
@extend %button;
width: 5rem;
height: 5rem;
}
.leaflet-control-coordinates {
display: flex;
align-items: center;
padding: 0.5rem 1.5rem;
.value {
line-height: 1;
font-family: monospace;
white-space: pre;
font-size: 2rem;
&[data-label]:before {
content: attr(data-label);
display: block;
line-height: 1;
margin-bottom: 0.5rem;
font-size: 1.25rem;
font-family: Raleway, sans-serif;;
}
& + .value {
margin-left: 2rem;
}
}
}
.leaflet-control-layers {
width: auto;
border: none;
color: $global-text-color;
&.leaflet-control-layers-expanded {
padding: 0;
}
.leaflet-control-layers-list {
padding: 0.7rem 1.5rem;
.layer {
cursor: pointer;
padding: 0.8rem 0 0.7rem;
}
}
}
.leaflet-control-logo {
width: 5rem;
height: 5rem;
a {
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
}
.leaflet-top, .leaflet-bottom,
.leaflet-left, .leaflet-right {
display: flex;
}
.leaflet-left {
padding-left: 1rem;
.leaflet-control {
margin: 0;
}
}
.leaflet-top {
padding-top: 1rem;
flex-direction: column;
.leaflet-control {
order: 2;
min-width: 5rem;
& + .leaflet-control {
margin-top: 1rem;
}
}
.leaflet-bar {
flex-direction: column;
a {
width: 5rem;
height: 5rem;
line-height: 5rem;
}
}
.leaflet-control-logo {
order: 1;
margin-bottom: 1rem;
margin-top: 0 !important;
& + .leaflet-control-logo {
margin-top: 1rem !important;
}
}
}
.leaflet-bottom {
padding-bottom: 1rem;
align-items: stretch;
&.leaflet-left .leaflet-control + .leaflet-control {
margin-left: 1rem;
}
}
.leaflet-center {
left: 0;
right: 0;
justify-content: center;
flex-direction: row;
.leaflet-control {
margin: 0;
}
}
.leaflet-control-loading {
cursor: wait;
animation: fade 0.3s linear;
animation-fill-mode: forwards;
&:focus, &:hover, &:active {
background-color: $global-background;
}
&[hidden] {
display: none;
}
svg {
animation: spin 1s linear infinite;
}
}