mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-16 02:08:59 +05:30
Добавил ligh/dark скины для текстовых полей
This commit is contained in:
parent
e7e8eee28c
commit
a6976e2e78
@ -10,10 +10,14 @@ export class Input extends Component {
|
|||||||
static displayName = 'Input';
|
static displayName = 'Input';
|
||||||
|
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
placeholder: PropTypes.shape({
|
placeholder: PropTypes.oneOfType([
|
||||||
|
PropTypes.shape({
|
||||||
id: PropTypes.string
|
id: PropTypes.string
|
||||||
}),
|
}),
|
||||||
|
PropTypes.string
|
||||||
|
]),
|
||||||
icon: PropTypes.string,
|
icon: PropTypes.string,
|
||||||
|
skin: PropTypes.oneOf(['dark', 'light']),
|
||||||
color: PropTypes.oneOf(['green', 'blue', 'red', 'lightViolet', 'darkBlue'])
|
color: PropTypes.oneOf(['green', 'blue', 'red', 'lightViolet', 'darkBlue'])
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -22,7 +26,7 @@ export class Input extends Component {
|
|||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
let { icon, color = 'green' } = this.props;
|
let { icon, color = 'green', skin = 'dark' } = this.props;
|
||||||
|
|
||||||
const props = {
|
const props = {
|
||||||
type: 'text',
|
type: 'text',
|
||||||
@ -37,13 +41,16 @@ export class Input extends Component {
|
|||||||
if (icon) {
|
if (icon) {
|
||||||
baseClass = styles.formIconRow;
|
baseClass = styles.formIconRow;
|
||||||
icon = (
|
icon = (
|
||||||
<div className={classNames(styles.formFieldIcon, icons[icon])} />
|
<div className={classNames(styles.textFieldIcon, icons[icon])} />
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={baseClass}>
|
<div className={baseClass}>
|
||||||
<input ref={this.setEl} className={styles[`${color}TextField`]} {...props} />
|
<input ref={this.setEl} className={classNames(
|
||||||
|
styles[`${skin}TextField`],
|
||||||
|
styles[`${color}TextField`]
|
||||||
|
)} {...props} />
|
||||||
{icon}
|
{icon}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -17,10 +17,14 @@
|
|||||||
&:focus {
|
&:focus {
|
||||||
border-color: $color;
|
border-color: $color;
|
||||||
|
|
||||||
~ .formFieldIcon {
|
~ .textFieldIcon {
|
||||||
background: $color;
|
background: $color;
|
||||||
border-color: $color;
|
border-color: $color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.lightTextField {
|
||||||
|
color: $color;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -50,8 +54,7 @@
|
|||||||
height: 50px;
|
height: 50px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
border: 2px solid lighter($black);
|
border: 2px solid;
|
||||||
background: $black;
|
|
||||||
|
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: #aaa;
|
color: #aaa;
|
||||||
@ -67,7 +70,7 @@
|
|||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
&,
|
&,
|
||||||
~ .formFieldIcon {
|
~ .textFieldIcon {
|
||||||
border-color: #aaa;
|
border-color: #aaa;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -76,14 +79,23 @@
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
outline: none;
|
outline: none;
|
||||||
|
|
||||||
~ .formFieldIcon {
|
~ .textFieldIcon {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.darkTextField {
|
||||||
|
background: $black;
|
||||||
|
border-color: lighter($black);
|
||||||
|
}
|
||||||
|
|
||||||
.formFieldIcon {
|
.lightTextField {
|
||||||
|
background: #fff;
|
||||||
|
border-color: #dcd8cd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.textFieldIcon {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
@ -203,17 +215,17 @@
|
|||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
|
||||||
&,
|
&,
|
||||||
~ .formFieldIcon {
|
~ .textFieldIcon {
|
||||||
border-color: #3e2727;
|
border-color: #3e2727;
|
||||||
}
|
}
|
||||||
|
|
||||||
~ .formFieldIcon {
|
~ .textFieldIcon {
|
||||||
color: #3e2727;
|
color: #3e2727;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
&,
|
&,
|
||||||
~ .formFieldIcon {
|
~ .textFieldIcon {
|
||||||
border-color: $red;
|
border-color: $red;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -221,7 +233,7 @@
|
|||||||
&:focus {
|
&:focus {
|
||||||
border-color: $red;
|
border-color: $red;
|
||||||
|
|
||||||
~ .formFieldIcon {
|
~ .textFieldIcon {
|
||||||
background: $red;
|
background: $red;
|
||||||
border-color: $red;
|
border-color: $red;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
Loading…
Reference in New Issue
Block a user