1
0

Hide task elements while the task is loading

This commit is contained in:
kolaente
2021-01-21 20:20:51 +01:00
parent a8ada57e81
commit 0d34d01689
3 changed files with 26 additions and 3 deletions

View File

@ -200,7 +200,24 @@
}
.task-view-container {
padding-bottom: 1em;
padding-bottom: 1rem;
.task-view * {
opacity: 0;
transition: opacity 50ms ease;
}
&.is-loading {
opacity: 1;
.task-view * {
opacity: 0;
}
}
&.visible:not(.is-loading) .task-view * {
opacity: 1;
}
}
.is-done {