From 14bc18273a525f6f2532a1753a21185e995b0691 Mon Sep 17 00:00:00 2001 From: lorumic Date: Fri, 20 Oct 2023 09:16:25 +0200 Subject: [PATCH] Make popups scrollable internally instead of adding scrollbar to body --- style/client.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/style/client.css b/style/client.css index 453ab1bf35..daed2fffc6 100644 --- a/style/client.css +++ b/style/client.css @@ -706,7 +706,9 @@ span.header-username:hover { z-index: 20; } .ps-popup { - position: absolute; + position: fixed; + max-height: 99vh; + overflow-y: auto; top: auto; right: auto; left: auto; bottom: auto; text-align: left; background: #E1E8E8;