diff options
| author | Mark Otto <[email protected]> | 2013-08-27 07:43:17 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-27 07:43:17 -0700 |
| commit | 1f16e21e75acb924e889b0f11d211ce06943ff7a (patch) | |
| tree | 02236daa6711a77d29819aa513cf2770b9798944 /components.html | |
| parent | 4d0b895db7bf9c35f865d71473cb4f679f06e39b (diff) | |
| parent | f8dc1858b088e7f1f4550bb56260686bd4392937 (diff) | |
| download | bootstrap-1f16e21e75acb924e889b0f11d211ce06943ff7a.tar.xz bootstrap-1f16e21e75acb924e889b0f11d211ce06943ff7a.zip | |
Merge pull request #10209 from clbn/master
Fixes #10207: alert-dismissable example requires contextual class
Diffstat (limited to 'components.html')
| -rw-r--r-- | components.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components.html b/components.html index 960088a79..c2e0e261a 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">×</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">×</button> <strong>Warning!</strong> Best check yo self, you're not looking too good. </div> |
