Files
mattermost/web/sass-files/sass/partials/_forms.scss

52 lines
752 B
SCSS
Raw Normal View History

@charset "UTF-8";
.form-horizontal {
.modal-intro {
margin: -10px 0 30px;
}
.form__label {
text-align: left;
padding-right: 3px;
2015-09-21 11:09:23 +05:00
font-weight: 600;
font-size: 1.1em;
&.light {
2015-09-21 11:09:23 +05:00
font-weight: normal;
color: #999;
font-size: 1.05em;
font-style: italic;
padding-top: 2px;
}
}
.input__help {
2015-10-05 22:32:26 +05:00
color: inherit;
margin: 10px 0 0 10px;
2015-09-22 11:21:28 +05:00
word-break: break-word;
2015-10-05 22:32:26 +05:00
@include opacity(0.8);
2015-09-21 11:09:23 +05:00
&.dark {
2015-10-05 22:32:26 +05:00
@include opacity(1);
2015-09-21 11:09:23 +05:00
}
&.error {
color: #a94442;
}
}
.form-control {
font-weight: normal;
}
.form-group {
margin-bottom: 25px;
&.less {
margin-bottom: 10px;
}
}
}
.help-block {
font-size: 0.95em;
2015-10-14 17:04:13 +05:00
margin: 10px 0 0;
color: #999;
}
.disabled-input {
background-color: #dddddd !important;
2015-11-13 17:15:09 -08:00
}