From 657cda18ef4db8f5aaf3db78bc5a968f132646b0 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 12 Mar 2024 08:44:12 -0400 Subject: [PATCH] Put back style permitting scrolling to work --- web/skins/classic/css/base/views/options.css | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/web/skins/classic/css/base/views/options.css b/web/skins/classic/css/base/views/options.css index c9fb4b620..93d0db5b5 100644 --- a/web/skins/classic/css/base/views/options.css +++ b/web/skins/classic/css/base/views/options.css @@ -32,14 +32,16 @@ input.large { } #sidebar { -/* overflow-y: auto; */ + overflow-y: auto; min-width: 160px; } +#optionsContainer { + overflow: none; +} #options { -/* overflow-y: auto; - padding-top: 15px; - height: 100%; */ + overflow-y: auto; + height: 100%; } #options div.col-md { text-align: left; @@ -95,8 +97,8 @@ input[name="newStorage[Url]"] { } form { -/* position: relative; - height: 100%; */ +/* height: 100% is to make scrollbars work in #options */ + height: 100%; padding-top: 2rem; }