fix(ui): raise MI search z-index and unclip header overflow

Search dropdown was rendering behind overlays and getting clipped by
the header's overflow:hidden. Bump z-index to 10001 and set overflow
to visible.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-24 19:02:04 -07:00
parent 5915daf8a0
commit 3596bb9d7c
2 changed files with 2 additions and 2 deletions

View File

@ -662,7 +662,7 @@ export class RStackMi extends HTMLElement {
const STYLES = ` const STYLES = `
:host { display: contents; } :host { display: contents; }
.mi { position: relative; flex: 1; max-width: 480px; min-width: 0; z-index: 300; } .mi { position: relative; flex: 1; max-width: 480px; min-width: 0; z-index: 10001; }
/* ── Search bar in header ── */ /* ── Search bar in header ── */
.mi-bar { .mi-bar {

View File

@ -51,7 +51,7 @@ body {
justify-content: center; justify-content: center;
padding: 0 16px; padding: 0 16px;
min-width: 0; min-width: 0;
overflow: hidden; overflow: visible;
} }
.rstack-header__right { .rstack-header__right {