Chats: display the last message in chats list, fixes #361
This commit is contained in:
parent
a47524d33f
commit
445bb30ac0
3 changed files with 25 additions and 0 deletions
Binary file not shown.
Binary file not shown.
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue