Merge pull request #295 from taigaio/issue/2028/blocked-task-color

Issue/2028/blocked task color
stable
Juanfran 2015-01-29 02:04:46 -08:00
commit 7192d4570f
2 changed files with 11 additions and 8 deletions

View File

@ -30,6 +30,12 @@
span { span {
color: $white; color: $white;
} }
&:hover {
.icon-edit,
.icon-drag-h {
color: $white;
}
}
} }
.taskboard-tagline { .taskboard-tagline {
border-color: $postit-hover; border-color: $postit-hover;

View File

@ -145,16 +145,13 @@ $column-margin: 0 10px 0 0;
&.blocked { &.blocked {
.taskboard-userstory-box { .taskboard-userstory-box {
background: rgba($red, .6); background: rgba($red, .6);
border-radius: 3px;
} }
a, .taskboard-userstory-box a,
.points-value { .taskboard-userstory-box a:hover,
color: rgba($white, .9); .points-value,
transition: color .3s linear;
}
a:hover,
.points-value:hover { .points-value:hover {
color: rgba($white, 1); color: $white;
transition: color .3s linear; transition: color .3s linear;
} }
.taskboard-tasks-box { .taskboard-tasks-box {