From cd29115233c91bf195339fcb8abf841ac168f574 Mon Sep 17 00:00:00 2001 From: elpatron Date: Fri, 5 Jun 2026 18:12:28 +0200 Subject: [PATCH] =?UTF-8?q?fix(tour):=20Tour-Tooltip=20=C3=BCber=20hervorg?= =?UTF-8?q?ehobenen=20Profil-Schritten=20anzeigen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Erhöht den z-index des Tour-Overlays über app-tour-target-active, damit das Modal in Schritt 8 (Stammcrew & Skipper) nicht von der Spotlight-Karte verdeckt wird. Co-authored-by: Cursor --- client/src/App.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/App.css b/client/src/App.css index 2fcdcda..342dbab 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -6034,7 +6034,8 @@ html.theme-cupertino .events-scroll-container { .app-tour-root { position: fixed; inset: 0; - z-index: 10000; + /* Above .app-tour-target-active (10001) so tooltip/backdrop stay topmost */ + z-index: 10010; pointer-events: none; }