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 {
|
2021-05-15 22:24:29 +00:00
|
|
|
background-color: var(--background-base);
|
|
|
|
border-radius: var(--border-radius);
|
2021-05-24 20:57:53 +00:00
|
|
|
box-shadow: var(--box-shadow);
|
2020-12-01 23:20:38 +00:00
|
|
|
margin: 0;
|
|
|
|
box-sizing: border-box;
|
2021-05-25 22:27:25 +00:00
|
|
|
overflow: visible;
|
2020-12-15 22:12:57 +00:00
|
|
|
font-size: 1.5rem;
|
2020-12-01 23:20:38 +00:00
|
|
|
|
|
|
|
a, button {
|
|
|
|
@extend %button;
|
|
|
|
}
|
2021-01-07 13:49:00 +00:00
|
|
|
|
|
|
|
@media print {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-bar {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
2021-05-24 20:57:53 +00:00
|
|
|
box-shadow: var(--box-shadow);
|
2020-12-01 23:20:38 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
border-radius: 0;
|
2021-05-15 22:24:29 +00:00
|
|
|
border-bottom: 0.1rem solid var(--border-color);
|
2020-12-20 14:53:16 +00:00
|
|
|
|
|
|
|
&.leaflet-disabled {
|
2021-05-15 22:24:29 +00:00
|
|
|
background-color: var(--background-disabled);
|
2020-12-20 14:53:16 +00:00
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
|
|
&:hover {
|
2021-05-15 22:24:29 +00:00
|
|
|
color: var(--text-disabled);
|
|
|
|
border-bottom-color: var(--border-color);
|
2020-12-20 14:53:16 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-22 13:40:15 +00:00
|
|
|
|
|
|
|
&:hover {
|
2021-05-15 22:24:29 +00:00
|
|
|
border-bottom-color: var(--border-color);
|
2020-12-22 13:40:15 +00:00
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
2021-01-07 13:49:00 +00:00
|
|
|
|
|
|
|
@media print {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.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,
|
2020-12-17 14:50:12 +00:00
|
|
|
.leaflet-control-chat,
|
|
|
|
.leaflet-control-loading,
|
|
|
|
.leaflet-control-layers-toggle {
|
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;
|
|
|
|
}
|
|
|
|
}
|
2020-12-20 14:45:04 +00:00
|
|
|
|
2021-01-25 02:27:35 +00:00
|
|
|
@media (max-width: 600px) {
|
2020-12-20 14:45:04 +00:00
|
|
|
.region {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-25 02:27:35 +00:00
|
|
|
@media (max-width: 384px) {
|
2020-12-20 14:45:04 +00:00
|
|
|
.chunk {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-control-layers {
|
2020-12-15 22:14:04 +00:00
|
|
|
width: auto;
|
2020-12-01 23:20:38 +00:00
|
|
|
border: none;
|
2021-05-15 22:24:29 +00:00
|
|
|
color: var(--text-base);
|
2021-05-28 18:14:06 +00:00
|
|
|
position: relative;
|
2020-12-15 22:14:04 +00:00
|
|
|
|
|
|
|
.leaflet-control-layers-list {
|
2021-05-28 18:14:06 +00:00
|
|
|
@extend %panel;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 6rem;
|
2020-12-20 14:45:04 +00:00
|
|
|
overflow: auto;
|
2021-06-22 17:24:22 +00:00
|
|
|
max-width: calc(100vw - 14rem);
|
2021-06-22 17:25:19 +00:00
|
|
|
box-sizing: border-box;
|
2021-06-22 17:24:22 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 400px) {
|
|
|
|
max-width: calc(100vw - 13rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-control-layers-overlays {
|
|
|
|
width: 100%;
|
2021-06-22 17:25:19 +00:00
|
|
|
max-width: 30rem;
|
2021-06-22 17:24:22 +00:00
|
|
|
}
|
2020-12-15 22:14:04 +00:00
|
|
|
|
|
|
|
.layer {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0.8rem 0 0.7rem;
|
|
|
|
}
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-control-logo {
|
|
|
|
width: 5rem;
|
|
|
|
height: 5rem;
|
2020-12-20 14:45:04 +00:00
|
|
|
flex-shrink: 0;
|
2020-12-01 23:20:38 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2020-12-20 14:45:04 +00:00
|
|
|
|
2021-01-25 02:27:35 +00:00
|
|
|
@media (max-width: 400px), (max-height: 480px) {
|
2020-12-20 14:45:04 +00:00
|
|
|
padding-left: 0.5rem;
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
|
|
|
|
2021-05-28 23:52:28 +00:00
|
|
|
.leaflet-right {
|
|
|
|
padding-right: 1rem;
|
|
|
|
|
|
|
|
.leaflet-control {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 400px), (max-height: 480px) {
|
|
|
|
padding-right: 0.5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-01 23:20:38 +00:00
|
|
|
.leaflet-top {
|
|
|
|
padding-top: 1rem;
|
|
|
|
flex-direction: column;
|
2020-12-17 14:50:12 +00:00
|
|
|
top: 0;
|
|
|
|
bottom: 7rem;
|
|
|
|
align-items: flex-start;
|
2021-05-29 00:34:45 +00:00
|
|
|
z-index: 1003;
|
2020-12-01 23:20:38 +00:00
|
|
|
|
|
|
|
.leaflet-control {
|
|
|
|
order: 2;
|
|
|
|
min-width: 5rem;
|
2021-05-25 19:38:51 +00:00
|
|
|
margin-bottom: 1rem;
|
2020-12-01 23:20:38 +00:00
|
|
|
|
2020-12-17 14:50:12 +00:00
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-18 19:39:30 +00:00
|
|
|
/* Always show below other controls */
|
|
|
|
.leaflet-control-loading {
|
|
|
|
order: 3;
|
|
|
|
}
|
|
|
|
|
2020-12-01 23:20:38 +00:00
|
|
|
.leaflet-bar {
|
|
|
|
flex-direction: column;
|
2021-05-24 20:57:53 +00:00
|
|
|
box-shadow: var(--box-shadow);
|
2020-12-01 23:20:38 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
width: 5rem;
|
|
|
|
height: 5rem;
|
|
|
|
line-height: 5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-24 20:57:53 +00:00
|
|
|
.leaflet-control-layers {
|
|
|
|
box-shadow: var(--box-shadow);
|
|
|
|
}
|
|
|
|
|
2020-12-01 23:20:38 +00:00
|
|
|
.leaflet-control-logo {
|
|
|
|
order: 1;
|
|
|
|
margin-top: 0 !important;
|
|
|
|
|
|
|
|
& + .leaflet-control-logo {
|
|
|
|
margin-top: 1rem !important;
|
|
|
|
}
|
|
|
|
}
|
2020-12-17 14:50:12 +00:00
|
|
|
|
|
|
|
.leaflet-control-chat {
|
|
|
|
margin-top: auto;
|
|
|
|
order: 1000;
|
2021-05-28 14:55:17 +00:00
|
|
|
margin-bottom: 0;
|
2020-12-17 14:50:12 +00:00
|
|
|
}
|
2020-12-20 14:45:04 +00:00
|
|
|
|
|
|
|
.leaflet-control-zoom {
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
2021-05-25 22:47:22 +00:00
|
|
|
a {
|
|
|
|
font-family: sans-serif; /* +/- look better */
|
|
|
|
}
|
|
|
|
|
2021-01-25 02:27:35 +00:00
|
|
|
@media (max-width: 480px) and (pointer: coarse), (max-height: 480px) and (pointer: coarse), (max-height: 400px) {
|
2020-12-20 14:45:04 +00:00
|
|
|
display: none;
|
|
|
|
|
|
|
|
& + .leaflet-control {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-25 02:27:35 +00:00
|
|
|
@media (max-width: 400px), (max-height: 480px) {
|
2020-12-20 14:45:04 +00:00
|
|
|
padding-top: 0.5rem;
|
|
|
|
bottom: 6.5rem;
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-bottom {
|
|
|
|
padding-bottom: 1rem;
|
2020-12-15 22:12:57 +00:00
|
|
|
align-items: stretch;
|
2021-05-29 00:34:45 +00:00
|
|
|
z-index: 1002;
|
2020-12-01 23:20:38 +00:00
|
|
|
|
2021-05-18 21:01:07 +00:00
|
|
|
.leaflet-control {
|
|
|
|
order: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Always show before other controls */
|
|
|
|
.leaflet-control-link {
|
|
|
|
order: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.leaflet-left .leaflet-control {
|
|
|
|
margin-right: 1rem;
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
2020-12-20 14:45:04 +00:00
|
|
|
|
2021-01-25 02:27:35 +00:00
|
|
|
@media (max-width: 400px), (max-height: 480px) {
|
2020-12-20 14:45:04 +00:00
|
|
|
padding-bottom: 0.5rem;
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-12-12 19:09:38 +00:00
|
|
|
.leaflet-center {
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: row;
|
2021-05-29 00:34:45 +00:00
|
|
|
z-index: 1001;
|
2020-12-12 19:09:38 +00:00
|
|
|
|
|
|
|
.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;
|
2021-06-22 17:25:19 +00:00
|
|
|
|
2021-05-24 23:22:49 +00:00
|
|
|
&:hover, &:active {
|
|
|
|
background-color: var(--background-base);
|
|
|
|
}
|
|
|
|
|
|
|
|
@include focus {
|
2021-05-15 22:24:29 +00:00
|
|
|
background-color: var(--background-base);
|
2020-12-15 01:51:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&[hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
}
|
2021-06-22 17:24:22 +00:00
|
|
|
}
|