2016-11-08 17:46:59 +02:00
|
|
|
.form-control {
|
2017-05-19 10:12:24 -05:00
|
|
|
padding: $formPadding 0;
|
2016-10-11 19:08:24 -05:00
|
|
|
|
2016-10-17 17:29:41 +03:00
|
|
|
&:first-child {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-11 19:08:24 -05:00
|
|
|
&__text {
|
|
|
|
|
margin: 8px 0;
|
|
|
|
|
font-size: 1em
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
font-weight: $labelFontWeight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__em {
|
|
|
|
|
color: $inputControlEmColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
2016-10-25 17:33:51 +03:00
|
|
|
margin-top: 5px;
|
|
|
|
|
margin-bottom: 5px;
|
2016-10-11 19:08:24 -05:00
|
|
|
@include flex();
|
|
|
|
|
|
|
|
|
|
.button-control {
|
2016-10-25 17:24:11 +03:00
|
|
|
margin: 1px 0 1px 10px;
|
2016-10-11 19:08:24 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__right {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
2016-10-18 14:27:16 -05:00
|
|
|
}
|
|
|
|
|
|
2016-10-18 14:30:59 -05:00
|
|
|
/**
|
|
|
|
|
* Set a specific color for read only style.
|
|
|
|
|
*/
|
2016-10-18 14:27:16 -05:00
|
|
|
input:read-only {
|
|
|
|
|
color: $readOnlyInputColor;
|
2016-10-11 19:08:24 -05:00
|
|
|
}
|