From 3bf54e7da7248ba4e452e8712d24091dea016570 Mon Sep 17 00:00:00 2001 From: Kartik Maji Date: Wed, 9 Mar 2016 02:12:57 +0530 Subject: [PATCH] Fix opacity for muted topics within muted streams in left sidebar. Fixes #428. [Comment and commit message tweaked by tabbott] --- static/styles/zulip.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/styles/zulip.css b/static/styles/zulip.css index 657b9931dc..67deccaab6 100644 --- a/static/styles/zulip.css +++ b/static/styles/zulip.css @@ -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 { }