11 merge requests!8635ignore Gruntfile.js in jekyll,!8339Fix broken links to navbar component in docs examples,!7674Clear float on all when navbar is collapsed - v3,!7775added some tests for tooltip title setter,!8157Close Me: Docs "Customize and Download" button fix,!7964commit fixes #7792,!8656Added rel="stylesheet" to CDN-Examples,!8527Inner properties move 1,!8245Interactive color picker - Closed: request against wrong branch,!7865Patch 2,!7651Drop the sizzle dependency to allow smaller builds targeting mobile devices
@@ -2561,7 +2561,7 @@ For example, <code><section></code> should be wrapped as inline.
</div>
<pclass="lead">Toggleable, contextual menu for displaying lists of links. Made interactive with the <ahref="./javascript.html#dropdowns">dropdown JavaScript plugin</a>.</p>
<h3>Example</h3>
<h3id="dropdowns-example">Example</h3>
<p>Wrap the dropdown's trigger and the dropdown menu within <code>.dropdown</code>, or another element that declares <code>position: relative;</code>. Then add the menu's HTML.</p>
<divclass="bs-docs-example">
<divclass="dropdown clearfix">
...
...
@@ -2587,7 +2587,7 @@ For example, <code><section></code> should be wrapped as inline.
</div>
{% endhighlight %}
<h3>Aligning the menus</h3>
<h3id="dropdowns-alignment">Aligning the menus</h3>
<p>Add <code>.pull-right</code> to a <code>.dropdown-menu</code> to right align the dropdown menu.</p>
@@ -2595,7 +2595,7 @@ For example, <code><section></code> should be wrapped as inline.
</ul>
{% endhighlight %}
<h3>Disabled menu options</h3>
<h3id="dropdowns-disabled">Disabled menu options</h3>
<p>Add <code>.disabled</code> to a <code><li></code> in the dropdown to disable the link.</p>
<divclass="bs-docs-example">
<divclass="dropdown clearfix">
...
...
@@ -2614,7 +2614,7 @@ For example, <code><section></code> should be wrapped as inline.
</ul>
{% endhighlight %}
<h3>Sub menus on dropdowns</h3>
<h3id="dropdowns-submenus">Sub menus on dropdowns</h3>
<p>Add an extra level of dropdown menus, appearing on hover like those of OS X, with some simple markup additions. Add <code>.dropdown-submenu</code> to any <code>li</code> in an existing dropdown menu for automatic styling.</p>
<pclass="lead">Group a series of buttons together on a single line with the button group. Add on optional JavaScript radio and checkbox style behavior with <ahref="./javascript.html#buttons">our buttons plugin</a>.</p>
<h3>Single button group</h3>
<h3id="btn-groups-single">Basic button group</h3>
<p>Wrap a series of buttons with <code>.btn</code> in <code>.btn-group</code>.</p>
<divclass="bs-docs-example">
<divclass="btn-group"style="margin: 9px 0 5px;">
...
...
@@ -2731,7 +2731,7 @@ For example, <code><section></code> should be wrapped as inline.
<p>Make a group of buttons stretch at the same size to span the entire width of its parent. <strong>This only works with <code><a></code> elements</strong> as the <code><button></code> doesn't pick up these styles.</p>
<divclass="bs-docs-example">
<divclass="btn-group btn-group-justified">
...
...
@@ -2796,14 +2796,14 @@ For example, <code><section></code> should be wrapped as inline.
<pclass="lead">Use any button to trigger a dropdown menu by placing it within a <code>.btn-group</code> and providing the proper menu markup. Requires the <ahref="./javascript.html#dropdowns">Bootstrap dropdown plugin</a>.</p>
<h3>Single or split button</h3>
<p>Turn a button into dropdown toggle, or add a second button to toggle the dropdown while retaining the primary button action.</p>