Commit 3144137
authored
fix(view-browser): elevate header so Recent runs dropdown overlays main content (#105)
The Recent-runs dropdown menu was being clipped from below by the
highlighted scan-path `<code>` block in `<main>`. The dropdown's
`z-index: 10` only competed inside its own stacking context — the
parent `.recent-scans-menu` was `position: relative` but `<header>`
had no positioning, so source order made `<main>` paint above the
header by default.
Promote `<header>` to `position: relative; z-index: 100` so it owns a
stacking context above `<main>`. Bump `.recent-scans-list` z-index
from 10 → 1000 inside that context (defensive overkill for any future
header-internal layering needs).
Affects only the browser interface (`argus view --interface=browser`).
Templates unchanged. All 147 browser-viewer tests pass.
Co-authored-by: eFAILution <eFAILution@users.noreply.github.com>1 parent fdd43e6 commit 3144137
1 file changed
Lines changed: 10 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
168 | 168 | | |
169 | 169 | | |
170 | 170 | | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
171 | 177 | | |
172 | 178 | | |
173 | 179 | | |
| |||
265 | 271 | | |
266 | 272 | | |
267 | 273 | | |
268 | | - | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
269 | 278 | | |
270 | 279 | | |
271 | 280 | | |
| |||
0 commit comments