From a6456a7b4cdc4d4438ea5396e9f9048676b58012 Mon Sep 17 00:00:00 2001 From: Amit Haridas Date: Wed, 4 Mar 2026 15:56:55 +0530 Subject: [PATCH] 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. --- src/styles-modern.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/styles-modern.css b/src/styles-modern.css index f29bb1d..75e02ae 100644 --- a/src/styles-modern.css +++ b/src/styles-modern.css @@ -2224,4 +2224,11 @@ body[class*="dark"] .command-shortcut { overflow: hidden; text-overflow: ellipsis; 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; }