diff options
| author | Patrick H. Lauke <[email protected]> | 2014-05-01 20:26:42 +0100 |
|---|---|---|
| committer | Patrick H. Lauke <[email protected]> | 2014-05-01 20:26:42 +0100 |
| commit | 463e02511bcf584769052b6fc47c8d9af8901291 (patch) | |
| tree | 04ecaf7aab357c251cb6433808133267ff253852 /docs | |
| parent | 7026c9626aa16a9b9e225f49e9ca95fddd49f829 (diff) | |
| download | bootstrap-463e02511bcf584769052b6fc47c8d9af8901291.tar.xz bootstrap-463e02511bcf584769052b6fc47c8d9af8901291.zip | |
Remove sr-only from components/dropdown entirely
possibly less confusing option, as per discussion, is to always show the
dropdown trigger button (both live and in that code example)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/_includes/components/dropdowns.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/_includes/components/dropdowns.html b/docs/_includes/components/dropdowns.html index f4494b8a3..93da73250 100644 --- a/docs/_includes/components/dropdowns.html +++ b/docs/_includes/components/dropdowns.html @@ -7,8 +7,8 @@ <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> <div class="bs-example"> <div class="dropdown clearfix"> - <button class="btn dropdown-toggle sr-only" type="button" id="dropdownMenu1" data-toggle="dropdown"> - Dropdown trigger + <button class="btn dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown"> + Dropdown <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1"> @@ -23,7 +23,7 @@ {% highlight html %} <div class="dropdown"> <button class="btn dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown"> - Dropdown trigger + Dropdown <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1"> @@ -56,7 +56,7 @@ <p>Add a header to label sections of actions in any dropdown menu.</p> <div class="bs-example"> <div class="dropdown clearfix"> - <button class="btn dropdown-toggle sr-only" type="button" id="dropdownMenu2" data-toggle="dropdown"> + <button class="btn dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown"> Dropdown <span class="caret"></span> </button> @@ -85,7 +85,7 @@ <p>Add <code>.disabled</code> to a <code><li></code> in the dropdown to disable the link.</p> <div class="bs-example"> <div class="dropdown clearfix"> - <button class="btn dropdown-toggle sr-only" type="button" id="dropdownMenu3" data-toggle="dropdown"> + <button class="btn dropdown-toggle" type="button" id="dropdownMenu3" data-toggle="dropdown"> Dropdown <span class="caret"></span> </button> |
