UX: userstatus limit handling in UI (#20343)
* UX: handle long userstatus in menupanel * UX: remove margin on userstatus emoji * UX: change emoji sise of user status in DM creator * FIX: user status overflow on chat index
This commit is contained in:
parent
8a224bf999
commit
8465f53a35
|
@ -159,6 +159,9 @@
|
|||
}
|
||||
|
||||
.item-label {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
|
|
|
@ -158,7 +158,8 @@
|
|||
margin-left: 0.3em;
|
||||
|
||||
.emoji {
|
||||
margin-bottom: 0.2em;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -70,6 +70,7 @@
|
|||
}
|
||||
|
||||
&__name {
|
||||
flex-shrink: 0;
|
||||
margin-left: 0.75em;
|
||||
font-size: var(--font-up-1);
|
||||
}
|
||||
|
@ -77,6 +78,11 @@
|
|||
&__category-badge {
|
||||
font-size: var(--font-up-1);
|
||||
}
|
||||
|
||||
&__user-status-message {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue