Files
jitsi-meet/css/components/_form-control.scss

49 lines
758 B
SCSS
Raw Normal View History

.form-control {
2017-05-19 10:12:24 -05:00
padding: $formPadding 0;
2016-10-17 17:29:41 +03:00
&:first-child {
padding-top: 0;
}
&:last-child {
padding-bottom: 0;
}
&__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;
@include flex();
.button-control {
2016-10-25 17:24:11 +03:00
margin: 1px 0 1px 10px;
}
}
&__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;
}