Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Fix misaligned timestamps for thread roots which are emotes #9875

Merged
merged 6 commits into from
Jan 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion res/css/views/rooms/_EventTile.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -970,6 +970,7 @@ $left-gutter: 64px;
font-size: $font-12px;
max-width: var(--MessageTimestamp-max-width);
position: initial;
margin-left: auto; /* to ensure it's end-aligned even if it's the only element of its parent */
}

&:hover {
Expand Down Expand Up @@ -1297,7 +1298,7 @@ $left-gutter: 64px;

.mx_EventTile_details {
display: flex;
width: -webkit-fill-available;
width: fill-available;
align-items: center;
justify-content: space-between;
gap: $spacing-8;
Expand Down