[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.
This commit is contained in:
Julien Carion (juca)
2023-10-18 13:57:01 +02:00
committed by Géry Debongnie
parent 6037018dd2
commit fee3eecd7f
+1 -1
View File
@@ -318,7 +318,7 @@
color: var(--text-color); color: var(--text-color);
background-color: var(--background-color); background-color: var(--background-color);
border: 1px solid gray; border: 1px solid gray;
z-index: 1; z-index: 2;
box-shadow: 1px 2px 5px #888; box-shadow: 1px 2px 5px #888;
font-family: var(--bs-font-sans-serif); font-family: var(--bs-font-sans-serif);
} }