From a551dfe4d62c16192b4377d3732c606614369221 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 15 Dec 2025 01:18:35 +0200 Subject: [PATCH] style/status bar/note paths: fix the final path segment color when icons are displayed --- apps/client/src/widgets/layout/StatusBar.css | 2 +- apps/client/src/widgets/ribbon/NotePathsTab.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/layout/StatusBar.css b/apps/client/src/widgets/layout/StatusBar.css index 93a035c4fa..bc37b65422 100644 --- a/apps/client/src/widgets/layout/StatusBar.css +++ b/apps/client/src/widgets/layout/StatusBar.css @@ -131,7 +131,7 @@ color: var(--menu-item-icon-color); } - span:last-child > span > a { + span:last-of-type > span > a { color: var(--muted-text-color); } } diff --git a/apps/client/src/widgets/ribbon/NotePathsTab.tsx b/apps/client/src/widgets/ribbon/NotePathsTab.tsx index 18d5086d61..090be0e663 100644 --- a/apps/client/src/widgets/ribbon/NotePathsTab.tsx +++ b/apps/client/src/widgets/ribbon/NotePathsTab.tsx @@ -114,7 +114,7 @@ function NotePath({ currentNotePath, notePathRecord }: { currentNotePath?: strin )), NOTE_PATH_TITLE_SEPARATOR)} {icons.map(({ icon, title }) => ( - + ))} );