From 59a85303ac3d160b814e45c7267e2b142145eb20 Mon Sep 17 00:00:00 2001 From: Jon Haygood Date: Fri, 16 Oct 2015 11:34:05 -0400 Subject: [PATCH] Correct invalid background-color property value What are we going for here? - transparent, inherit, or palette.canvasColor all would make sense to me http://stackoverflow.com/questions/8739665/is-background-colornone-valid-css --- src/raised-button.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raised-button.jsx b/src/raised-button.jsx index a4bfa6f14ba273..899b70ddd4ed71 100644 --- a/src/raised-button.jsx +++ b/src/raised-button.jsx @@ -111,7 +111,7 @@ const RaisedButton = React.createClass({ let amount = (this.props.primary || this.props.secondary) ? 0.4 : 0.08; let styles = { root: { - backgroundColor: 'none', + backgroundColor: 'transparent', display: 'inline-block', minWidth: this.props.fullWidth ? '100%' : this.getThemeButton().minWidth, height: this.getThemeButton().height,