]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fix styling of alert-dismissable example
authorChris Rebert <github@rebertia.com>
Tue, 27 Aug 2013 18:15:14 +0000 (11:15 -0700)
committerChris Rebert <github@rebertia.com>
Tue, 27 Aug 2013 18:15:14 +0000 (11:15 -0700)
components.html

index 9b724b209f9b74681de522a1ec3006b5111d9ccc..4ecb26e31cd1906749387be96d5713ece906f296 100644 (file)
@@ -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">
+      <div class="alert alert-warning alert-dismissable alert-warning">
         <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">
+<div class="alert alert-warning alert-dismissable alert-warning">
   <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>