meshviewer/scss/modules/_leaflet.scss

312 lines
4.6 KiB
SCSS
Raw Normal View History

2017-02-11 16:26:57 +00:00
.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
left: 0;
position: absolute;
top: 0;
}
.leaflet-container {
background: $color-map-background;
cursor: grab;
outline: 0;
overflow: hidden;
touch-action: none;
a {
color: $color-primary;
}
img {
max-width: none;
}
.leaflet-control-attribution {
background: transparentize($color-white, .3);
margin: 0;
}
.leaflet-control-layers-toggle {
background: none;
height: auto;
width: auto;
&::before {
color: $color-primary;
content: '\f229';
display: inline-block;
font-family: $font-family-icons;
font-size: 2.3rem;
line-height: 1;
speak: none;
text-rendering: auto;
}
}
}
.leaflet-tile {
filter: inherit;
visibility: hidden;
}
.leaflet-tile-loaded {
visibility: inherit;
}
.leaflet-zoom-box {
height: 0;
width: 0;
}
.leaflet-tile-pane {
z-index: 2;
}
.leaflet-objects-pane {
z-index: 3;
}
.leaflet-overlay-pane {
z-index: 4;
}
.leaflet-shadow-pane {
z-index: 5;
}
.leaflet-marker-pane {
z-index: 6;
}
.leaflet-vml-shape {
height: 1px;
width: 1px;
}
.leaflet-control {
clear: both;
cursor: auto;
float: left;
font-size: $font-size-map-control;
pointer-events: auto;
position: relative;
z-index: 7;
}
.leaflet-top,
.leaflet-bottom {
pointer-events: none;
position: absolute;
z-index: 1000;
}
.leaflet-top {
top: 0;
.leaflet-control {
margin-top: 10px;
}
}
.leaflet-right {
right: 0;
.leaflet-control {
float: right;
}
}
.leaflet-bottom {
bottom: 0;
}
.leaflet-left {
left: 0;
.leaflet-control {
margin-left: 10px;
}
}
.leaflet-fade-anim {
.leaflet-tile {
opacity: 0;
transition: opacity .2s linear;
}
.leaflet-tile-loaded {
opacity: 1;
}
}
%no-transition {
transition: none;
}
.leaflet-zoom-anim {
.leaflet-tile {
@extend %no-transition;
}
.leaflet-zoom-animated {
transition: transform .25s cubic-bezier(0, 0, .25, 1);
}
.leaflet-zoom-hide {
visibility: hidden;
}
}
.leaflet-pan-anim {
.leaflet-tile {
@extend %no-transition;
}
}
.leaflet-touching {
.leaflet-zoom-animated {
@extend %no-transition;
}
}
.leaflet-clickable {
cursor: pointer;
}
.leaflet-dragging {
.leaflet-container,
.leaflet-clickable {
cursor: move;
}
}
.leaflet-touch {
.leaflet-control-layers,
.leaflet-bar {
background-clip: padding-box;
border: 2px solid transparentize($color-black, .8);
}
.leaflet-control-layers-toggle {
height: 44px;
width: 44px;
}
}
.leaflet-control-layers {
&.leaflet-control {
background: transparent;
border: 0;
border-radius: 0;
box-shadow: none;
margin: 0;
opacity: .8;
}
label {
display: block;
}
.leaflet-control-layers-list {
display: none;
}
}
.leaflet-control-layers-expanded {
background: $color-white;
color: $color-gray-dark;
.leaflet-control-layers-toggle {
display: none;
}
.leaflet-control-layers-list {
background: transparentize($color-white, .1);
color: $color-gray-dark;
display: block;
padding: 2px 10px;
position: relative;
label {
cursor: pointer;
}
}
}
.leaflet-control-layers-selector {
display: none;
+ span {
display: block;
padding: 5px 0 8px 20px;
&::before {
border: 1px solid $color-primary;
border-radius: 50%;
content: ' ';
height: 10px;
margin: 0 0 0 -18px;
position: absolute;
transition: background .3s;
width: 10px;
}
&:hover {
&::before {
background: transparentize($color-primary, .7);
}
}
}
&:checked {
+ span {
&::before {
background: $color-primary;
}
}
}
}
.leaflet-control-layers-separator {
border-top: 1px solid $color-gray-light;
height: 0;
margin: 5px -10px 5px -6px;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
color: $color-gray-dark;
padding: 2px 5px 4px;
}
.leaflet-label {
&.leaflet-label-right {
background-color: $color-white;
2017-02-11 16:26:57 +00:00
border: 1px solid $color-primary;
border-radius: 0;
display: block;
2017-02-11 16:26:57 +00:00
font-size: $font-size-map-control;
font-weight: normal;
2017-02-11 16:26:57 +00:00
line-height: 1.5;
opacity: .8;
padding: 1px 6px;
position: absolute;
user-select: none;
white-space: nowrap;
z-index: 6;
2016-07-12 19:18:13 +00:00
&::before {
display: none;
}
}
}