diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip
index 1b658bf83..bd974a462 100644
Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ
diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css
index 68ccf676f..76e27d672 100644
--- a/docs/assets/css/bootstrap-responsive.css
+++ b/docs/assets/css/bootstrap-responsive.css
@@ -305,12 +305,14 @@
.btn-navbar {
display: block;
}
- .nav-collapse.collapse {
+ .nav-collapse {
overflow: hidden;
height: 0;
}
- .nav-collapse.collapse.in {
- height: auto;
+}
+@media (min-width: 940px) {
+ .nav-collapse.collapse {
+ height: auto !important;
}
}
@media (min-width: 1200px) {
diff --git a/docs/base-css.html b/docs/base-css.html
index 291feb6e1..0406ff229 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -39,7 +39,7 @@
Bootstrap
-
+
-
Overview
diff --git a/docs/components.html b/docs/components.html
index 81c328352..9fc762fc6 100644
--- a/docs/components.html
+++ b/docs/components.html
@@ -39,7 +39,7 @@
Bootstrap
-
+
-
Overview
diff --git a/docs/download.html b/docs/download.html
index 97f1c24c4..832b07ce6 100644
--- a/docs/download.html
+++ b/docs/download.html
@@ -39,7 +39,7 @@
Bootstrap
-
+
-
Overview
diff --git a/docs/examples.html b/docs/examples.html
index b2fd296d1..7d79fc0a0 100644
--- a/docs/examples.html
+++ b/docs/examples.html
@@ -39,7 +39,7 @@
Bootstrap
-
+
-
Overview
diff --git a/docs/index.html b/docs/index.html
index 7d728dc7d..e20d08bcd 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -39,7 +39,7 @@
Bootstrap
-
+
-
Overview
diff --git a/docs/javascript.html b/docs/javascript.html
index 9838aa0d1..eb4a175c3 100644
--- a/docs/javascript.html
+++ b/docs/javascript.html
@@ -39,7 +39,7 @@
Bootstrap
-
+
-
Overview
diff --git a/docs/less.html b/docs/less.html
index 4499c78df..5935c9125 100644
--- a/docs/less.html
+++ b/docs/less.html
@@ -39,7 +39,7 @@
Bootstrap
-
+
-
Overview
@@ -345,13 +345,13 @@
@warningText |
- #c09853 |
- |
+ #f3edd2 |
+ |
@warningBackground |
- #f3edd2 |
- |
+ #c09853 |
+ |
@errorText |
diff --git a/docs/scaffolding.html b/docs/scaffolding.html
index 00aadd472..b9eb399f9 100644
--- a/docs/scaffolding.html
+++ b/docs/scaffolding.html
@@ -39,7 +39,7 @@
Bootstrap
-
+
-
Overview
diff --git a/docs/templates/layout.mustache b/docs/templates/layout.mustache
index b49ec28f6..7c0ab655b 100644
--- a/docs/templates/layout.mustache
+++ b/docs/templates/layout.mustache
@@ -39,7 +39,7 @@
Bootstrap
-
+
-
{{_i}}Overview{{/i}}
diff --git a/docs/upgrading.html b/docs/upgrading.html
index b8e82fe31..d7ad30f56 100644
--- a/docs/upgrading.html
+++ b/docs/upgrading.html
@@ -39,7 +39,7 @@
Bootstrap
-
+
-
Overview
diff --git a/less/responsive.less b/less/responsive.less
index 7ae28b825..a1d4cf2c8 100644
--- a/less/responsive.less
+++ b/less/responsive.less
@@ -22,6 +22,7 @@
}
+
// UP TO LANDSCAPE PHONE
// ---------------------
@@ -103,11 +104,11 @@
}
+
// LANDSCAPE PHONE TO SMALL DESKTOP & PORTRAIT TABLET
// --------------------------------------------------
@media (max-width: 768px) {
-
// GRID & CONTAINERS
// -----------------
// Remove width from containers
@@ -133,6 +134,7 @@
}
+
// PORTRAIT TABLET TO DEFAULT DESKTOP
// ----------------------------------
@@ -225,6 +227,7 @@
}
+
// TABLETS AND BELOW
// -----------------
@media (max-width: 940px) {
@@ -335,17 +338,25 @@
}
// Hide everything in the navbar save .brand and toggle button */
- .nav-collapse.collapse {
+ .nav-collapse {
overflow: hidden;
height: 0;
}
- .nav-collapse.collapse.in {
- height: auto;
- }
-
}
+
+// DEFAULT DESKTOP
+// ---------------
+
+@media (min-width: 940px) {
+ .nav-collapse.collapse {
+ height: auto !important;
+ }
+}
+
+
+
// LARGE DESKTOP & UP
// ------------------