other: explicitly style dd text colours (#995)

This commit is contained in:
Clement Tsang 2023-01-20 20:53:27 -05:00 committed by GitHub
parent 490e94c347
commit 635d173f49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,10 +70,10 @@ impl Painter {
let (yes_button, no_button) = match app_state.delete_dialog_state.selected_signal {
KillSignal::Kill(_) => (
Span::styled("Yes", self.colours.currently_selected_text_style),
Span::raw("No"),
Span::styled("No", self.colours.text_style),
),
KillSignal::Cancel => (
Span::raw("Yes"),
Span::styled("Yes", self.colours.text_style),
Span::styled("No", self.colours.currently_selected_text_style),
),
};
@ -323,9 +323,9 @@ impl Painter {
let mut buttons = signal_text
[scroll_offset + 1..min((layout.len()) + scroll_offset, signal_text.len())]
.iter()
.map(|text| Span::raw(*text))
.map(|text| Span::styled(*text, self.colours.text_style))
.collect::<Vec<Span<'_>>>();
buttons.insert(0, Span::raw(signal_text[0]));
buttons.insert(0, Span::styled(signal_text[0], self.colours.text_style));
buttons[selected - scroll_offset] = Span::styled(
signal_text[selected],
self.colours.currently_selected_text_style,