[TASK] Replace leaflet label css with own scss

This commit is contained in:
Xaver Maierhofer 2016-06-01 22:24:56 +02:00
parent db8af292e3
commit 1d074dc90e
3 changed files with 20 additions and 2 deletions

View File

@ -1 +0,0 @@
../bower_components/Leaflet.label/dist/leaflet.label.css

View File

@ -8,7 +8,7 @@
@import 'modules/base';
@import 'modules/icon';
@import 'leaflet';
@import 'leaflet.label';
@import 'modules/leaflet';
@import 'modules/leaflet-layer';
@import 'modules/table';
@import 'modules/filter';

View File

@ -0,0 +1,19 @@
.leaflet-label {
&.leaflet-label-right {
background-color: $color-white;
border: 2px solid $color-primary;
border-radius: 0;
display: block;
font-weight: normal;
opacity: .8;
padding: 1px 6px;
position: absolute;
user-select: none;
white-space: nowrap;
z-index: 6;
&:before {
display: none;
}
}
}