Changeset c2a9522 in Klonkt for src/assets/css/style.css


Ignore:
Timestamp:
06/17/2026 01:03:25 AM (3 months ago)
Author:
roboburr <roboburr@…>
Branches:
main
Children:
3068cc0
Parents:
d8693e4
Message:

User-menu dropdown frosted blur now works: masthead backdrop-filter removed

Root cause: the masthead (ancestor) had backdrop-filter:blur(12px), which
blocks the backdrop-filter of child elements below it (an element cannot
blur the page if an ancestor already has a backdrop-filter). The masthead
is nearly opaque anyway → backdrop-filter removed, bg set to 94%. Dropdown
now blur(34px)/60%. CSS cache-buster v5.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/assets/css/style.css

    rd8693e4 rc2a9522  
    310310    border-bottom: 1px solid var(--rule);
    311311    padding: calc(1rem + var(--safe-top)) 0 1rem;
    312     background: color-mix(in srgb, var(--paper) 88%, transparent);
    313     backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
     312    /* GEEN backdrop-filter hier: een voorouder met backdrop-filter blokkeert de
     313       frosted blur van het user-menu-dropdown eronder. Masthead is toch bijna
     314       dekkend, dus solide bg i.p.v. blur. */
     315    background: color-mix(in srgb, var(--paper) 94%, transparent);
    314316    position: sticky; top: 0; z-index: 20;
    315317}
Note: See TracChangeset for help on using the changeset viewer.