jsketcher/modules/ui/components/controls/InputControl.less
2018-01-17 00:06:32 -08:00

20 lines
No EOL
341 B
Text

@import '../../styles/theme';
.number input {
.colorStyling(@control-color-number, @control-bg);
}
.text input {
.colorStyling(@control-color-text, @control-bg);
}
.colorStyling(@color, @bg) {
color: @color;
background: @bg;
outline: none;
border: @bg 1px solid;
padding: 0.2em;
&:focus {
border: #444 1px solid;
}
}