From f4a449b4ab00184c0a2aac9831b8b00741280e2e Mon Sep 17 00:00:00 2001 From: Aymen Hassini Date: Wed, 28 Jan 2026 14:58:44 +0100 Subject: [PATCH] Partially Fix Member Settings Scroll Overflow --- client/components/main/popup.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/client/components/main/popup.css b/client/components/main/popup.css index b9d942238..8c0a50a42 100644 --- a/client/components/main/popup.css +++ b/client/components/main/popup.css @@ -93,6 +93,25 @@ max-height: inherit; } +/* Fix overflow in the Member Settings (member menu) popup: + the popup itself gets a max-height inline style, but the header consumes space. + Make the header overlay the scrollable area so the list can't spill out. */ +.pop-over[data-popup="memberMenuPopup"] { + overflow: hidden; +} +.pop-over[data-popup="memberMenuPopup"] > .header { + position: absolute; + top: 0; + left: 0; + right: 0; + margin-bottom: 0; + z-index: 1; +} +.pop-over[data-popup="memberMenuPopup"] > .content-wrapper { + padding-top: calc(4.5vh + 1vh); + box-sizing: border-box; +} + /* Admin edit popups: use full height */ .pop-over[data-popup="editUserPopup"], .pop-over[data-popup="editOrgPopup"],