From b4b788e8d5b223fe4ec0b5ff29d9b993a890f3f7 Mon Sep 17 00:00:00 2001 From: Germain Souquet Date: Wed, 4 Aug 2021 11:21:52 +0200 Subject: [PATCH] Fix right margin for events on IRC layout Fixes vector-im/element-web#18354 --- res/css/views/rooms/_EventTile.scss | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/res/css/views/rooms/_EventTile.scss b/res/css/views/rooms/_EventTile.scss index 6e207d674b..1c9d8e87d9 100644 --- a/res/css/views/rooms/_EventTile.scss +++ b/res/css/views/rooms/_EventTile.scss @@ -310,14 +310,12 @@ $hover-select-border: 4px; } .mx_RoomView_timeline_rr_enabled { - - .mx_EventTile:not([data-layout=bubble]) { + .mx_EventTile[data-layout=group] { .mx_EventTile_line { /* ideally should be 100px, but 95px gives us a max thumbnail size of 800x600, which is nice */ margin-right: 110px; } } - // on ELS we need the margin to allow interaction with the expand/collapse button which is normally in the RR gutter }