feat: add breadcrumb bar showing current file path

Display the active file path below the toolbar with dark theme
support and monospace font for path readability.
This commit is contained in:
2026-03-04 15:56:55 +05:30
parent 3908df8b1d
commit a6456a7b4c
+7
View File
@@ -2224,4 +2224,11 @@ body[class*="dark"] .command-shortcut {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
flex-shrink: 0; flex-shrink: 0;
background: var(--gray-50, #f9fafb);
font-family: 'JetBrains Mono', monospace;
}
body[class*="dark"] .breadcrumb-bar {
background: #1a1a1a;
color: #888;
border-color: #333;
} }