diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 79dd29aee..04d93735d 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/components.html b/docs/components.html index 41f5e5819..b7e60df87 100644 --- a/docs/components.html +++ b/docs/components.html @@ -830,8 +830,14 @@ Project name </a> -

Search form

-

Search forms receive custom styles in the navbar with the .navbar-search class. Include .pull-left or .pull-right on the form to align it.

+

Forms in navbar

+

To properly style and position a form within the navbar, add the appropriate classes as shown below. For a default form, include .navbar-form and either .pull-left or .pull-right to properly align it.

+
+<form class="navbar-form pull-left">
+  <input type="text" class="span2">
+</form>
+
+

For a more customized search form, add the .navbar-search class to receive specialized styles in the navbar.

 <form class="navbar-search pull-left">
   <input type="text" class="search-query" placeholder="Search">
diff --git a/docs/templates/pages/components.mustache b/docs/templates/pages/components.mustache
index a3df92487..39c9020d2 100644
--- a/docs/templates/pages/components.mustache
+++ b/docs/templates/pages/components.mustache
@@ -754,8 +754,14 @@
   {{_i}}Project name{{/i}}
 </a>
 
-

{{_i}}Search form{{/i}}

-

{{_i}}Search forms receive custom styles in the navbar with the .navbar-search class. Include .pull-left or .pull-right on the form to align it.{{/i}}

+

{{_i}}Forms in navbar{{/i}}

+

{{_i}}To properly style and position a form within the navbar, add the appropriate classes as shown below. For a default form, include .navbar-form and either .pull-left or .pull-right to properly align it.{{/i}}

+
+<form class="navbar-form pull-left">
+  <input type="text" class="span2">
+</form>
+
+

{{_i}}For a more customized search form, add the .navbar-search class to receive specialized styles in the navbar.{{/i}}

 <form class="navbar-search pull-left">
   <input type="text" class="search-query" placeholder="{{_i}}Search{{/i}}">