From 446483e608b310d6052b842149eb4b6f120a303a Mon Sep 17 00:00:00 2001 From: vladislavkeblysh Date: Mon, 16 Oct 2023 12:16:08 +0300 Subject: [PATCH 1/2] feat: fixed editor bar visibility --- src/index.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.scss b/src/index.scss index 1e2ebcf37..2f97f94e4 100755 --- a/src/index.scss +++ b/src/index.scss @@ -331,7 +331,7 @@ header { .header-action-bar { background-color: #fff; - z-index: 3; + z-index: 9999 !important; box-shadow: 0px 2px 4px rgb(0 0 0 / 15%), 0px 2px 8px rgb(0 0 0 / 15%); position: sticky; top: 0; From 5040afed8e10be42be22e1413c0cff69181a5cde Mon Sep 17 00:00:00 2001 From: vladislavkeblysh Date: Fri, 29 Dec 2023 14:43:58 +0200 Subject: [PATCH 2/2] feat: fixed z index --- src/index.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/index.scss b/src/index.scss index 2f97f94e4..73b4949b0 100755 --- a/src/index.scss +++ b/src/index.scss @@ -331,7 +331,7 @@ header { .header-action-bar { background-color: #fff; - z-index: 9999 !important; + z-index: 2 !important; box-shadow: 0px 2px 4px rgb(0 0 0 / 15%), 0px 2px 8px rgb(0 0 0 / 15%); position: sticky; top: 0; @@ -345,6 +345,10 @@ header { } } +.tox-tinymce-aux { + z-index: 1 !important; +} + .breadcrumb-menu { z-index: 1; }