Commit 70d95b1b authored by Pete Hopkins's avatar Pete Hopkins
Browse files

Moves IE7-specific button padding to only apply to form controls

parent 3b3dbd72
Showing with 2 additions and 1 deletion
+2 -1
......@@ -67,7 +67,6 @@
// Button Base
display: inline-block;
padding: 4px 10px 4px;
*padding: 2px 10px;
// IE7 likes to collapse the whitespace before the button, so bring it back...
*margin-left: 4px;
&:first-child {
......@@ -151,6 +150,8 @@
// Help Firefox not be a jerk about adding extra padding to buttons
button.btn,
input[type=submit].btn {
// IE7 has some default padding on button controls
*padding: 2px 10px;
&::-moz-focus-inner {
padding: 0;
border: 0;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment