diff options
| author | Mark Otto <[email protected]> | 2017-02-12 17:15:16 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-02-12 17:15:16 -0800 |
| commit | d2ddb5518006840a4ee8c299f895b985a2449bb9 (patch) | |
| tree | 8bbd51d423a8399ffb85adc492cfcd31f171d3f4 /docs/components | |
| parent | 371bf955754229184d336ee58239b3f4859ce28c (diff) | |
| download | bootstrap-d2ddb5518006840a4ee8c299f895b985a2449bb9.tar.xz bootstrap-d2ddb5518006840a4ee8c299f895b985a2449bb9.zip | |
use secondary buttons instead of primary ones for a bit better example of styles
Diffstat (limited to 'docs/components')
| -rw-r--r-- | docs/components/buttons.md | 12 |
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> |
