From 2a082ecd8d4c94ebb652a882044e32c914534de0 Mon Sep 17 00:00:00 2001 From: Ken Date: Wed, 27 May 2026 22:23:39 +0000 Subject: [PATCH] fix: view dropdown menu appears off-screen - add position: relative MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .view-dropdown__menu uses position: absolute; top: calc(100% + 4px) which needs a positioned ancestor. The .view-dropdown CSS class provided position: relative, but the custom element had no class — so the menu resolved against the viewport and rendered 581px off-screen. Fixed by adding position: relative to the .view-dropdown element selector. --- muxplex/frontend/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/muxplex/frontend/style.css b/muxplex/frontend/style.css index a1e42bd..a3dcaed 100644 --- a/muxplex/frontend/style.css +++ b/muxplex/frontend/style.css @@ -63,7 +63,7 @@ session-grid, session-tile, sidebar-item { display: contents; } -view-dropdown { display: block; } +view-dropdown { display: block; position: relative; } /* Inline SVG icons — ensure consistent vertical alignment */ .header-btn svg,