Remove Builder abstractions for gradients
This commit is contained in:
parent
6551a0b2ab
commit
4c1a082f04
15 changed files with 167 additions and 213 deletions
|
|
@ -371,7 +371,7 @@ impl container::StyleSheet for Theme {
|
|||
|
||||
container::Appearance {
|
||||
text_color: None,
|
||||
background: palette.background.weak.color.into(),
|
||||
background: Some(palette.background.weak.color.into()),
|
||||
border_radius: 2.0,
|
||||
border_width: 0.0,
|
||||
border_color: Color::TRANSPARENT,
|
||||
|
|
@ -896,7 +896,7 @@ impl scrollable::StyleSheet for Theme {
|
|||
let palette = self.extended_palette();
|
||||
|
||||
scrollable::Scrollbar {
|
||||
background: palette.background.weak.color.into(),
|
||||
background: Some(palette.background.weak.color.into()),
|
||||
border_radius: 2.0,
|
||||
border_width: 0.0,
|
||||
border_color: Color::TRANSPARENT,
|
||||
|
|
@ -923,7 +923,7 @@ impl scrollable::StyleSheet for Theme {
|
|||
let palette = self.extended_palette();
|
||||
|
||||
scrollable::Scrollbar {
|
||||
background: palette.background.weak.color.into(),
|
||||
background: Some(palette.background.weak.color.into()),
|
||||
border_radius: 2.0,
|
||||
border_width: 0.0,
|
||||
border_color: Color::TRANSPARENT,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue