updated buttons docs

This commit is contained in:
Mark Otto 2011-12-11 02:38:58 -08:00
parent 54a84f0f7f
commit 4e8c26d409
3 changed files with 7 additions and 14 deletions

2
bootstrap.css vendored
View File

@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Designed and built with all the love in the world @twitter by @mdo and @fat. * Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Sun Dec 11 01:57:49 PST 2011 * Date: Sun Dec 11 02:07:42 PST 2011
*/ */
html, body { html, body {
margin: 0; margin: 0;

View File

@ -382,7 +382,6 @@ h2 + table {
max-width: 300px; max-width: 300px;
margin: 0 auto 18px; margin: 0 auto 18px;
} }
} }

View File

@ -990,40 +990,34 @@
<table class="bordered-table striped-table"> <table class="bordered-table striped-table">
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Button</th>
<th>Preview</th>
<th>Class</th> <th>Class</th>
<th>Description</th> <th>Description</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th>Default</th> <td><a class="btn" href="#">Default</a></td>
<td><a class="btn" href="#">Button</a></td>
<td><code>.btn</code></td> <td><code>.btn</code></td>
<td>Standard gray button with gradient</td> <td>Standard gray button with gradient</td>
</tr> </tr>
<tr> <tr>
<th>Primary</th> <td><a class="btn primary" href="#">Primary</a></td>
<td><a class="btn primary" href="#">Button</a></td>
<td><code>.primary</code></td> <td><code>.primary</code></td>
<td>Makes button blue for more visual weight to indicate the primary action in a set of buttons</td> <td>Makes button blue for more visual weight to indicate the primary action in a set of buttons</td>
</tr> </tr>
<tr> <tr>
<th>Info</th> <td><a class="btn info" href="#">Info</a></td>
<td><a class="btn info" href="#">Button</a></td>
<td><code>.info</code></td> <td><code>.info</code></td>
<td>Used as an alternate to the default styles</td> <td>Used as an alternate to the default styles</td>
</tr> </tr>
<tr> <tr>
<th>Success</th> <td><a class="btn success" href="#">Success</a></td>
<td><a class="btn success" href="#">Button</a></td>
<td><code>.success</code></td> <td><code>.success</code></td>
<td>Used to indicate a successful or positive action will be taken</td> <td>Used to indicate a successful or positive action will be taken</td>
</tr> </tr>
<tr> <tr>
<th>Danger</th> <td><a class="btn danger" href="#">Danger</a></td>
<td><a class="btn danger" href="#">Button</a></td>
<td><code>.danger</code></td> <td><code>.danger</code></td>
<td>Used to indicate a dangerous or potentially negative action will be taken</td> <td>Used to indicate a dangerous or potentially negative action will be taken</td>
</tr> </tr>