aboutsummaryrefslogtreecommitdiff
path: root/components.html
diff options
context:
space:
mode:
authorAlex Olshansky <[email protected]>2013-08-27 05:20:14 -0700
committerAlex Olshansky <[email protected]>2013-08-27 05:20:14 -0700
commitf8dc1858b088e7f1f4550bb56260686bd4392937 (patch)
tree51b3316f2e33c41da72f5a68f973893bee1899e1 /components.html
parentf811c1b56cb109394268ec66cf3f956f987e5884 (diff)
downloadbootstrap-f8dc1858b088e7f1f4550bb56260686bd4392937.tar.xz
bootstrap-f8dc1858b088e7f1f4550bb56260686bd4392937.zip
Fixes #10207: alert-dismissable example requires contextual class
Diffstat (limited to 'components.html')
-rw-r--r--components.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/components.html b/components.html
index 627327647..3225f285a 100644
--- a/components.html
+++ b/components.html
@@ -2209,13 +2209,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-dismissable">
+ <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-dismissable">
+<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>