diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip
index a843dc6398..65e2841e25 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 3410818d2c..790d916227 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -2881,10 +2881,8 @@ input[type="submit"].btn.btn-small {
font-weight: normal;
line-height: 1;
color: #ffffff;
- color: rgba(255, 255, 255, 0.75);
- background: #666;
- background: rgba(255, 255, 255, 0.3);
- border: 1px solid #111;
+ background-color: #626262;
+ border: 1px solid #000000;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
@@ -2894,16 +2892,11 @@ input[type="submit"].btn.btn-small {
-o-transition: none;
transition: none;
}
-.navbar-search .search-query :-moz-placeholder {
- color: #eeeeee;
+.navbar-search .search-query:-moz-placeholder {
+ color: #cccccc;
}
-.navbar-search .search-query ::-webkit-input-placeholder {
- color: #eeeeee;
-}
-.navbar-search .search-query:hover {
- color: #ffffff;
- background-color: #999999;
- background-color: rgba(255, 255, 255, 0.5);
+.navbar-search .search-query::-webkit-input-placeholder {
+ color: #cccccc;
}
.navbar-search .search-query:focus,
.navbar-search .search-query.focused {
diff --git a/docs/download.html b/docs/download.html
index 858becd719..fcb998cfd1 100644
--- a/docs/download.html
+++ b/docs/download.html
@@ -327,6 +327,8 @@
+
+
Dropdowns
diff --git a/docs/templates/pages/download.mustache b/docs/templates/pages/download.mustache
index 7b549619da..1e0ecbda44 100644
--- a/docs/templates/pages/download.mustache
+++ b/docs/templates/pages/download.mustache
@@ -251,6 +251,8 @@
+
+
{{_i}}Dropdowns{{/i}}
diff --git a/less/navbar.less b/less/navbar.less
index 75ad1336de..0a4870ec3c 100644
--- a/less/navbar.less
+++ b/less/navbar.less
@@ -127,23 +127,20 @@
padding: 4px 9px;
#font > .sans-serif(13px, normal, 1);
color: @white;
- color: rgba(255,255,255,.75);
- background: #666;
- background: rgba(255,255,255,.3);
- border: 1px solid #111;
+ background-color: lighten(@navbarBackground, 25%);
+ border: 1px solid darken(@navbarBackground, 15%);
@shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0px rgba(255,255,255,.15);
.box-shadow(@shadow);
.transition(none);
- // Placeholder text gets special styles; can't be bundled together though for some reason
- .placeholder(@grayLighter);
-
- // Hover states
- &:hover {
- color: @white;
- background-color: @grayLight;
- background-color: rgba(255,255,255,.5);
+ // Placeholder text gets special styles; can't be a grouped selector
+ &:-moz-placeholder {
+ color: @navbarSearchPlaceholderColor;
}
+ &::-webkit-input-placeholder {
+ color: @navbarSearchPlaceholderColor;
+ }
+
// Focus states (we use .focused since IE7-8 and down doesn't support :focus)
&:focus,
&.focused {
diff --git a/less/variables.less b/less/variables.less
index f3ba7122ac..6c251da566 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -149,6 +149,8 @@
@navbarLinkBackgroundHover: transparent;
@navbarLinkBackgroundActive: @navbarBackground;
+@navbarSearchPlaceholderColor: #ccc;
+
// Hero unit
// -------------------------