Feat: variables z-index + header au-dessus du menu
- style.css : plage z-index (--z-base, --z-content, --z-menu, --z-header, --z-cursor) - Menu : show() au lieu de showModal() pour sortir du top-layer natif, Escape géré manuellement via keydown, z-index: var(--z-menu), position: fixed - Header : z-index: var(--z-header) sur navbar, logo et toggle (toujours au-dessus du menu) - Cursor/cursor.css : z-index: var(--z-cursor) - Home : z-index: var(--z-content) sur home-text Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
3e9657430f
commit
b7d825b2f0
6 changed files with 98 additions and 75 deletions
|
|
@ -5,7 +5,7 @@
|
|||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
z-index: 99999;
|
||||
z-index: var(--z-cursor);
|
||||
transform: translate(-50%, -50%);
|
||||
transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
|
||||
border-radius: 50%;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue