mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5102 - Adjusting whitespace for post textarea * PLT-5099 - Fixing alignment for inputs * PLT-5095 - Pending post controls z-index increase
48 lines
737 B
SCSS
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;
|
|
}
|
|
}
|