Commit 0f238832 authored by Mark Otto's avatar Mark Otto

fix broken dropdowns in ie7 per #2333

parent 2e52946f
......@@ -2730,6 +2730,8 @@ input[type="submit"].btn.btn-small {
*border-left-color: #ffffff;
}
.navbar {
*position: relative;
*z-index: 2;
overflow: visible;
margin-bottom: 18px;
}
......
......@@ -6,6 +6,10 @@
// -------------
.navbar {
// Fix for IE7's bad z-indexing so dropdowns don't appear below content that follows the navbar
*position: relative;
*z-index: 2;
overflow: visible;
margin-bottom: @baseLineHeight;
}
......
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