From c7375206fb21ff2a0c846e2e26f1aba44f30ef13 Mon Sep 17 00:00:00 2001 From: Dariusz L Date: Tue, 24 Jun 2025 19:18:46 +0200 Subject: [PATCH] Increase z-index for canvas widget tooltip Raised the z-index of the canvas widget tooltip from 1001 to 9999 to ensure it appears above the modal backdrop and other UI elements. --- js/Canvas_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/Canvas_view.js b/js/Canvas_view.js index fde86a4..44dce1c 100644 --- a/js/Canvas_view.js +++ b/js/Canvas_view.js @@ -158,7 +158,7 @@ async function createCanvasWidget(node, widget, app) { border: 1px solid #555; border-radius: 8px; padding: 12px 18px; - z-index: 1001; /* Wyżej niż inne elementy UI */ + z-index: 9999; /* Wyżej niż modal backdrop */ font-size: 13px; line-height: 1.7; max-width: 400px;