Fix highlighting for unscheduled and unstarted stories

This commit is contained in:
Sijmen 2018-01-26 17:11:31 +01:00
parent abe7966a0f
commit 0c5447fab9
1 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,12 @@
transition: background-color 0.2s; transition: background-color 0.2s;
} }
.story.highlighted.planned > .preview { .story.highlighted.unscheduled > .preview {
background-color: #d4dfe7;
}
.story.highlighted.unstarted > .preview,
.story.highlighted.planned > .preview {
background-color: #dfdfdf; background-color: #dfdfdf;
} }