Commit 67714d83 authored by Mark Otto's avatar Mark Otto

remove the unused text-indent on dropdown carets

parent 0f238832
...@@ -1750,15 +1750,13 @@ table .span24 { ...@@ -1750,15 +1750,13 @@ table .span24 {
display: inline-block; display: inline-block;
width: 0; width: 0;
height: 0; height: 0;
text-indent: -99999px;
*text-indent: 0;
vertical-align: top; vertical-align: top;
border-left: 4px solid transparent; border-left: 4px solid transparent;
border-right: 4px solid transparent; border-right: 4px solid transparent;
border-top: 4px solid #000000; border-top: 4px solid #000000;
opacity: 0.3; opacity: 0.3;
filter: alpha(opacity=30); filter: alpha(opacity=30);
content: "\2193"; content: "";
} }
.dropdown .caret { .dropdown .caret {
margin-top: 8px; margin-top: 8px;
......
...@@ -20,16 +20,12 @@ ...@@ -20,16 +20,12 @@
display: inline-block; display: inline-block;
width: 0; width: 0;
height: 0; height: 0;
text-indent: -99999px;
// IE7 won't do the border trick if there's a text indent, but it doesn't
// do the content that text-indent is hiding, either, so we're ok.
*text-indent: 0;
vertical-align: top; vertical-align: top;
border-left: 4px solid transparent; border-left: 4px solid transparent;
border-right: 4px solid transparent; border-right: 4px solid transparent;
border-top: 4px solid @black; border-top: 4px solid @black;
.opacity(30); .opacity(30);
content: "\2193"; content: "";
} }
// Place the caret // Place the caret
......
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