shithub: puzzles

Download patch

ref: 289342ec338e0eeb2213d0a4cf93531c31bff1ce
parent: 06f6e878a0b588c513024c3498b68a3c87594ab7
author: Ben Harris <bjh21@bjh21.me.uk>
date: Tue Nov 1 05:23:41 EDT 2022

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).

--- a/html/jspage.pl
+++ b/html/jspage.pl
@@ -152,7 +152,7 @@
      * them). */
     background: white;
     /* And make sure they appear in front. */
-    z-index: 1;
+    z-index: 50;
 }
 
 #gamemenu ul ul.left {
@@ -243,7 +243,7 @@
 
 #resizehandle {
     position: absolute;
-    z-index: 98;
+    z-index: 1;
     bottom: 0;
     right: 0;
     cursor: se-resize;