Merge pull request #1919 from vector-im/dbkr/deactivate_account

CSS for deactivate account dialog
pull/1929/head
Richard van der Hoff 2016-08-04 10:32:41 +01:00 committed by GitHub
commit a190862ed3
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;
@ -189,6 +193,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;
@ -198,6 +213,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;