From e16f461f0a9422f144f8738cbcd40604f64dfcb3 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Wed, 15 Sep 2021 17:08:23 +0200 Subject: [PATCH] Merge pull request #1174 from AndreasK79/modal_css_height_fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This CSS fix adds a scrollbar to the modal if content height is great… --- assets/css/general.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/css/general.css b/assets/css/general.css index cd82e5be..40fd43be 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -244,6 +244,7 @@ color: #ffffff; } } + /* * Timepicker alignment */ @@ -251,6 +252,7 @@ color: #ffffff; padding-right: 0; padding-left: 0; } + .modal-body { max-height: calc(100vh - 200px); overflow-y: auto;