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

Specify position of DisambiguatedProfile inside a thread on bubble message layout #8452

Merged
merged 2 commits into from
May 3, 2022
Merged
Changes from 1 commit
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
6 changes: 5 additions & 1 deletion res/css/views/rooms/_EventBubbleTile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,11 @@ limitations under the License.
line-height: $font-18px;
}

> .mx_DisambiguatedProfile {
// inside mx_RoomView_MessageList, outside of mx_ReplyTile
// (on the main panel and the chat panel with a maximized widget)
> .mx_DisambiguatedProfile,
// inside a thread, outside of mx_ReplyTile
.mx_EventTile_senderDetails > .mx_DisambiguatedProfile {
position: relative;
top: -2px;
left: 2px;
Expand Down