From 75fafedfc1f98af8e637136af8c1af8610a6ecbe Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Fri, 18 Jul 2025 15:04:40 -0400 Subject: [PATCH 1/2] chore(sidebar): remove space after periods of ellipsis; make darker --- internal/tui/components/chat/sidebar/sidebar.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/tui/components/chat/sidebar/sidebar.go b/internal/tui/components/chat/sidebar/sidebar.go index ecb88e7d60dbaf09dfc2e88f789ed0057ee756fc..5c1e6ddb09e4069c98116d19906a8a09ca02288c 100644 --- a/internal/tui/components/chat/sidebar/sidebar.go +++ b/internal/tui/components/chat/sidebar/sidebar.go @@ -689,7 +689,7 @@ func (m *sidebarCmp) filesBlock() string { if totalFilesWithChanges > maxFiles { remaining := totalFilesWithChanges - maxFiles fileList = append(fileList, - t.S().Base.Foreground(t.FgMuted).Render(fmt.Sprintf("… and %d more", remaining)), + t.S().Base.Foreground(t.FgSubtle).Render(fmt.Sprintf("…and %d more", remaining)), ) } @@ -777,7 +777,7 @@ func (m *sidebarCmp) lspBlock() string { if len(lsp) > maxLSPs { remaining := len(lsp) - maxLSPs lspList = append(lspList, - t.S().Base.Foreground(t.FgMuted).Render(fmt.Sprintf("… and %d more", remaining)), + t.S().Base.Foreground(t.FgSubtle).Render(fmt.Sprintf("…and %d more", remaining)), ) } @@ -834,7 +834,7 @@ func (m *sidebarCmp) mcpBlock() string { if len(mcps) > maxMCPs { remaining := len(mcps) - maxMCPs mcpList = append(mcpList, - t.S().Base.Foreground(t.FgMuted).Render(fmt.Sprintf("… and %d more", remaining)), + t.S().Base.Foreground(t.FgSubtle).Render(fmt.Sprintf("…and %d more", remaining)), ) } From 6c20460e368f9daff1609f725c3c59ffa48816a5 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Fri, 18 Jul 2025 15:05:24 -0400 Subject: [PATCH 2/2] chore(sidebar): increase logo height breakpoint threshold --- internal/tui/components/chat/sidebar/sidebar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/components/chat/sidebar/sidebar.go b/internal/tui/components/chat/sidebar/sidebar.go index 5c1e6ddb09e4069c98116d19906a8a09ca02288c..a01140417955c519b98b5d7f04773f8cb5b58de5 100644 --- a/internal/tui/components/chat/sidebar/sidebar.go +++ b/internal/tui/components/chat/sidebar/sidebar.go @@ -36,7 +36,7 @@ type FileHistory struct { latestVersion history.File } -const LogoHeightBreakpoint = 40 +const LogoHeightBreakpoint = 30 // Default maximum number of items to show in each section const (