CSS for greying out login form

pull/5197/head
David Baker 2017-10-11 14:06:12 +01:00
parent e39730d52e
commit 27a81c25d2
2 changed files with 12 additions and 0 deletions

View File

@ -67,6 +67,10 @@ limitations under the License.
margin-bottom: 14px; margin-bottom: 14px;
} }
.mx_Login_field_disabled {
opacity: 0.3;
}
.mx_Login_fieldLabel { .mx_Login_fieldLabel {
margin-top: -10px; margin-top: -10px;
margin-left: 8px; margin-left: 8px;
@ -87,6 +91,10 @@ limitations under the License.
color: $accent-fg-color; color: $accent-fg-color;
} }
.mx_Login_submit:disabled {
opacity: 0.3;
}
.mx_Login_label { .mx_Login_label {
font-size: 13px; font-size: 13px;
opacity: 0.8; opacity: 0.8;

View File

@ -18,6 +18,10 @@ limitations under the License.
position: relative; position: relative;
} }
.mx_Dropdown_disabled {
opacity: 0.3;
}
.mx_Dropdown_input { .mx_Dropdown_input {
position: relative; position: relative;
border-radius: 3px; border-radius: 3px;