mirror of
https://github.com/zadam/trilium.git
synced 2025-12-16 05:09:54 +01:00
style/status bar/note paths: fix the final path segment color when icons are displayed
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -114,7 +114,7 @@ function NotePath({ currentNotePath, notePathRecord }: { currentNotePath?: strin
|
||||
)), NOTE_PATH_TITLE_SEPARATOR)}
|
||||
|
||||
{icons.map(({ icon, title }) => (
|
||||
<span key={title} class={icon} title={title} />
|
||||
<i key={title} class={icon} title={title} />
|
||||
))}
|
||||
</li>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user