aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2013-08-28 14:57:41 -0700
committerChris Rebert <[email protected]>2013-08-28 14:57:41 -0700
commit5c7d339752f20627277ecd69945ae50508cefb8f (patch)
treef34cfba2e87d63c35dbdab0437136c2075aa70b7
parent73f10843a487ee94bed755ecfd7c853cb657bf38 (diff)
downloadbootstrap-5c7d339752f20627277ecd69945ae50508cefb8f.tar.xz
bootstrap-5c7d339752f20627277ecd69945ae50508cefb8f.zip
Revert "fix styling of alert-dismissable example"
This reverts commit b3a23fa33a261295ed69adc9fbc75b70bf354962.
-rw-r--r--components.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/components.html b/components.html
index 642146e71..c24eaf859 100644
--- a/components.html
+++ b/components.html
@@ -2243,13 +2243,13 @@ body { padding-bottom: 70px; }
<h2 id="alerts-dismissable">Dismissable alerts</h2>
<p>Build on any alert by adding an optional <code>.alert-dismissable</code> and close button.</p>
<div class="bs-example">
- <div class="alert alert-warning alert-dismissable alert-warning">
+ <div class="alert alert-warning alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>
</div>
{% highlight html %}
-<div class="alert alert-warning alert-dismissable alert-warning">
+<div class="alert alert-warning alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>