Merge branch 'master' into develop

This commit is contained in:
Fedor Katurov 2021-04-20 16:18:57 +07:00
commit fda24c78b0
15 changed files with 96 additions and 63 deletions

View file

@ -1,3 +1,5 @@
@import "colors";
.button {
background: #444444;
padding: 4px 16px;

View file

@ -1,3 +1,5 @@
@import "colors";
.dialog {
position: fixed;
left: 0;

View file

@ -1,3 +1,5 @@
@import "colors";
.gpx-title {
display: flex;
flex-direction: row;

View file

@ -1,3 +1,5 @@
@import "colors";
.logo-preview {
position: fixed;
right: 0;

View file

@ -1,3 +1,5 @@
@import "colors";
#map {
width: 50% !important;
height: 100%;
@ -28,7 +30,7 @@
.leaflet-vertex-drag-helper {
pointer-events: none !important;
background: fade(red, 50%);
background: darken(red, 50%);
border-radius: 12px;
&::after {

View file

@ -1,3 +1,5 @@
@import "colors";
.control-bar {
background: $bar_background;
border-radius: $panel_radius;

View file

@ -1,3 +1,5 @@
@import "colors";
.progress {
width: 100%;
position: relative;

View file

@ -1,3 +1,5 @@
@import "colors";
.renderer-shade {
position: fixed;
top: 0;

View file

@ -1,3 +1,5 @@
@import "colors";
.router-waypoint {
width: 40px;
height: 40px;
@ -5,6 +7,7 @@
margin-top: -20px;
outline: none;
z-index: 10001;
position: absolute;
&:after {
content: ' ';

View file

@ -1,3 +1,5 @@
@import "colors";
.save-helper {
padding: 0;
flex-direction: column;

View file

@ -1,3 +1,5 @@
@import "colors";
$disabledColor: #ccc;
$border-radius-base: 6px;
$primary-color: transparent;

View file

@ -1,3 +1,5 @@
@import "colors";
.leaflet-dragging .sticker-container {
transition: none !important;
}

View file

@ -1,3 +1,5 @@
@import "colors";
.switch {
height: 1em;
width: 2em;

View file

@ -1,3 +1,5 @@
@import "colors";
.user-bar {
// width: 160px;

View file

@ -33,6 +33,10 @@ export class DomMarker extends DivIcon {
createIcon(oldicon?: HTMLElement) {
this.element.classList.add('icon')
if (this.options.className) {
this.element.classList.add(this.options.className);
}
return this.element;
}
}