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

Remove inline margin from UTD error message inside a reply tile on ThreadView #8708

Merged
merged 4 commits into from
May 30, 2022
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
14 changes: 7 additions & 7 deletions res/css/views/rooms/_EventTile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -923,6 +923,13 @@ $threadInfoLineHeight: calc(2 * $font-12px); // See: _commons.scss
}
}

.mx_ReplyChain_wrapper {
.mx_MLocationBody,
.mx_UnknownBody { // Error message inside ReplyTile
margin-inline: unset;
}
}

.mx_EventTile_mediaLine {
// such as MImageBody
> div,
Expand All @@ -937,13 +944,6 @@ $threadInfoLineHeight: calc(2 * $font-12px); // See: _commons.scss
}
}

.mx_ReplyChain_wrapper {
.mx_MLocationBody {
margin-inline-start: 0;
margin-inline-end: 0;
}
}

.mx_MessageTimestamp {
top: 2px; // Align with mx_EventTile_content
}
Expand Down