Fix watermark and help position related to toolbar
This commit is contained in:
parent
f811410b45
commit
775f389e5c
|
@ -112,7 +112,8 @@ form {
|
||||||
|
|
||||||
.leftwatermark {
|
.leftwatermark {
|
||||||
display: none;
|
display: none;
|
||||||
left: 15;
|
left: $defaultToolbarSize;
|
||||||
|
margin-left: 10px;
|
||||||
background-image:url(../images/watermark.png);
|
background-image:url(../images/watermark.png);
|
||||||
background-position: center left;
|
background-position: center left;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,11 +2,12 @@
|
||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
left: 20px;
|
left: $defaultToolbarSize;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
margin-left: 10px;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
border-radius: 15px;
|
border-radius: $borderRadius;
|
||||||
background-attachment: scroll;
|
background-attachment: scroll;
|
||||||
background-size: auto auto;
|
background-size: auto auto;
|
||||||
color: rgba(255, 255, 255, .8);
|
color: rgba(255, 255, 255, .8);
|
||||||
|
|
Loading…
Reference in New Issue