CSS for deactivate account dialog

(Inc some generic CSS for error & danger fields)
pull/1919/head
David Baker 2016-08-03 11:38:19 +01:00
parent 75ea62f351
commit 58b1d62976
2 changed files with 23 additions and 0 deletions

View File

@ -52,6 +52,10 @@ a:visited {
color: #76cfa6; color: #76cfa6;
} }
input[type=text].error, input[type=password].error {
border: 1px solid red;
}
input[type=text]:focus, textarea:focus { input[type=text]:focus, textarea:focus {
border: 1px solid #76CFA6; border: 1px solid #76CFA6;
outline: none; outline: none;
@ -233,6 +237,17 @@ input[type=text]:focus, textarea:focus {
background-color: #76cfa6; background-color: #76cfa6;
} }
.mx_Dialog button.danger, .mx_Dialog input[type="submit"].danger {
background-color: #ff0064;
border: solid 1px #ff0064;
}
.mx_Dialog button:disabled, .mx_Dialog input[type="submit"]:disabled {
background-color: #777777;
border: solid 1px #777777;
opacity: 0.7;
}
.mx_Dialog_title { .mx_Dialog_title {
min-height: 16px; min-height: 16px;
padding-top: 40px; padding-top: 40px;
@ -242,6 +257,10 @@ input[type=text]:focus, textarea:focus {
color: #454545; color: #454545;
} }
.mx_Dialog_title.danger {
color: #ff0064;
}
.mx_TextInputDialog_label { .mx_TextInputDialog_label {
text-align: left; text-align: left;
padding-bottom: 12px; padding-bottom: 12px;

View File

@ -94,6 +94,10 @@ limitations under the License.
cursor: pointer; cursor: pointer;
} }
.mx_UserSettings_button.danger {
background-color: #ff0064;
}
.mx_UserSettings_section { .mx_UserSettings_section {
margin-left: 63px; margin-left: 63px;
margin-top: 28px; margin-top: 28px;