fix(tui): visual issue with modal selected items in system theme

This commit is contained in:
adamdottv 2025-06-26 12:33:06 -05:00
parent 43b467dd12
commit 17c8b914df
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
2 changed files with 3 additions and 3 deletions

View file

@ -49,14 +49,14 @@ func (s sessionItem) Render(selected bool, width int) string {
// Red background for delete confirmation
itemStyle = baseStyle.
Background(t.Error()).
Foreground(t.Background()).
Foreground(t.BackgroundElement()).
Width(width).
PaddingLeft(1)
} else {
// Normal selection
itemStyle = baseStyle.
Background(t.Primary()).
Foreground(t.Background()).
Foreground(t.BackgroundElement()).
Width(width).
PaddingLeft(1)
}

View file

@ -181,7 +181,7 @@ func (s StringItem) Render(selected bool, width int) string {
if selected {
itemStyle = baseStyle.
Background(t.Primary()).
Foreground(t.Background()).
Foreground(t.BackgroundElement()).
Width(width).
PaddingLeft(1)
} else {