l10n typos & CSS fixes

This commit is contained in:
2020-04-25 17:02:24 +02:00
parent 949275f657
commit 33c320bf5c
7 changed files with 25 additions and 17 deletions

View File

@@ -28,6 +28,7 @@ $stroke-width-axis : 2;
text-shadow: 0px 1px 1px rgba(0,0,0,0.8);
width: 44px;
text-align: center;
box-shadow: none;
.fa, .heightgraph-toggle-icon {
@extend .control-icon;

View File

@@ -27,7 +27,7 @@ $legend-color: $post-color;
}
.leaflet-right {
width: calc(#{$panel-width});
width: $panel-width;
max-width: calc(#{$panel-width-max});
}
@@ -54,7 +54,7 @@ $legend-color: $post-color;
}
.leaflet-left {
width: calc(#{$panel-width});
width: $panel-width;
max-width: calc(#{$panel-width-max});
}
@@ -131,6 +131,7 @@ $legend-color: $post-color;
border-radius: 3px;
border: none;
margin: $block-spacing;
box-shadow: 0 1px 7px rgba(0, 0, 0, .4);
&+ .leaflet-control {
margin-top: 0;
@@ -248,8 +249,6 @@ $legend-color: $post-color;
position: absolute;
top: 0;
bottom: 0;
width: calc(#{$panel-width});
max-width: calc(#{$panel-width-max});
z-index: -1;
transition-property: z-index;
transition-duration: 0.1s;
@@ -273,6 +272,8 @@ $legend-color: $post-color;
}
#feed {
right: 0;
width: #{$panel-width};
max-width: calc(#{$panel-width-max});
#posts {
position: absolute;
@@ -444,11 +445,13 @@ $legend-color: $post-color;
}
#settings {
left: 0;
width: calc(#{$panel-width} + 3px); //Add box-shadow
max-width: calc(#{$panel-width-max} + 3px); //Add box-shadow
#settings-sections {
width: calc(100% - 3rem);
margin: 1rem;
padding: 1rem;
width: calc(100% - 3rem - 3px); //Remove box-shadow
margin: $block-spacing;
padding: $block-spacing;
background: white;
border-radius: 3px;
box-shadow: 2px 2px 3px 0px rgba(0,0,0,.5);
@@ -466,7 +469,7 @@ $legend-color: $post-color;
margin-top: 1.5rem;
h1 {
margin: 0 0 1rem;
margin: 0 0 $block-spacing;
}
label {
@@ -476,7 +479,7 @@ $legend-color: $post-color;
}
&.title {
margin: -1rem -1rem 0 -1rem;
margin: -#{$block-spacing} -#{$block-spacing} 0 -#{$block-spacing};
width: calc(100% + 2rem);
text-align: center;
@@ -568,8 +571,8 @@ $legend-color: $post-color;
a {
display: inline-block;
margin-right: 1rem;
margin-top: 1rem;
margin-right: $block-spacing;
margin-top: $block-spacing;
&:last-child {
margin-right: 0;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long