From 4524b98455d18c6afcd7f7402afa28caa38832a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Herbinet?= <33763786+Jerome-Herbinet@users.noreply.github.com> Date: Mon, 18 May 2026 08:55:57 +0200 Subject: [PATCH] fix(css): fix some icons' color when theme is dark MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> --- css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/style.css b/css/style.css index eea8734..4aaf7c1 100644 --- a/css/style.css +++ b/css/style.css @@ -87,13 +87,13 @@ .icon-sharereview-password { background-image: url(../img/password.svg); - /*filter: var(--background-invert-if-dark);*/ + filter: var(--background-invert-if-dark); background-size: 16px; } .icon-sharereview-calendar { background-image: url(../img/calendar.svg); - /*filter: var(--background-invert-if-dark);*/ + filter: var(--background-invert-if-dark); background-size: 16px; }