From 38a35ab639de3cb14cafa2cecef7ecf56d29b631 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 6 Feb 2020 01:25:03 +0100 Subject: Fix `Button` styling in `iced_web` --- web/src/widget/button.rs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'web/src/widget') diff --git a/web/src/widget/button.rs b/web/src/widget/button.rs index e47b971d..3a5afe60 100644 --- a/web/src/widget/button.rs +++ b/web/src/widget/button.rs @@ -144,9 +144,6 @@ where // TODO: State-based styling let style = self.style.active(); - let width = css::length(self.width); - let color = css::color(style.text_color); - let padding_class = style_sheet.insert(bump, css::Rule::Padding(self.padding)); @@ -166,12 +163,12 @@ where "style", bumpalo::format!( in bump, - "background: {}; border-radius: {}px; width:{}; min-width: {}px; color: {}", + "background: {}; border-radius: {}px; width:{}; min-width: {}; color: {}", background, style.border_radius, - width, - self.min_width, - color + css::length(self.width), + css::min_length(self.min_width), + css::color(style.text_color) ) .into_bump_str(), ) -- cgit