Fix button CSS issue

This commit is contained in:
rubenwardy 2018-06-02 19:42:46 +01:00
parent 3657316fa2
commit 389258a10c
No known key found for this signature in database
GPG Key ID: A1E29D52FF81513C
1 changed files with 30 additions and 29 deletions

View File

@ -235,10 +235,6 @@ select:not([multiple]) {
/* Alerts */ /* Alerts */
.alert {
padding: 10px;
position: relative;
}
.alert .alert_right, .alert > form { .alert .alert_right, .alert > form {
display: inline-block; display: inline-block;
@ -249,36 +245,41 @@ select:not([multiple]) {
bottom: 0; bottom: 0;
} }
.alert .alert_right:not(.button) { .alert {
padding: 0; padding: 10px;
} position: relative;
.alert .alert_right form { .alert_right:not(.button) {
height: 100%; padding: 0;
} }
.alert form { .alert_right form {
display: inline-block; height: 100%;
margin: 0; }
padding: 0;
}
.alert input { form {
height: 100%; display: inline-block;
} margin: 0;
padding: 0;
}
.alert input, .button { input {
margin: 0; height: 100%;
background: 0; }
border: 0;
border-left: 1px solid rgba(255,255,255,0.12);
border-radius: 0;
vertical-align: middle;
}
.alert input:hover, .button:hover { input, .button {
border: 0; margin: 0;
border-left: 1px solid rgba(255,255,255,0.2); background: 0;
border: 0;
border-left: 1px solid rgba(255,255,255,0.12);
border-radius: 0;
vertical-align: middle;
}
input:hover, .button:hover {
border: 0;
border-left: 1px solid rgba(255,255,255,0.2);
}
} }
#alerts { #alerts {