fix(layout): ensure refresh split-button dropdown renders above breadcrumb nav

This commit is contained in:
Will Miao
2026-05-03 18:14:54 +08:00
parent 0cc640cfaa
commit e23d803ecf

View File

@@ -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;