From 18d805e05fe839e143f9f1eeb9fd42f4dcea67d0 Mon Sep 17 00:00:00 2001 From: Alex Martzios Date: Tue, 7 Dec 2021 16:57:10 +0200 Subject: [PATCH] Add new css rule for notification message when in open modal --- css-rules.txt | 1 + library-css/notification.scss | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/css-rules.txt b/css-rules.txt index 15e234f..4fda199 100644 --- a/css-rules.txt +++ b/css-rules.txt @@ -9,6 +9,7 @@ Tooltip: 1030 notification: 1040 Modal: 10000 Modal-Tooltip: 10001 +Modal-Notification: 10001 Mat-Select: 10001 # Screen sizes - width diff --git a/library-css/notification.scss b/library-css/notification.scss index 9a2f681..e57093f 100644 --- a/library-css/notification.scss +++ b/library-css/notification.scss @@ -22,3 +22,7 @@ .uk-notification-close.uk-close, .uk-notification-close.uk-close:hover { color: #1a1a1a; } + +.uk-modal.uk-open ~ .uk-notification, .uk-notification ~ .uk-modal.uk-open { + z-index: 10001 !important; +} \ No newline at end of file