diff options
| author | Mark Otto <[email protected]> | 2012-01-15 11:30:24 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-15 11:30:24 -0800 |
| commit | fe160261e460903cae251de25eaf41f236bd051e (patch) | |
| tree | 50bd2ee4e3431cfa1e0ef57a6fd620e78fe7f217 /docs | |
| parent | 1385540d0a404cec680313c3116a27033ced816a (diff) | |
| download | bootstrap-fe160261e460903cae251de25eaf41f236bd051e.tar.xz bootstrap-fe160261e460903cae251de25eaf41f236bd051e.zip | |
normalize the alert classes to match last night's flip for form and table classes
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/components.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/components.html b/docs/components.html index 83a024456..c9390272d 100644 --- a/docs/components.html +++ b/docs/components.html @@ -1132,7 +1132,7 @@ <h3>Rewritten base class</h3> <p>With Bootstrap 2, we've simplified the base class: <code>.alert</code> instead of <code>.alert-message</code>. We've also reduced the minimum required markup—no <code><p></code> is required by default, just the outter <code><div></code>.</p> <h3>Single alert message</h3> - <p>For a more durable component with less code, we've removed the differentiating look for block alerts, messages that com with more padding and typically more text. The class also has changed to <code>.block-alert</code>.</p> + <p>For a more durable component with less code, we've removed the differentiating look for block alerts, messages that com with more padding and typically more text. The class also has changed to <code>.alert-block</code>.</p> <hr> <h3>Goes great with javascript</h3> <p>Bootstrap comes with a great jQuery plugin that supports alert messages, making dismissing them quick and easy.</p> @@ -1151,14 +1151,14 @@ <strong>Warning!</strong> Best check yo self, you’re not looking too good. </div> </pre> - <p>Easily extend the standard alert message with two optional classes: <code>.block-alert</code> for more padding and text controls and <code>.alert-heading</code> for a matching heading.</p> - <div class="alert block-alert"> + <p>Easily extend the standard alert message with two optional classes: <code>.alert-block</code> for more padding and text controls and <code>.alert-heading</code> for a matching heading.</p> + <div class="alert alert-block"> <a class="close">×</a> <h4 class="alert-heading">Warning!</h4> <p>Best check yo self, you’re not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</p> </div> <pre class="prettyprint linenums"> -<div class="alert block-alert"> +<div class="alert alert-block"> <a class="close">×</a> <h4 class="alert-heading">Warning!</h4> Best check yo self, you’re not... @@ -1171,36 +1171,36 @@ <div class="row"> <div class="span4"> <h3>Error or danger</h3> - <div class="alert error-alert"> + <div class="alert alert-error"> <a class="close">×</a> <strong>Oh snap!</strong> Change a few things up and try submitting again. </div> <pre class="prettyprint linenums"> -<div class="alert error-alert"> +<div class="alert alert-error"> ... </div> </pre> </div> <div class="span4"> <h3>Success</h3> - <div class="alert success-alert"> + <div class="alert alert-success"> <a class="close">×</a> <strong>Well done!</strong> You successfully read this important alert message. </div> <pre class="prettyprint linenums"> -<div class="alert success-alert"> +<div class="alert alert-success"> ... </div> </pre> </div> <div class="span4"> <h3>Information</h3> - <div class="alert info-alert"> + <div class="alert alert-info"> <a class="close">×</a> <strong>Heads up!</strong> This alert needs your attention, but it’s not super important. </div> <pre class="prettyprint linenums"> -<div class="alert info-alert"> +<div class="alert alert-info"> ... </div> </pre> |
