mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 00:45:08 +01:00
20 lines
No EOL
341 B
Text
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;
|
|
}
|
|
} |