aboutsummaryrefslogtreecommitdiff
path: root/docs/components.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-05-10 16:35:25 -0700
committerMark Otto <[email protected]>2013-05-10 16:35:25 -0700
commit8051695c87d7420862307090ac49ca2d1e74b40b (patch)
tree2256f1e5614457e850068818d734249a72ee7729 /docs/components.html
parent76ecfdfdc1ef06997eafdeef68d7a9a945614af3 (diff)
parent579d566299c82fe91e5202b30ec2b2b062e0d902 (diff)
downloadbootstrap-8051695c87d7420862307090ac49ca2d1e74b40b.tar.xz
bootstrap-8051695c87d7420862307090ac49ca2d1e74b40b.zip
Merge pull request #7838 from blakeembrey/btn-group-radius
Remove the overrides and resets from button groups
Diffstat (limited to 'docs/components.html')
-rw-r--r--docs/components.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/components.html b/docs/components.html
index 5dc458d43..01a580bf9 100644
--- a/docs/components.html
+++ b/docs/components.html
@@ -552,7 +552,7 @@ lead: "Dozens of reusable components built to provide iconography, dropdowns, na
<h3 id="btn-groups-vertical">Vertical button groups</h3>
<p>Make a set of buttons appear vertically stacked rather than horizontally.</p>
<div class="bs-example">
- <div class="btn-group btn-group-vertical">
+ <div class="btn-group-vertical">
<button type="button" class="btn btn-default"><i class="glyphicon glyphicon-align-left"></i></button>
<button type="button" class="btn btn-default"><i class="glyphicon glyphicon-align-center"></i></button>
<button type="button" class="btn btn-default"><i class="glyphicon glyphicon-align-right"></i></button>
@@ -560,7 +560,7 @@ lead: "Dozens of reusable components built to provide iconography, dropdowns, na
</div>
</div>
{% highlight html %}
-<div class="btn-group btn-group-vertical">
+<div class="btn-group-vertical">
...
</div>
{% endhighlight %}