2016-10-12 00:08:24 +00:00
|
|
|
.input-control {
|
|
|
|
padding: 16px 0;
|
|
|
|
|
2016-10-17 14:29:41 +00:00
|
|
|
&:first-child {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2016-10-12 00:08:24 +00:00
|
|
|
&__text {
|
|
|
|
margin: 8px 0;
|
|
|
|
font-size: 1em
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: $labelFontWeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
|
|
|
margin: 8px 0;
|
|
|
|
|
|
|
|
&::selection {
|
|
|
|
background-color: $defaultDarkSelectionColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__em {
|
|
|
|
color: $inputControlEmColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__hint {
|
|
|
|
margin-top: 0;
|
|
|
|
font-size: $hintFontSize;
|
|
|
|
|
|
|
|
span {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
@include flex();
|
|
|
|
|
|
|
|
.button-control {
|
|
|
|
margin: 9px 0 9px 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__right {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
}
|
2016-10-18 19:27:16 +00:00
|
|
|
}
|
|
|
|
|
2016-10-18 19:30:59 +00:00
|
|
|
/**
|
|
|
|
* Set a specific color for read only style.
|
|
|
|
*/
|
2016-10-18 19:27:16 +00:00
|
|
|
input:read-only {
|
|
|
|
color: $readOnlyInputColor;
|
2016-10-12 00:08:24 +00:00
|
|
|
}
|