From 289342ec338e0eeb2213d0a4cf93531c31bff1ce Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Tue, 1 Nov 2022 09:23:41 +0000 Subject: [PATCH] js: Adjust z-indices of sub-menus and resize handle The sub-menus should appear in front of the resize handle (but still behind any dialogue box). --- html/jspage.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/jspage.pl b/html/jspage.pl index b9e4249..7e7a075 100755 --- a/html/jspage.pl +++ b/html/jspage.pl @@ -152,7 +152,7 @@ EOF * them). */ background: white; /* And make sure they appear in front. */ - z-index: 1; + z-index: 50; } #gamemenu ul ul.left { @@ -243,7 +243,7 @@ EOF #resizehandle { position: absolute; - z-index: 98; + z-index: 1; bottom: 0; right: 0; cursor: se-resize;