diff options
| author | Mark Otto <[email protected]> | 2013-08-15 13:06:51 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-15 13:06:51 -0700 |
| commit | 3d378331342534ebfe99e717d4503c475d06ea7c (patch) | |
| tree | 98433497396bca78d5450da0cbc2c5c2474de4bd | |
| parent | dd4d618717d38123f714fc85ce56548b757e18cc (diff) | |
| download | bootstrap-3d378331342534ebfe99e717d4503c475d06ea7c.tar.xz bootstrap-3d378331342534ebfe99e717d4503c475d06ea7c.zip | |
reorder alerts
| -rw-r--r-- | components.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components.html b/components.html index f76203a82..c6a670a63 100644 --- a/components.html +++ b/components.html @@ -1926,20 +1926,20 @@ body { padding-bottom: 70px; } <h2 id="alerts-alternatives">Contextual alternatives</h2> <p>Add optional classes to change an alert's connotation.</p> <div class="bs-example"> - <div class="alert alert-danger"> - <strong>Oh snap!</strong> Change a few things up and try submitting again. - </div> <div class="alert alert-success"> <strong>Well done!</strong> You successfully read this important alert message. </div> <div class="alert alert-info"> <strong>Heads up!</strong> This alert needs your attention, but it's not super important. </div> + <div class="alert alert-danger"> + <strong>Oh snap!</strong> Change a few things up and try submitting again. + </div> </div> {% highlight html %} -<div class="alert alert-danger">...</div> <div class="alert alert-success">...</div> <div class="alert alert-info">...</div> +<div class="alert alert-danger">...</div> {% endhighlight %} <h2 id="alerts-dismissable">Dismissable alerts</h2> |
