Files
mattermost/webapp/sass/components/_inputs.scss
Asaad Mahmood be5aa0398b Ui fixes (#4954)
* PLT-5102 - Adjusting whitespace for post textarea

* PLT-5099 - Fixing alignment for inputs

* PLT-5095 - Pending post controls z-index increase
2017-01-04 11:29:55 -05:00

48 lines
737 B
SCSS

@charset 'UTF-8';
.form-control {
@include border-radius($border-rad);
&:focus {
@include box-shadow(none);
}
&.no-padding {
line-height: 32px;
padding: 0;
}
&.no-resize {
resize: none;
}
&[disabled],
[readonly] {
@include alpha-property(background, $white, .1);
color: inherit;
cursor: auto;
}
}
fieldset {
&[disabled] {
.form-control {
@include alpha-property(background, $white, .1);
color: inherit;
cursor: auto;
}
}
}
.admin-textarea {
resize: none;
}
input {
&[type='radio'],
&[type='checkbox'] {
font-size: 14px;
margin-top: 3px;
}
}