aboutsummaryrefslogtreecommitdiff
path: root/docs/components.html
diff options
context:
space:
mode:
authorBlake Embrey <[email protected]>2013-05-09 16:26:35 -0700
committerBlake Embrey <[email protected]>2013-05-09 16:53:28 -0700
commit579d566299c82fe91e5202b30ec2b2b062e0d902 (patch)
tree12890f38c04a296c0b7e24dd18b1ce8753e477ce /docs/components.html
parent8f9cc5ae81794cc25154ab21a845c9d77ef47e78 (diff)
downloadbootstrap-579d566299c82fe91e5202b30ec2b2b062e0d902.tar.xz
bootstrap-579d566299c82fe91e5202b30ec2b2b062e0d902.zip
Update button groups to use not selector and remove redundant CSS.
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 33ebeeacf..67a4374c6 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 %}