fix(tui): visual issue with modal selected items in system theme
parent
346b49219d
commit
ac39308dad
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue