Fix opacity for muted topics within muted streams in left sidebar.

Fixes #428.

[Comment and commit message tweaked by tabbott]
This commit is contained in:
Kartik Maji 2016-03-09 02:12:57 +05:30 committed by Tim Abbott
parent 4ec0d76586
commit 3bf54e7da7
1 changed files with 7 additions and 0 deletions

View File

@ -677,6 +677,13 @@ ul.filters li.out_of_home_view {
opacity: 0.25;
}
ul.filters li.out_of_home_view li.muted_topic {
/* If stream is muted, this resets opacity of muted topics in muted
stream to 1; since opacity is multiplied down through child
elements, this avoids an unreadable opacity of 0.25^2. */
opacity: 1;
}
.message_list {
}