From f9e3328fb36e3208c89ef90782db9f51a1c64243 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 8 Dec 2021 09:19:12 +0000 Subject: [PATCH] Fix issue with room list resizer getting clipped in firefox (#7303) --- res/css/views/rooms/_RoomSublist.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/res/css/views/rooms/_RoomSublist.scss b/res/css/views/rooms/_RoomSublist.scss index 558014e21c..bbc6a1d9fd 100644 --- a/res/css/views/rooms/_RoomSublist.scss +++ b/res/css/views/rooms/_RoomSublist.scss @@ -194,6 +194,8 @@ limitations under the License. display: flex; flex-direction: column; align-self: stretch; + // without this Firefox will prefer pushing the resizer & show more/less button into the overflow + min-height: 0; mask-image: linear-gradient(0deg, transparent, black 4px); }