Modal: large centered spinner + kebab z-index fix #81
Reference in New Issue
Block a user
Delete Branch "dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Two modal polish fixes:
6c5dbfe— large centered loading spinner in the image viewer (was a tiny size-36 spinner pinned to the top-left corner). Dual concentric rings, accent-colored, centered overlay.1226d3b— the real kebab fix. The tag-chip / suggestion kebab menus were teleporting withzIndex: "auto"on aposition: fixedoverlay, so they rendered behind.fc-viewer(z-index 2000) and got blurred by itsbackdrop-filter: blur(8px). The menu was opening the whole time — just underneath the modal.:z-index="2400"on bothTagChip.vueandSuggestionItem.vuemenus lifts them above it.Why it kept "not landing"
Every prior fix chased a non-existent click/activation bug. Operator's DevTools inspection (
zIndex: "auto", position: "fixed", visibility: "visible", menu visible "blurred behind the sidebar") pinned it as a stacking-context problem, not an event problem.CI green on
1226d3b(run 676).🤖 Generated with Claude Code