Card: Auto save while typing

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2017-10-09 13:40:35 +02:00
committed by Julius Härtl
parent 3d54d129b9
commit 8d39fd9ad1
3 changed files with 43 additions and 8 deletions

View File

@@ -613,14 +613,21 @@ input.input-inline {
}
.save-indicator {
background-color: $color-success;
color: $color-primary-text;
border-radius: 3px;
float: right;
padding: 0px 10px;
font-size: 8pt !important;
padding: 0 10px;
font-size: 8pt;
display: none;
align-self: flex-end;
text-align: center;
&.saved {
background-color: $color-success;
color: $color-primary-text;
}
&.unsaved {
background-color: $color-lightgrey;
color: $color-darkgrey;
}
}
.icon-help {