From 944f9c886c0c1771cf32801fbbe7a0f50fc514ec Mon Sep 17 00:00:00 2001 From: polybjorn Date: Mon, 4 May 2026 08:07:32 +0000 Subject: [PATCH] fix(themes): remove dropdown-close backdrop in Nord wide view (#8781) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Nord was the only shipped theme applying a backdrop-filter to .dropdown-close outside the narrow-viewport @media block, dimming the page behind any open dropdown (Settings, mark-read menu, etc.) in wide view. Other themes leave the click-catcher transparent in wide view and only apply a scrim in narrow view, where it doubles as the visual backdrop for the slide-out aside. The wide-view darken in Nord read as inconsistent against its own narrow-view treatment (grayscale + blur) and against every other theme. Click-outside-to-close still works; only the visual backdrop is removed. Co-authored-by: Bjørn A. Andersen --- p/themes/Nord/nord.css | 4 ---- p/themes/Nord/nord.rtl.css | 4 ---- 2 files changed, 8 deletions(-) diff --git a/p/themes/Nord/nord.css b/p/themes/Nord/nord.css index 0571bccdc..98042191a 100644 --- a/p/themes/Nord/nord.css +++ b/p/themes/Nord/nord.css @@ -415,10 +415,6 @@ svg:hover { text-decoration: none; } -.dropdown-close { - backdrop-filter: grayscale(25%) brightness(0.9); -} - .dropdown-close a:hover { background: none; } diff --git a/p/themes/Nord/nord.rtl.css b/p/themes/Nord/nord.rtl.css index 1fe06a375..8b738b6dc 100644 --- a/p/themes/Nord/nord.rtl.css +++ b/p/themes/Nord/nord.rtl.css @@ -415,10 +415,6 @@ svg:hover { text-decoration: none; } -.dropdown-close { - backdrop-filter: grayscale(25%) brightness(0.9); -} - .dropdown-close a:hover { background: none; }