From c871d06f14c72de704ecfabe96737b4a9b3ea50d Mon Sep 17 00:00:00 2001 From: Ben Bartholomew <70723971+ben-bartholomew@users.noreply.github.com> Date: Tue, 19 Sep 2023 17:24:29 -0400 Subject: [PATCH] Adding CSS snippet to hide unread badge for muted channels Adding CSS snippet to hide unread badge for muted channels --- _guides/custom-css.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/_guides/custom-css.md b/_guides/custom-css.md index e0ef3daf..a8966427 100644 --- a/_guides/custom-css.md +++ b/_guides/custom-css.md @@ -316,4 +316,12 @@ You can use [this website](https://www.w3schools.com/colors/colors_picker.asp) t } ``` +### Hide unread counters for a channel in the sidebar if it is muted + +```css +.channel-list-item.is-muted .badge { + display: none; +} +``` + {% include abbreviations.md %}