Fix save indicator for description (fixes #354)

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2017-12-16 10:47:30 +01:00
parent 1d5ed11a8c
commit 253e60f88a
3 changed files with 49 additions and 39 deletions

View File

@@ -733,25 +733,33 @@ input.input-inline {
}
}
#card-description {
height: 100%;
display: flex;
flex-direction: column;
> div {
.card-description {
&.section-header {
.save-indicator {
margin-bottom: 5px;
margin-top: 5px;
}
}
&.section-content {
height: 100%;
}
display: flex;
flex-direction: column;
textarea {
width: 100%;
height: 200px;
border: none;
margin: 0;
padding: 0;
}
> div {
height: 100%;
}
.container {
background-color: $color-main-background;
textarea {
width: 100%;
height: 200px;
border: none;
margin: 0;
padding: 0;
}
.container {
background-color: $color-main-background;
}
}
}
}