diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 9315234388..5c1286f8a1 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 6754007bdf..e52ab7b00b 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -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; } diff --git a/less/navbar.less b/less/navbar.less index 8d0822473e..d443a37d05 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -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; }