From 2e11681b5290c50656da9b4872e7f07960383f59 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sat, 23 Aug 2025 01:26:21 +0300 Subject: [PATCH] client/settings/disable backdrop effects: add the CSS implementation --- apps/client/src/stylesheets/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css index cb6ddf099..46ad3559d 100644 --- a/apps/client/src/stylesheets/style.css +++ b/apps/client/src/stylesheets/style.css @@ -43,6 +43,13 @@ body#trilium-app.shadows-disabled *::after { box-shadow: none !important; } +body#trilium-app.backdrop-effects-disabled *, +body#trilium-app.backdrop-effects-disabled *::before, +body#trilium-app.backdrop-effects-disabled *::after { + /* Disable backdrop effects */ + backdrop-filter: none !important; +} + .table { --bs-table-bg: transparent !important; }