/#streams/: Add checkmark hover state.

This adds a hover state to just the checkmark that makes it darker
than the line hover state that allows a user to know that the
checkmark is allowed to be toggled.
This commit is contained in:
Brock Whittaker
2017-09-19 12:03:35 -07:00
committed by Tim Abbott
parent 60e3abddcb
commit 383669de0b

View File

@@ -651,6 +651,15 @@ form#add_new_subscription {
fill: hsl(0, 0%, 86%);
}
.stream-row .check:not(.checked):hover svg,
.stream-row.active .check:not(.checked):hover svg {
fill: hsl(0, 0%, 72%);
}
.stream-row .check.checked:hover svg {
opacity: 0.5;
}
.stream-row .checked svg {
fill: hsl(170, 47%, 54%);
}