Fix the buttons in IE, make them better in IE7, remove the default padding in Firefox, make all .button <a> and <input> look the same, fixes #21598

git-svn-id: https://develop.svn.wordpress.org/trunk@22289 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2012-10-24 01:33:59 +00:00
parent 108c09fdd3
commit 8564fb5851
2 changed files with 43 additions and 11 deletions

View File

@@ -237,10 +237,34 @@ table.fixed td {
width: 98%;
}
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
padding: 2px 8px;
}
button.button-large,
input[type="reset"].button-large,
input[type="button"].button-large,
input[type="submit"].button-large {
padding: 4px 12px;
}
button.button-small,
input[type="reset"].button-small,
input[type="button"].button-small,
input[type="submit"].button-small {
padding: 0 8px;
}
a.button {
line-height: 1.4em;
margin: 1px;
padding: 2px 6px;
padding: 3px 8px;
}
a.button.button-small {
padding: 1px 8px;
}
#screen-options-wrap {