style/status bar/note paths: highlight the current path

This commit is contained in:
Adorian Doran
2025-12-15 01:12:51 +02:00
parent 3ba7b7d439
commit e9bfacdb7c

View File

@@ -99,8 +99,9 @@
li { li {
--border-radius: 6px; --border-radius: 6px;
position: relative;
background: var(--card-background-color); background: var(--card-background-color);
padding: 8px 20px; padding: 8px 20px 8px 25px;
&:first-child { &:first-child {
border-radius: var(--border-radius) var(--border-radius) 0 0; border-radius: var(--border-radius) var(--border-radius) 0 0;
@@ -114,6 +115,22 @@
margin-top: 2px; margin-top: 2px;
} }
&.path-current::before {
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
content: "\ee8f";
top: 0;
left: 0;
width: 20px;
bottom: 0;
font-family: "boxicons";
font-size: .85em;
color: var(--menu-item-icon-color);
}
span:last-child > span > a { span:last-child > span > a {
color: var(--muted-text-color); color: var(--muted-text-color);
} }