Commit d0526e31 authored by Mark Otto's avatar Mark Otto

remove padding on .search-query for IE7-8 since it doesn't pick up large border-radius

parent c0f28d81
...@@ -1085,6 +1085,10 @@ select:focus:required:invalid:focus { ...@@ -1085,6 +1085,10 @@ select:focus:required:invalid:focus {
.search-query { .search-query {
padding-left: 14px; padding-left: 14px;
padding-right: 14px; padding-right: 14px;
padding-left: 4px \9;
/* IE7-8 doesn't have border-radius, so don't indent the padding */
padding-right: 4px \9;
margin-bottom: 0; margin-bottom: 0;
-webkit-border-radius: 14px; -webkit-border-radius: 14px;
-moz-border-radius: 14px; -moz-border-radius: 14px;
......
...@@ -450,6 +450,8 @@ select:focus:required:invalid { ...@@ -450,6 +450,8 @@ select:focus:required:invalid {
.search-query { .search-query {
padding-left: 14px; padding-left: 14px;
padding-right: 14px; padding-right: 14px;
padding-left: 4px \9; /* IE7-8 doesn't have border-radius, so don't indent the padding */
padding-right: 4px \9;
margin-bottom: 0; // remove the default margin on all inputs margin-bottom: 0; // remove the default margin on all inputs
.border-radius(14px); .border-radius(14px);
} }
......
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