From 3b5c8e96dc8bddee0f4054021795247082898f99 Mon Sep 17 00:00:00 2001 From: fnuesse Date: Sun, 12 May 2019 13:01:06 +0200 Subject: [PATCH] fixed bad zIndex for modals (which were not visible) Signed-off-by: fnuesse --- sass/partials/icon-picker.scss | 4 ++++ sass/searchboxexpander.scss | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/sass/partials/icon-picker.scss b/sass/partials/icon-picker.scss index 8ed9ac9b..f7c46042 100644 --- a/sass/partials/icon-picker.scss +++ b/sass/partials/icon-picker.scss @@ -92,3 +92,7 @@ } } +//This moves the modal from tbe background to the foreground so that it is actually visible +.ui-front{ + z-index: 9999 !important; +} \ No newline at end of file diff --git a/sass/searchboxexpander.scss b/sass/searchboxexpander.scss index dd07f751..aeab2506 100644 --- a/sass/searchboxexpander.scss +++ b/sass/searchboxexpander.scss @@ -68,4 +68,9 @@ display: none; } //bottom line end +} + +//This moves the modal from tbe background to the foreground so that it is actually visible +.ui-front{ + z-index: 9999 !important; } \ No newline at end of file