Message: Fix timestamp overflow on some messages (#5231)
This commit is contained in:
parent
0617d77243
commit
5ae78bfce8
@ -9,8 +9,9 @@
|
|||||||
border-radius: 0.625rem;
|
border-radius: 0.625rem;
|
||||||
padding: 0 0.25rem;
|
padding: 0 0.25rem;
|
||||||
color: white;
|
color: white;
|
||||||
|
line-height: 1;
|
||||||
|
|
||||||
cursor: var(--custom-cursor, pointer);
|
cursor: var(--custom-cursor, pointer);
|
||||||
max-width: calc(100% - 0.5rem);
|
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
||||||
.message-time,
|
.message-time,
|
||||||
@ -31,17 +32,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.message-time {
|
.message-time {
|
||||||
margin-right: 0.375rem;
|
margin-right: 0.25rem;
|
||||||
}
|
|
||||||
|
|
||||||
body.is-ios & {
|
|
||||||
.message-time {
|
|
||||||
margin-right: 0.25rem;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.message-views {
|
.message-views {
|
||||||
margin-inline-start: 0.1875rem;
|
margin-inline-start: 0.125rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.message-translated {
|
.message-translated {
|
||||||
@ -67,6 +62,7 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
margin-right: 0.375rem;
|
margin-right: 0.375rem;
|
||||||
|
max-width: 16ch; // Limit long text to 16 characters
|
||||||
|
|
||||||
.emoji-small {
|
.emoji-small {
|
||||||
width: 1rem !important;
|
width: 1rem !important;
|
||||||
@ -102,7 +98,7 @@
|
|||||||
right: 0.25rem;
|
right: 0.25rem;
|
||||||
left: auto;
|
left: auto;
|
||||||
height: 1.125rem;
|
height: 1.125rem;
|
||||||
padding: 0 0.3125rem 0 0.6875rem;
|
padding: 0 0.3125rem 0 0.375rem;
|
||||||
|
|
||||||
.MessageOutgoingStatus .icon {
|
.MessageOutgoingStatus .icon {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user