Merge pull request #7502 from jbtbnl/master

Do not override button background image
This commit is contained in:
Jan-Christoph Borchardt 2014-03-03 16:23:19 +01:00
commit 11054c6bb0
1 changed files with 4 additions and 4 deletions

View File

@ -204,18 +204,18 @@ textarea:disabled {
/* Primary action button, use sparingly */
.primary, input[type="submit"].primary, input[type="button"].primary, button.primary, .button.primary {
border: 1px solid #1d2d44;
background: #35537a;
background-color: #35537a;
color: #ddd;
}
.primary:hover, input[type="submit"].primary:hover, input[type="button"].primary:hover, button.primary:hover, .button.primary:hover,
.primary:focus, input[type="submit"].primary:focus, input[type="button"].primary:focus, button.primary:focus, .button.primary:focus {
border: 1px solid #1d2d44;
background: #304d76;
background-color: #304d76;
color: #fff;
}
.primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active {
border: 1px solid #1d2d44;
background: #1d2d44;
background-color: #1d2d44;
color: #bbb;
}
@ -233,7 +233,7 @@ textarea:disabled {
}
input[type="submit"].enabled {
background: #66f866;
background-color: #66f866;
border: 1px solid #5e5;
}