From 8afb1abd36a24706752d377ef4cfe877bb0c793c Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Wed, 25 May 2022 04:50:36 +0000 Subject: [PATCH] Fix a grid blowout due to nowrap displayName on a bubble with UTD (#8688) --- res/css/views/rooms/_EventBubbleTile.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/res/css/views/rooms/_EventBubbleTile.scss b/res/css/views/rooms/_EventBubbleTile.scss index a6b7cb33dc..ff91410eb6 100644 --- a/res/css/views/rooms/_EventBubbleTile.scss +++ b/res/css/views/rooms/_EventBubbleTile.scss @@ -493,17 +493,22 @@ limitations under the License. "shield body" auto "shield link" auto / auto 1fr; + .mx_EventTile_e2eIcon { grid-area: shield; } + .mx_UnknownBody { grid-area: body; } + .mx_EventTile_keyRequestInfo { grid-area: link; } + .mx_ReplyChain_wrapper { grid-area: reply; + min-width: 0; // Prevent a grid blowout due to nowrap displayName } }