jiti-meet/css/components/_input-control.scss

29 lines
526 B
SCSS
Raw Permalink Normal View History

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;
border-radius: $borderRadius;
line-height: 32px;
height: 32px;
text-align: left;
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
}