From 4c5e1c7cc6a2c230d8199a8db3a49dbbb8718a2c Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Wed, 25 May 2022 23:31:21 +0900 Subject: [PATCH] Prevent overflow of grid items on a bubble with UTD generally Signed-off-by: Suguru Hirahara --- res/css/views/rooms/_EventBubbleTile.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/res/css/views/rooms/_EventBubbleTile.scss b/res/css/views/rooms/_EventBubbleTile.scss index c3752c87529..75071366fac 100644 --- a/res/css/views/rooms/_EventBubbleTile.scss +++ b/res/css/views/rooms/_EventBubbleTile.scss @@ -496,6 +496,13 @@ limitations under the License. "shield link" auto / auto 1fr; + .mx_UnknownBody, + .mx_EventTile_keyRequestInfo, + .mx_ReplyChain_wrapper, + .mx_ViewSourceEvent { + min-width: 0; // Prevent a grid blowout + } + .mx_EventTile_e2eIcon { grid-area: shield; } @@ -510,7 +517,6 @@ limitations under the License. .mx_ReplyChain_wrapper { grid-area: reply; - min-width: 0; // Prevent a grid blowout due to nowrap displayName } }