change secondary button ui

The secondary button is light grey border and transparent
background that has border and text green on hover.
It brings consistency with item list selection that
has green border on hover.
This commit is contained in:
edouardparis 2024-10-14 11:36:38 +02:00
parent 277945dddf
commit 08854c4940

View File

@ -647,10 +647,10 @@ impl button::StyleSheet for Theme {
Theme::Dark => match style {
Button::Primary => button::Appearance {
shadow_offset: iced::Vector::default(),
background: Some(iced::Color::TRANSPARENT.into()),
text_color: color::GREY_2,
background: Some(color::GREEN.into()),
text_color: color::LIGHT_BLACK,
border: iced::Border {
color: color::GREY_7,
color: color::GREEN,
width: 1.0,
radius: 25.0.into(),
},
@ -750,11 +750,11 @@ impl button::StyleSheet for Theme {
},
Button::Secondary => button::Appearance {
shadow_offset: iced::Vector::default(),
background: Some(color::GREEN.into()),
text_color: color::LIGHT_BLACK,
background: Some(iced::Color::TRANSPARENT.into()),
text_color: color::GREEN,
border: iced::Border {
color: color::TRANSPARENT,
width: 0.0,
color: color::GREEN,
width: 1.0,
radius: 25.0.into(),
},
..button::Appearance::default()