From abfe59dce48a230b1bfd2e2270a8a4a341582530 Mon Sep 17 00:00:00 2001 From: vladislavkeblysh Date: Mon, 16 Oct 2023 12:11:44 +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 9720906f7..688c1b397 100755 --- a/src/index.scss +++ b/src/index.scss @@ -329,7 +329,7 @@ header { .header-action-bar { background-color: #fff; - z-index: 2; + 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 5a10d7e8abc5bcb4dbef8eb5d0afbbf95958171a Mon Sep 17 00:00:00 2001 From: vladislavkeblysh Date: Fri, 29 Dec 2023 14:43:26 +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 688c1b397..ce3a561a1 100755 --- a/src/index.scss +++ b/src/index.scss @@ -329,7 +329,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; @@ -343,6 +343,10 @@ header { } } +.tox-tinymce-aux { + z-index: 1 !important; +} + .breadcrumb-menu { z-index: 1; }