2020-12-16 16:54:41 +00:00
|
|
|
/*!
|
|
|
|
* Copyright 2020 James Lyne
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-12-01 23:20:38 +00:00
|
|
|
.leaflet-control {
|
|
|
|
background-color: $global-background;
|
|
|
|
border-radius: $global-border-radius;
|
|
|
|
margin: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
overflow: hidden;
|
2020-12-15 22:12:57 +00:00
|
|
|
font-size: 1.5rem;
|
2020-12-01 23:20:38 +00:00
|
|
|
|
|
|
|
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 {
|
2020-12-12 21:38:09 +00:00
|
|
|
background-image: none;
|
2020-12-01 23:20:38 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-15 01:51:19 +00:00
|
|
|
.leaflet-control-link,
|
|
|
|
.leaflet-control-loading {
|
2020-12-01 23:20:38 +00:00
|
|
|
@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;
|
2020-12-15 22:12:57 +00:00
|
|
|
font-size: 2rem;
|
2020-12-01 23:20:38 +00:00
|
|
|
|
|
|
|
&[data-label]:before {
|
|
|
|
content: attr(data-label);
|
|
|
|
display: block;
|
|
|
|
line-height: 1;
|
|
|
|
margin-bottom: 0.5rem;
|
2020-12-15 22:12:57 +00:00
|
|
|
font-size: 1.25rem;
|
2020-12-01 23:20:38 +00:00
|
|
|
font-family: Raleway, sans-serif;;
|
|
|
|
}
|
|
|
|
|
|
|
|
& + .value {
|
|
|
|
margin-left: 2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-control-layers {
|
2020-12-15 22:14:04 +00:00
|
|
|
width: auto;
|
2020-12-01 23:20:38 +00:00
|
|
|
border: none;
|
2020-12-15 22:14:04 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2020-12-15 22:12:57 +00:00
|
|
|
align-items: stretch;
|
2020-12-01 23:20:38 +00:00
|
|
|
|
|
|
|
&.leaflet-left .leaflet-control + .leaflet-control {
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-12 19:09:38 +00:00
|
|
|
.leaflet-center {
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.leaflet-control {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-15 01:51:19 +00:00
|
|
|
.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;
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|