left_sidebar: Ensure home view unreads are shown on hover.

This commit is contained in:
Karl Stolley
2025-08-13 15:34:24 -05:00
committed by Tim Abbott
parent 340a99c3fb
commit 3df21d8780

View File

@@ -112,6 +112,18 @@
.unread_count.hide + .masked_unread_count {
visibility: hidden;
}
/* Suppress the unread-count dot and show
the unread count on hover. */
&:hover {
.masked_unread_count {
visibility: hidden;
}
.unread_count:not(:empty) {
visibility: visible;
}
}
}
}