aboutsummaryrefslogtreecommitdiff
path: root/docs/components/buttons.md
diff options
context:
space:
mode:
authorPierre Vanduynslager <[email protected]>2017-04-08 18:43:25 -0400
committerGitHub <[email protected]>2017-04-08 18:43:25 -0400
commitfe72daf2b34263d3cfc9bc77e9998cd22adfa34d (patch)
tree15dc9fc6fcb513362ba112d52ab01b568b423709 /docs/components/buttons.md
parentf5cc59145642d78d7abbdf38fee1905786da5367 (diff)
parentfeb35b94a61c4d6016be8d1773a79a6bbe57d856 (diff)
downloadbootstrap-fe72daf2b34263d3cfc9bc77e9998cd22adfa34d.tar.xz
bootstrap-fe72daf2b34263d3cfc9bc77e9998cd22adfa34d.zip
Merge branch 'v4-dev' into dropdown-keyboard
Diffstat (limited to 'docs/components/buttons.md')
-rw-r--r--docs/components/buttons.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/components/buttons.md b/docs/components/buttons.md
index fdec395de..7f701d90a 100644
--- a/docs/components/buttons.md
+++ b/docs/components/buttons.md
@@ -151,13 +151,13 @@ Note that pre-checked buttons require you to manually add the `.active` class to
{% example html %}
<div class="btn-group" data-toggle="buttons">
- <label class="btn btn-primary active">
+ <label class="btn btn-secondary active">
<input type="checkbox" checked autocomplete="off"> Checkbox 1 (pre-checked)
</label>
- <label class="btn btn-primary">
+ <label class="btn btn-secondary">
<input type="checkbox" autocomplete="off"> Checkbox 2
</label>
- <label class="btn btn-primary">
+ <label class="btn btn-secondary">
<input type="checkbox" autocomplete="off"> Checkbox 3
</label>
</div>
@@ -165,13 +165,13 @@ Note that pre-checked buttons require you to manually add the `.active` class to
{% example html %}
<div class="btn-group" data-toggle="buttons">
- <label class="btn btn-primary active">
+ <label class="btn btn-secondary active">
<input type="radio" name="options" id="option1" autocomplete="off" checked> Radio 1 (preselected)
</label>
- <label class="btn btn-primary">
+ <label class="btn btn-secondary">
<input type="radio" name="options" id="option2" autocomplete="off"> Radio 2
</label>
- <label class="btn btn-primary">
+ <label class="btn btn-secondary">
<input type="radio" name="options" id="option3" autocomplete="off"> Radio 3
</label>
</div>