Chats: display the last message in chats list, fixes #361

This commit is contained in:
Alex Gleason 2020-08-30 19:31:09 -05:00
parent a47524d33f
commit 445bb30ac0
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
3 changed files with 25 additions and 0 deletions

Binary file not shown.

View file

@ -146,6 +146,22 @@
.account__display-name {
position: relative;
.display-name {
display: flex;
bdi {
overflow: hidden;
text-overflow: ellipsis;
}
.display-name__account {
overflow: hidden;
text-overflow: ellipsis;
flex: 1;
display: none;
}
}
}
.icon-with-badge__badge {
@ -253,3 +269,12 @@
background: transparent;
}
}
.chat {
&__last-message {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}