From beac9563d6a13ae3fc5d0ceeb6b1d0e8fb9c96ba Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 11 Jan 2022 16:04:39 +0000 Subject: [PATCH] Make files & voice memos in bubble layout match colouring (#7457) --- res/css/views/rooms/_EventBubbleTile.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/res/css/views/rooms/_EventBubbleTile.scss b/res/css/views/rooms/_EventBubbleTile.scss index e7ed2b42a5..04eda433c3 100644 --- a/res/css/views/rooms/_EventBubbleTile.scss +++ b/res/css/views/rooms/_EventBubbleTile.scss @@ -95,6 +95,11 @@ limitations under the License. z-index: 9; // above the avatar } + .mx_MediaBody { + // leave space for the timestamp + padding-right: 48px; + } + &[data-self=false] { .mx_EventTile_line { border-bottom-right-radius: var(--cornerRadius); @@ -147,6 +152,10 @@ limitations under the License. right: -35px; } + .mx_MediaBody { + background: $eventbubble-self-bg; + } + --backgroundColor: $eventbubble-self-bg; }