From fee3eecd7f0a70eb8825ff0572aa7a885ebce3b3 Mon Sep 17 00:00:00 2001 From: "Julien Carion (juca)" Date: Wed, 18 Oct 2023 13:57:01 +0200 Subject: [PATCH] [FIX] devtools: context menu should be above the border This commit increases the z-index of the context menu so that the border won't be clickable anymore when behind the menu. --- tools/devtools/src/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/devtools/src/main.css b/tools/devtools/src/main.css index fcf5ab09..9344bad5 100644 --- a/tools/devtools/src/main.css +++ b/tools/devtools/src/main.css @@ -318,7 +318,7 @@ color: var(--text-color); background-color: var(--background-color); border: 1px solid gray; - z-index: 1; + z-index: 2; box-shadow: 1px 2px 5px #888; font-family: var(--bs-font-sans-serif); }