From 4825370a7ff909e0259d3496adb9141cf0d539cb Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Sun, 30 May 2021 18:31:26 -0400 Subject: [PATCH] Apply height css to limit height of logout modal and apply overflow:auto to add a scrollbar if needed so that we don't have to scroll to logout. --- web/skins/classic/css/base/skin.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/web/skins/classic/css/base/skin.css b/web/skins/classic/css/base/skin.css index 0920ac2c3..a3ef3b2ce 100644 --- a/web/skins/classic/css/base/skin.css +++ b/web/skins/classic/css/base/skin.css @@ -736,3 +736,13 @@ a.flip { #objdetectModal .modal-content { width: fit-content; } + +#modalLogout .modal-dialog { + height: 100%; +} +#modalLogout .modal-content { + height: 90%; +} +#modalLogout .modal-body { + overflow:auto; +}