diff --git a/pkg/tui/components/scrollbar/scrollbar.go b/pkg/tui/components/scrollbar/scrollbar.go index 1eaac1458..8ab9e0e3f 100644 --- a/pkg/tui/components/scrollbar/scrollbar.go +++ b/pkg/tui/components/scrollbar/scrollbar.go @@ -34,8 +34,8 @@ type Model struct { func New() *Model { return &Model{ width: Width, - trackChar: "⎪", - thumbChar: "⎪", + trackChar: "│", + thumbChar: "│", } } diff --git a/pkg/tui/styles/styles.go b/pkg/tui/styles/styles.go index 51f653547..b9f5aba80 100644 --- a/pkg/tui/styles/styles.go +++ b/pkg/tui/styles/styles.go @@ -404,8 +404,8 @@ var ( // Scrollbar var ( TrackStyle = lipgloss.NewStyle().Foreground(BorderSecondary) - ThumbStyle = lipgloss.NewStyle().Foreground(Info).Background(BackgroundAlt).Bold(true) - ThumbActiveStyle = lipgloss.NewStyle().Foreground(White).Background(BackgroundAlt).Bold(true) + ThumbStyle = lipgloss.NewStyle().Foreground(Info).Background(BackgroundAlt) + ThumbActiveStyle = lipgloss.NewStyle().Foreground(White).Background(BackgroundAlt) ) // Resize Handle Style diff --git a/pkg/tui/styles/theme.go b/pkg/tui/styles/theme.go index 99b8e1811..30a1cd55c 100644 --- a/pkg/tui/styles/theme.go +++ b/pkg/tui/styles/theme.go @@ -1161,8 +1161,8 @@ func rebuildStyles() { // Scrollbar styles TrackStyle = lipgloss.NewStyle().Foreground(BorderSecondary) - ThumbStyle = lipgloss.NewStyle().Foreground(Info).Background(BackgroundAlt).Bold(true) - ThumbActiveStyle = lipgloss.NewStyle().Foreground(White).Background(BackgroundAlt).Bold(true) + ThumbStyle = lipgloss.NewStyle().Foreground(Info).Background(BackgroundAlt) + ThumbActiveStyle = lipgloss.NewStyle().Foreground(White).Background(BackgroundAlt) // Resize handle styles ResizeHandleStyle = BaseStyle.Foreground(BorderSecondary)