-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unread room indicator for collapsed roomlist #5454
Comments
Related: #4369 |
see also #2033 (comment) / #2033 (comment) If you add something like: .mx_LeftPanel.collapsed .mx_RoomTile_unread .mx_BaseAvatar_image {
box-shadow: 0px 0px 10px white;
} then it will show up like: (with the middle room being unread, and the other rooms being read) Obviously, the light theme would need a different colour. Another option would be to add a coloured circle or something, similar to the pinned messsages indicator (which might match with Riot's flatness better). |
Something like: .mx_LeftPanel.collapsed .mx_RoomTile_unread .mx_RoomTile_avatar_container::after {
border: solid 3px blue;
border-radius: 3px;
display: block;
position: absolute;
top: 0px;
content: "";
height: 0;
width: 0;
right: 0;
} would give (with the middle three rooms being unread, and the outer two rooms being read). A different colour would probably be better. |
@lampholder any chance to get some design on this? |
This is there now (and in the redesign). Ready to be closed. Helpful screenshot from another unrelated issue: https://matrix.org/_matrix/media/v1/download/matrix.org/CEKIZVTIHDNjKazjziUWGzbB |
Can confirm, appears fixed. |
Fixed in the new room list. |
When the left sidebar is collapsed, you can't tell which rooms have unread messages
The text was updated successfully, but these errors were encountered: