mirror of https://github.com/zulip/zulip.git
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:
parent
4ec0d76586
commit
3bf54e7da7
|
@ -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 {
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue