mirror of
https://github.com/tulir/gomuks.git
synced 2025-04-19 18:13:41 -05:00
web/timeline: don't allow sender to wrap
This commit is contained in:
parent
cc56633732
commit
ab06dbf5aa
2 changed files with 9 additions and 0 deletions
|
@ -30,6 +30,7 @@ blockquote.reply-body {
|
|||
> div.reply-sender {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-wrap: nowrap;
|
||||
|
||||
> div.sender-avatar {
|
||||
width: 1rem;
|
||||
|
@ -37,6 +38,11 @@ blockquote.reply-body {
|
|||
margin-right: .25rem;
|
||||
}
|
||||
|
||||
> span.event-sender {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
> button.close-reply {
|
||||
display: flex;
|
||||
margin-left: auto;
|
||||
|
|
|
@ -48,9 +48,12 @@ div.timeline-event {
|
|||
display: flex;
|
||||
align-items: center;
|
||||
gap: .25rem;
|
||||
text-wrap: nowrap;
|
||||
|
||||
> span.event-sender {
|
||||
font-weight: bold;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
> span.event-time, > span.event-edited {
|
||||
|
|
Loading…
Add table
Reference in a new issue