Styling inputs
This commit is contained in:
@ -60,14 +60,18 @@ export default class Input extends React.Component {
|
|||||||
|
|
||||||
//First we need to switch things like submit and reset
|
//First we need to switch things like submit and reset
|
||||||
if(type == "submit" || type == "reset" || type == "button") {
|
if(type == "submit" || type == "reset" || type == "button") {
|
||||||
element = <Button {...this.props} />;
|
return <Button {...this.props} />;
|
||||||
} else if(type == "textarea") {
|
} else if(type == "textarea") {
|
||||||
element = <textarea {...this.props} className={clazzes}>{ value }</textarea>
|
element = <textarea {...this.props} className={clazzes}>{ value }</textarea>
|
||||||
} else {
|
} else {
|
||||||
element = <ElementType {...this.props} type={type} className={clazzes} />
|
element = <ElementType {...this.props} type={type} className={clazzes} />
|
||||||
}
|
}
|
||||||
|
|
||||||
return element;
|
return (
|
||||||
|
<div class="o-input-wrapper">
|
||||||
|
{ element }
|
||||||
|
</div>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ import React from 'react';
|
|||||||
|
|
||||||
export default function(props) {
|
export default function(props) {
|
||||||
return (
|
return (
|
||||||
<div {...props} class={"o-btn-group" + (props.className ? " "+props.className : "")}>
|
<div {...props} className={"o-btn-group" + (props.className ? " "+props.className : "")}>
|
||||||
{props.children}
|
{props.children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -78,7 +78,7 @@ class ContactPage extends React.Component {
|
|||||||
</InputGroup>
|
</InputGroup>
|
||||||
|
|
||||||
<ButtonGroup>
|
<ButtonGroup>
|
||||||
<Input type="submit" value={ Language.get("pages.contact.send") } primary />
|
<Input type="submit" value={ Language.get("pages.contact.send") } primary="true" />
|
||||||
<Input type="reset" value={ Language.get("pages.contact.reset") } />
|
<Input type="reset" value={ Language.get("pages.contact.reset") } />
|
||||||
</ButtonGroup>
|
</ButtonGroup>
|
||||||
</Form>
|
</Form>
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
|
|
||||||
//Tools
|
//Tools
|
||||||
@import './tools/flex.scss';
|
@import './tools/flex.scss';
|
||||||
|
@import './tools/input.scss';
|
||||||
@import './tools/list.scss';
|
@import './tools/list.scss';
|
||||||
@import './tools/prefix.scss';
|
@import './tools/prefix.scss';
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ $o-btn--padding: 1em;//Base Padding size.
|
|||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding-bottom: 0.5em;
|
padding-bottom: $o-btn--padding / 2;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
|
@ -10,14 +10,32 @@
|
|||||||
*/
|
*/
|
||||||
$o-input--padding: 1em;
|
$o-input--padding: 1em;
|
||||||
|
|
||||||
|
.o-input-wrapper {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
border: $s-color--input-default__border;
|
||||||
|
border-radius: $o-input--padding / 3;
|
||||||
|
padding-bottom: $o-input--padding / 2;
|
||||||
|
}
|
||||||
|
|
||||||
.o-input {
|
.o-input {
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: $o-input--padding / 2;
|
padding: $o-input--padding / 2;
|
||||||
margin: 0;//For some reason textareas have a 1px margin
|
margin: 0;//For some reason textareas have a 1px margin
|
||||||
|
|
||||||
border: $s-color--input-default__border;
|
border-bottom: $s-color--input-default__border;
|
||||||
border-radius: $o-input--padding / 3;
|
border-radius: $o-input--padding / 3;
|
||||||
|
|
||||||
|
//Textarea
|
||||||
|
max-width: 100%;
|
||||||
|
min-width: 100%;
|
||||||
|
|
||||||
|
//Placeholder
|
||||||
|
@include t-placeholder() {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
17
public/styles/tools/input.scss
Normal file
17
public/styles/tools/input.scss
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
/*
|
||||||
|
* Input
|
||||||
|
* Tools for various input types
|
||||||
|
*
|
||||||
|
* Dependencies:
|
||||||
|
* styles/settings/colors.scss
|
||||||
|
*
|
||||||
|
* Version:
|
||||||
|
* 1.0.0 - 2018/02/07
|
||||||
|
*/
|
||||||
|
@mixin t-placeholder() {
|
||||||
|
&:moz-placeholder {@content;}
|
||||||
|
&:ms-input-placeholder {@content;}
|
||||||
|
&::placeholder {@content;}
|
||||||
|
&::moz-placeholder {@content;}
|
||||||
|
&::-webkit-input-placeholder {@content;}
|
||||||
|
}
|
Reference in New Issue
Block a user