Skip to content
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

Closed
richvdh opened this issue Oct 27, 2017 · 8 comments
Closed

Unread room indicator for collapsed roomlist #5454

richvdh opened this issue Oct 27, 2017 · 8 comments
Labels
A-Room-List P2 S-Major Severely degrades major functionality or product features, with no satisfactory workaround T-Defect X-Needs-Design

Comments

@richvdh
Copy link
Member

richvdh commented Oct 27, 2017

When the left sidebar is collapsed, you can't tell which rooms have unread messages

@lampholder lampholder added T-Defect design S-Major Severely degrades major functionality or product features, with no satisfactory workaround P2 labels Oct 27, 2017
@turt2live
Copy link
Member

Related: #4369

@uhoreg
Copy link
Member

uhoreg commented Nov 29, 2017

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:

image

(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).

@uhoreg
Copy link
Member

uhoreg commented Nov 29, 2017

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

image

(with the middle three rooms being unread, and the outer two rooms being read). A different colour would probably be better.

@t3chguy
Copy link
Member

t3chguy commented Jan 8, 2018

@lampholder any chance to get some design on this?

@aaronraimist
Copy link
Collaborator

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

@turt2live
Copy link
Member

Can confirm, appears fixed.

@uhoreg
Copy link
Member

uhoreg commented Nov 29, 2018

Seems to not be fixed yet for rooms that don't have unread badges (not noisy). e.g. the top two rooms below have unread messages.
image

@turt2live
Copy link
Member

Fixed in the new room list.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-Room-List P2 S-Major Severely degrades major functionality or product features, with no satisfactory workaround T-Defect X-Needs-Design
Projects
None yet
Development

No branches or pull requests

6 participants