From 650932a8636d2d4b5c8122120b55374c4956e0d3 Mon Sep 17 00:00:00 2001 From: nfebe Date: Sat, 9 May 2026 01:02:24 +0100 Subject: [PATCH] fix: Limit active-icon inversion to legacy nav design On the new tinted active background the inversion flips icons to white on a light surface. Now scoped to the legacy design only. Signed-off-by: nfebe --- src/views/ActivityAppNavigation.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/ActivityAppNavigation.vue b/src/views/ActivityAppNavigation.vue index 6cf5881f4..21ac878a6 100644 --- a/src/views/ActivityAppNavigation.vue +++ b/src/views/ActivityAppNavigation.vue @@ -135,11 +135,11 @@ async function copyRSSLink() { } .app-navigation-entry { - &.active .navigation-icon { + &.app-navigation-entry--legacy.active .navigation-icon { filter: var(--primary-invert-if-dark); } - &:not(.active) .navigation-icon { + &:not(.app-navigation-entry--legacy.active) .navigation-icon { filter: var(--background-invert-if-dark); } }