diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 742eceea93..2ccbc3cf19 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/download.html b/docs/download.html index efee3ce7ac..6aa113001d 100644 --- a/docs/download.html +++ b/docs/download.html @@ -339,6 +339,8 @@

Dropdowns

+ + diff --git a/docs/templates/pages/download.mustache b/docs/templates/pages/download.mustache index c700632aee..87fdc6a383 100644 --- a/docs/templates/pages/download.mustache +++ b/docs/templates/pages/download.mustache @@ -263,6 +263,8 @@

{{_i}}Dropdowns{{/i}}

+ + diff --git a/less/navbar.less b/less/navbar.less index d443a37d05..8eb1332ae6 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -270,7 +270,7 @@ border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #ccc; - border-bottom-color: rgba(0,0,0,.2); + border-bottom-color: @dropdownBorder; position: absolute; top: -7px; left: 9px; @@ -280,7 +280,7 @@ display: inline-block; border-left: 6px solid transparent; border-right: 6px solid transparent; - border-bottom: 6px solid @white; + border-bottom: 6px solid @dropdownBackground; position: absolute; top: -6px; left: 10px; @@ -290,13 +290,13 @@ .navbar-fixed-bottom .dropdown-menu { &:before { border-top: 7px solid #ccc; - border-top-color: rgba(0, 0, 0, 0.2); + border-top-color: @dropdownBorder; border-bottom: 0; bottom: -7px; top: auto; } &:after { - border-top: 6px solid #ffffff; + border-top: 6px solid @dropdownBackground; border-bottom: 0; bottom: -6px; top: auto; diff --git a/less/variables.less b/less/variables.less index c4614dd766..94c3a0667c 100644 --- a/less/variables.less +++ b/less/variables.less @@ -98,6 +98,7 @@ // Dropdowns // ------------------------- @dropdownBackground: @white; +@dropdownBorder: rgba(0,0,0,.2); @dropdownLinkColor: @grayDark; @dropdownLinkColorHover: @white; @dropdownLinkBackgroundHover: @linkColor;