From 732248455bafaf2e11adc8cbcf7c0e810d1227ba Mon Sep 17 00:00:00 2001 From: Sean Colsen Date: Thu, 19 Dec 2024 10:40:28 -0500 Subject: [PATCH] Fix highlight z-index Prevent the highlight from displaying above dropdowns opened after the highlight is added. Display highlights, dropdowns, and modals in the order they are added to the DOM. --- mathesar_ui/src/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mathesar_ui/src/App.svelte b/mathesar_ui/src/App.svelte index fd4ac57138..6e90c228be 100644 --- a/mathesar_ui/src/App.svelte +++ b/mathesar_ui/src/App.svelte @@ -138,7 +138,7 @@ --modal-z-index: 1; --dropdown-z-index: 1; --cell-errors-z-index: 1; - --new-item-highlighter-z-index: 2; + --new-item-highlighter-z-index: 1; --toast-z-index: 3; --app-header-z-index: 1;