From 76510b5d3f27b8e74d1c0d1c9197f0b71dc5301a Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Mon, 10 Jul 2023 15:24:17 +0800 Subject: [PATCH] Improve container Wrapper styling --- src/gui/style.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/style.rs b/src/gui/style.rs index 02595535..75f8cb70 100644 --- a/src/gui/style.rs +++ b/src/gui/style.rs @@ -257,6 +257,7 @@ impl container::StyleSheet for Theme { _ => self.background.into(), }, border_color: match style { + Self::Style::Wrapper => Color::TRANSPARENT, Self::Style::GameListEntry | Self::Style::Notification => self.field, Self::Style::ChangeBadge(change) => match change { ScanChange::New => self.added, @@ -288,6 +289,7 @@ impl container::StyleSheet for Theme { _ => 0.0, }, text_color: match style { + Self::Style::Wrapper => None, Self::Style::DisabledBackup => Some(self.text_inverted), Self::Style::ChangeBadge(change) => match change { ScanChange::New => Some(self.added),