2016-11-09 15:10:59 +00:00
|
|
|
.input-control {
|
2016-11-09 16:46:58 +00:00
|
|
|
@include transition(all .2s ease-in);
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 5px 7px;
|
|
|
|
color: $inputColor;
|
|
|
|
border-radius: $borderRadius;
|
|
|
|
line-height: 32px;
|
|
|
|
height: 32px;
|
|
|
|
text-align: left;
|
|
|
|
border:1px solid $inputBorderColor;
|
|
|
|
background-color: $inputBackground;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::selection {
|
|
|
|
background-color: $defaultDarkSelectionColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.error {
|
|
|
|
color: $errorColor;
|
|
|
|
border-color: $errorColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include placeholder {
|
|
|
|
color: $placeHolderColor;
|
2016-11-09 15:10:59 +00:00
|
|
|
}
|