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 {
|
> div.reply-sender {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
text-wrap: nowrap;
|
||||||
|
|
||||||
> div.sender-avatar {
|
> div.sender-avatar {
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
|
@ -37,6 +38,11 @@ blockquote.reply-body {
|
||||||
margin-right: .25rem;
|
margin-right: .25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
> span.event-sender {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
> button.close-reply {
|
> button.close-reply {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
|
|
@ -48,9 +48,12 @@ div.timeline-event {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: .25rem;
|
gap: .25rem;
|
||||||
|
text-wrap: nowrap;
|
||||||
|
|
||||||
> span.event-sender {
|
> span.event-sender {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
> span.event-time, > span.event-edited {
|
> span.event-time, > span.event-edited {
|
||||||
|
|
Loading…
Add table
Reference in a new issue