From 96fda64b706370850eb692ee449cb2bc35009046 Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Tue, 12 Nov 2024 21:35:14 -0500 Subject: [PATCH] Fix queue button overlaped by pysssss.ImageFeed (#1520) --- src/assets/css/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/assets/css/style.css b/src/assets/css/style.css index cf150e401..36f517ab0 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -83,7 +83,10 @@ body { /* Position at the first row */ grid-row: 1; /* Top menu bar dropdown needs to be above of graph canvas splitter overlay which is z-index: 999 */ - z-index: 1000; + /* Top menu bar z-index needs to be higher than bottom menu bar z-index as by default + pysssss's image feed is located at body-bottom, and it can overlap with the queue button, which + is located in body-top. */ + z-index: 1001; display: flex; flex-direction: column; }