Do not override button background image

This commit is contained in:
jbtbnl 2014-03-03 14:07:44 +01:00
parent 84a87b96af
commit e603164517
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;
}