Merge pull request #359 from nextcloud/fix-autosave

Fix save indicator for description (fixes #354)
This commit is contained in:
Julius Härtl
2017-12-17 17:44:23 +01:00
committed by GitHub
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;
}
}
}
}