From e23d803ecf5babb46eb476af10438efd9fc72714 Mon Sep 17 00:00:00 2001 From: Will Miao Date: Sun, 3 May 2026 18:14:54 +0800 Subject: [PATCH] fix(layout): ensure refresh split-button dropdown renders above breadcrumb nav --- static/css/layout.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/css/layout.css b/static/css/layout.css index e07de0b7..23cb71c5 100644 --- a/static/css/layout.css +++ b/static/css/layout.css @@ -371,6 +371,14 @@ display: block; } +/* Elevate the controls stacking context above breadcrumb nav when a dropdown is open, + so the dropdown menu isn't obscured. Only active when dropdown is shown to avoid + the entire controls bar (which can wrap to 2 rows on narrow viewports) covering + the sticky breadcrumb. */ +.controls:has(.dropdown-group.active) { + z-index: var(--z-header); +} + .dropdown-item { display: block; padding: 6px 15px;