From be0fd83ffb088676eb6e7bfce8f66683f2fbf20f Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 15 May 2018 21:19:24 +1000 Subject: [PATCH] Added input styles, merged with button styles, created different style..styles --- public/input/Input.jsx | 23 ++++- public/page/contact/ContactPage.jsx | 1 + public/styles/elements/inputs.scss | 4 + public/styles/index.scss | 2 +- public/styles/objects/_button.scss | 71 +------------ public/styles/objects/_input.scss | 31 ++---- public/styles/settings/colors.scss | 28 +++--- public/styles/tools/_input.scss | 148 ++++++++++++++++++++++++++++ public/styles/tools/input.scss | 17 ---- 9 files changed, 198 insertions(+), 127 deletions(-) create mode 100644 public/styles/tools/_input.scss delete mode 100644 public/styles/tools/input.scss diff --git a/public/input/Input.jsx b/public/input/Input.jsx index f6f4751..720dba6 100644 --- a/public/input/Input.jsx +++ b/public/input/Input.jsx @@ -39,6 +39,8 @@ export default class Input extends React.Component { let type = "text"; let value; let clazzes = "o-input"; + let innerClazzes = "o-input__inner"; + let style; //Determining if(this.props.type) type = this.props.type; @@ -50,9 +52,24 @@ export default class Input extends React.Component { value = this.props.children; } + //Style + if(this.props.style) { + style = this.props.style; + } else if(this.props.error || this.props.danger) { + style = "danger"; + } else if(this.props.warning) { + style = "warning"; + } else if(this.props.primary) { + style = "primary"; + } + //Classes clazzes += " is-"+type; + if(style) { + clazzes += " o-input--style-"+style; + innerClazzes += " o-input--style-"+style+"__inner"; + } if(this.props.className) clazzes += " " + this.props.className; //Now create the element @@ -62,13 +79,13 @@ export default class Input extends React.Component { if(type == "submit" || type == "reset" || type == "button") { return