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
This commit is contained in:
Samar Nathani
2026-09-12 15:40:23 +02:00
committed by GitHub
parent 6318fc70f4
commit b5d768c1d6
@@ -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.