diff options
| author | Mark Otto <[email protected]> | 2015-04-16 18:54:17 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-04-16 18:54:17 -0700 |
| commit | 0ab1576ae227663d9e97040a486e1ca2818bab1e (patch) | |
| tree | d852285be3a39c9cc73d17bea3602a0b62c0faad /docs/components/button-dropdown.md | |
| parent | 605990400eb470e50bcdfd3643b8cc10f2684836 (diff) | |
| parent | 06c2862d257935871fc846670148c8767e2f6a82 (diff) | |
| download | bootstrap-0ab1576ae227663d9e97040a486e1ca2818bab1e.tar.xz bootstrap-0ab1576ae227663d9e97040a486e1ca2818bab1e.zip | |
Merge branch 'v4' of https://github.com/twbs/derpstrap into v4
Diffstat (limited to 'docs/components/button-dropdown.md')
| -rw-r--r-- | docs/components/button-dropdown.md | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/docs/components/button-dropdown.md b/docs/components/button-dropdown.md index fdcff0a99..1e44d7853 100644 --- a/docs/components/button-dropdown.md +++ b/docs/components/button-dropdown.md @@ -5,16 +5,17 @@ title: Button dropdown Use any button to trigger a dropdown menu by placing it within a `.btn-group` and providing the proper dropdown menu markup. -<div class="bs-callout bs-callout-danger"> - <h4>Plugin dependency</h4> - <p>Button dropdowns require the <a href="../javascript/#dropdowns">dropdown plugin</a> to be included in your version of Bootstrap.</p> -</div> +{% callout danger %} +#### Plugin dependency + +Button dropdowns require the [dropdown plugin](../javascript/#dropdowns) to be included in your version of Bootstrap. +{% endcallout %} ### Single button dropdowns Turn a button into a dropdown toggle with some basic markup changes. -<div class="bs-example"> +<div class="bd-example"> <div class="btn-group"> <button type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown" aria-expanded="false">Default</button> <ul class="dropdown-menu" role="menu"> @@ -97,7 +98,7 @@ Turn a button into a dropdown toggle with some basic markup changes. Similarly, create split button dropdowns with the same markup changes, only with a separate button. -<div class="bs-example"> +<div class="bd-example"> <div class="btn-group"> <button type="button" class="btn btn-secondary">Default</button> <button type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> @@ -199,7 +200,7 @@ Similarly, create split button dropdowns with the same markup changes, only with Button dropdowns work with buttons of all sizes. -<div class="bs-example"> +<div class="bd-example"> <div class="btn-toolbar" role="toolbar"> <div class="btn-group"> <button class="btn btn-secondary btn-lg dropdown-toggle" type="button" data-toggle="dropdown" aria-expanded="false"> @@ -280,7 +281,7 @@ Button dropdowns work with buttons of all sizes. Trigger dropdown menus above elements by adding `.dropup` to the parent. -<div class="bs-example"> +<div class="bd-example"> <div class="btn-toolbar" role="toolbar"> <div class="btn-group dropup"> <button type="button" class="btn btn-secondary">Dropup</button> |
