Commit 9bd611fa authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'todo-done-updates' into 'master'

Change opacity of finished todos instead of background color

See merge request !10100
parents 4a8e516c 02c3c620
...@@ -47,6 +47,7 @@ ...@@ -47,6 +47,7 @@
.todo-avatar, .todo-avatar,
.todo-actions { .todo-actions {
@include transition(opacity);
-webkit-flex: 0 0 auto; -webkit-flex: 0 0 auto;
flex: 0 0 auto; flex: 0 0 auto;
} }
...@@ -67,21 +68,34 @@ ...@@ -67,21 +68,34 @@
flex: 0 1 100%; flex: 0 1 100%;
min-width: 0; min-width: 0;
} }
}
.todos-list > .todo.todo-pending.done-reversible { &.todo-pending.done-reversible {
background-color: $gray-light; background-color: $white-light;
&:hover { &:hover {
border-color: $border-color; border-color: $white-dark;
} background-color: $gray-light;
.title { .todo-avatar,
font-weight: normal; .todo-item {
opacity: .6;
}
}
.todo-avatar,
.todo-item {
opacity: .2;
}
.btn {
background-color: $gray-light;
}
} }
} }
.todo-item { .todo-item {
@include transition(opacity);
.todo-title { .todo-title {
display: flex; display: flex;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment