From e427fc8d722f3f3935fc1e6fc84cbe1f78348ad0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?chouteau=20Ma=C3=ABl?= Date: Wed, 23 Sep 2026 17:04:17 +0200 Subject: [PATCH] fix: keep the description editor menu above tables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The sidebar override set the Text menubar to z-index 1, so its dropdowns painted under table widgets. Use 4 so the menu stays above those widgets and still below tag menus and the sticky sidebar header. Fixes #7789 Signed-off-by: chouteau Maƫl --- src/components/card/Description.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/card/Description.vue b/src/components/card/Description.vue index 8da0a6019..840090f90 100644 --- a/src/components/card/Description.vue +++ b/src/components/card/Description.vue @@ -471,7 +471,8 @@ h5 { .app-sidebar__tab .description__text .text-menubar { top: -10px !important; - z-index: 1; + /* Above Text tables (3), below tag menus (50) and the sticky sidebar (100). */ + z-index: 4; } .modal__card .description__text .text-menubar {