Fix button in alert borders

This commit is contained in:
rubenwardy 2018-05-30 04:00:27 +01:00
parent 072f189006
commit c523624696
No known key found for this signature in database
GPG Key ID: A1E29D52FF81513C
1 changed files with 6 additions and 2 deletions

View File

@ -264,15 +264,19 @@ select:not([multiple]) {
}
.alert input {
margin: 0;
height: 100%;
}
.alert input, .button {
margin: 0;
background: 0;
border: 0;
border-left: 1px solid rgba(255,255,255,0.12);
border-radius: 0;
vertical-align: middle;
}
.alert input:hover {
.alert input:hover, .button:hover {
border: 0;
border-left: 1px solid rgba(255,255,255,0.2);
}