From f97bdc364d4b0e5956d976519da8ce3bdd3d25de Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Fri, 21 Aug 2026 21:22:12 +0100 Subject: [PATCH] Add z-index for Spotlight Tooltip in Popover - Introduced a new CSS rule to set the z-index for popovers containing spotlight tooltips, ensuring proper layering in the user interface. - This change enhances the visibility and interaction of tooltips within the application, improving overall user experience. --- assets/stylesheets/App.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/stylesheets/App.css b/assets/stylesheets/App.css index efb6267a..975602d2 100644 --- a/assets/stylesheets/App.css +++ b/assets/stylesheets/App.css @@ -349,6 +349,10 @@ code { padding: 0 !important; } +.ant-popover:has(.spotlight-tooltip) { + z-index: 1051; +} + :root, .light-mode, html:has(.light-mode) {