From b5d768c1d6f52c5653c181c016aade9175a8995a Mon Sep 17 00:00:00 2001 From: Samar Nathani Date: Sat, 12 Sep 2026 19:10:23 +0530 Subject: [PATCH] feat(ui): show count badges in minimal sidebar (#4419) In minimal sidebar mode, count badges (unread changes, queue size) were hidden until hover. This makes them always visible so users can see at a glance how many items need attention without expanding the rail. Closes #4413 --- .../static/styles/scss/parts/_action_sidebar.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/changedetectionio/static/styles/scss/parts/_action_sidebar.scss b/changedetectionio/static/styles/scss/parts/_action_sidebar.scss index 5d2c83dfa..66ede9222 100644 --- a/changedetectionio/static/styles/scss/parts/_action_sidebar.scss +++ b/changedetectionio/static/styles/scss/parts/_action_sidebar.scss @@ -281,6 +281,12 @@ ul.action-sidebar-list { } } +// Count badges (unread, queue) are always visible in minimal mode so users +// can see at a glance how many items need attention without expanding the rail. +body.actionsidebar-minimal .action-badge--count { + opacity: 1; +} + // When the inner block expands in MINIMAL mode, reveal every label/badge // together with a smooth enter. Always-expanded mode handles labels via the // `body.actionside-bar-on` block below — no hover gate needed there.