From 5123f7b67889bfed1dc386d720eed62a16b869d9 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Fri, 19 Dec 2025 01:38:34 +0200 Subject: [PATCH] style/note icon: fix broken hover color for monochrome icons --- apps/client/src/widgets/note_icon.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/note_icon.css b/apps/client/src/widgets/note_icon.css index 5277e22f9..e715d5699 100644 --- a/apps/client/src/widgets/note_icon.css +++ b/apps/client/src/widgets/note_icon.css @@ -107,7 +107,7 @@ body.experimental-feature-new-layout { } &:hover:not(.bx-empty:disabled)::after { - background: var(--note-icon-hover-custom-background-color, --note-icon-hover-background-color); + background: var(--note-icon-hover-custom-background-color, var(--note-icon-hover-background-color)); transition: background 200ms ease-out; } }