diff options
| author | Mark Otto <[email protected]> | 2012-01-05 23:24:19 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-05 23:24:19 -0800 |
| commit | 5cb76037ae70ca26a923750ca9441b04d2fbd6a7 (patch) | |
| tree | ac7ed2db7638c3d6a47d2a209d83ce0df2924884 /docs | |
| parent | 7582520808ad6c3610831652d0d4d33ea4ebf15b (diff) | |
| download | bootstrap-5cb76037ae70ca26a923750ca9441b04d2fbd6a7.tar.xz bootstrap-5cb76037ae70ca26a923750ca9441b04d2fbd6a7.zip | |
fixing conflict in dividers in navbar, fix navbar docs, fix search form in navbar
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/docs.css | 1 | ||||
| -rw-r--r-- | docs/base-css.html | 2 | ||||
| -rw-r--r-- | docs/components.html | 11 |
3 files changed, 6 insertions, 8 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 41c7ae4b6..6cffcbc20 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -41,7 +41,6 @@ body > .navbar-fixed .brand:hover { } .page-header h1 { margin-bottom: 17px; - font-size: 36px; line-height: 1; } diff --git a/docs/base-css.html b/docs/base-css.html index a0c3c4cf1..399a41463 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -1181,7 +1181,7 @@ <div class="row"> <div class="span4"> <h2>Button groups</h2> - <p>Use button groups to join multiple buttons together as one composite component. Button groups can be built with not only <code><a></code> or <code><button></code> elements, but also radios and checkboxes.</p> + <p>Use button groups to join multiple buttons together as one composite component. Just build them with a series of <code><a></code> or <code><button></code> elements. Button groups can also function as radios and checkboxes (see <a href="./javascript.html#buttons">the Javascript docs</a> for that).</p> <p>You can also combine sets of button groups into a toolbar for more complex projects.</p> <p><a class="btn js-btn" href="./javascript.html#buttons">Get the javascript »</a></p> <p class="muted">Heads up: CSS for button groups is in a separate file, button-groups.less.</p> diff --git a/docs/components.html b/docs/components.html index e57d1fd17..5c25a98a4 100644 --- a/docs/components.html +++ b/docs/components.html @@ -267,7 +267,6 @@ <div class="page-header"> <h1>Navbar</h1> </div> - <h2>Fixed navbar</h2> <div class="navbar navbar-static" > <div class="navbar-inner"> <div class="container" style="width: auto;"> @@ -287,11 +286,11 @@ </ul> </li> </ul> - <form class="form-search navbar-search pull-left" action=""> + <form class="navbar-search pull-left" action=""> <input type="text" class="search-query span2" placeholder="Search"> </form> <ul class="nav secondary-nav"> - <li class="divider"></li> + <li class="vertical-divider"></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown</a> <ul class="dropdown-menu"> @@ -308,15 +307,15 @@ <div class="row"> <div class="span4"> - <h4>What is it</h4> + <h3>What is it</h3> <p>Our navbar is a fixed bar that houses a website’s logo or name, primary navigation, and search form.</p> </div> <div class="span4"> - <h4>Customizable</h4> + <h3>Customizable</h3> <p>All elements within, and the entire navbar as well, are optional. You can choose to include a logo/name, nav, search, and a secondary nav—or any combination of that.</p> </div> <div class="span4"> - <h4>Dropdowns included</h4> + <h3>Dropdowns included</h3> <p>As part of the main navigation, we’ve included the ability for you to add dropdowns to your nav. Check out the secondary nav above (right aligned) to see how it’s done. Dropdowns <code><li></code> tags also support <code>.active</code> for showing current page selection.</p> </div> </div> |
