| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
…ount modal Two follow-ups from live feedback: - The X close button was dead. The full-bleed hero (acctBody's first child) paints AFTER the .ovclose sibling and covered it, swallowing the click. Fix: z-index:3 on the classic card's .ovclose (it's absolute inside a position:relative .acctcard) so it sits above the hero, plus pointer-events:none on the decorative hero so it never intercepts. The onclick handler was fine. - Shrink the mark to fit fully inside the hero (place-items:center, 182->150px) so it no longer bleeds off any edge — no top clip, no side/bottom bleed. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
There was a problem hiding this comment.
This PR fixes two UI regressions in the LevelCode AI webview account modal by ensuring the close (“X”) button remains clickable above the decorative hero and by resizing/recentering the chevron hero so it no longer bleeds/clips against the modal edges.
Changes:
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Two live-feedback fixes on the account modal (follows #51/#52).
The X close button was dead — a regression from the full-bleed hero (#51)
.ovclose is a sibling that renders before acctBody, so the full-bleed hero (acctBody's first child) painted over it and swallowed the click — the onclick handler was fine, it just never received the event.
Fix: z-index: 3 on the classic card's .ovclose (it's position: absolute inside a position: relative .acctcard, so the z-index lifts it above the hero), plus pointer-events: none on the decorative hero so it never intercepts clicks meant for the content.
Chevron contained — no bleed on any side
Switched the hero back to place-items: center and shrank the mark 182 → 150px so the whole chevron + portals sit fully inside the hero: no top clip against the rounded corner, no side or bottom bleed.
Verified: scripts parse; webviewCss + full gate green. One file, +6/−5.
Preview: https://claude.ai/code/artifact/0c955831-6ce9-444f-95b2-c211b8706e88
🤖 Generated with Claude Code