From 4dad97d28b6c9912a902b11399d3b56c57c89bb0 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Wed, 25 May 2022 13:01:34 +0900 Subject: [PATCH] Fix a grid blowout due to nowrap displayName Signed-off-by: Suguru Hirahara --- 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 4acdf3d7465..ec1701cebeb 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 } }