Commit 9b9e1d30 authored by Mark Otto's avatar Mark Otto

fix that jank hack

parent 7f32d15f
...@@ -565,7 +565,9 @@ input[type="image"], input[type="checkbox"], input[type="radio"] { ...@@ -565,7 +565,9 @@ input[type="image"], input[type="checkbox"], input[type="radio"] {
line-height: normal; line-height: normal;
border: 0; border: 0;
cursor: pointer; cursor: pointer;
border-radius: 0 \0/; -webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
} }
input[type="file"] { input[type="file"] {
padding: initial; padding: initial;
......
...@@ -86,7 +86,7 @@ input[type="radio"] { ...@@ -86,7 +86,7 @@ input[type="radio"] {
line-height: normal; line-height: normal;
border: 0; border: 0;
cursor: pointer; cursor: pointer;
border-radius: 0 e("\0/"); // Nuke border-radius for IE9 only .border-radius(0);
} }
// Reset the file input to browser defaults // Reset the file input to browser defaults
......
Markdown is supported
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