aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2011-12-11 02:38:58 -0800
committerMark Otto <[email protected]>2011-12-11 02:38:58 -0800
commit4e8c26d409c60f50e2ab245e74ec18af5131d838 (patch)
treeadbadd3892e01fee4947508fcb698bfc4b4a0ca8 /docs
parent54a84f0f7f217ea12249857d2b2d5ad4795e41e2 (diff)
downloadbootstrap-4e8c26d409c60f50e2ab245e74ec18af5131d838.tar.xz
bootstrap-4e8c26d409c60f50e2ab245e74ec18af5131d838.zip
updated buttons docs
Diffstat (limited to 'docs')
-rw-r--r--docs/assets/css/docs.css1
-rw-r--r--docs/base-css.html18
2 files changed, 6 insertions, 13 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css
index 9324f9990..7c1e65942 100644
--- a/docs/assets/css/docs.css
+++ b/docs/assets/css/docs.css
@@ -382,7 +382,6 @@ h2 + table {
max-width: 300px;
margin: 0 auto 18px;
}
-
}
diff --git a/docs/base-css.html b/docs/base-css.html
index 811bb01bd..209897402 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -990,40 +990,34 @@
<table class="bordered-table striped-table">
<thead>
<tr>
- <th>Name</th>
- <th>Preview</th>
+ <th>Button</th>
<th>Class</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
- <th>Default</th>
- <td><a class="btn" href="#">Button</a></td>
+ <td><a class="btn" href="#">Default</a></td>
<td><code>.btn</code></td>
<td>Standard gray button with gradient</td>
</tr>
<tr>
- <th>Primary</th>
- <td><a class="btn primary" href="#">Button</a></td>
+ <td><a class="btn primary" href="#">Primary</a></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>
</tr>
<tr>
- <th>Info</th>
- <td><a class="btn info" href="#">Button</a></td>
+ <td><a class="btn info" href="#">Info</a></td>
<td><code>.info</code></td>
<td>Used as an alternate to the default styles</td>
</tr>
<tr>
- <th>Success</th>
- <td><a class="btn success" href="#">Button</a></td>
+ <td><a class="btn success" href="#">Success</a></td>
<td><code>.success</code></td>
<td>Used to indicate a successful or positive action will be taken</td>
</tr>
<tr>
- <th>Danger</th>
- <td><a class="btn danger" href="#">Button</a></td>
+ <td><a class="btn danger" href="#">Danger</a></td>
<td><code>.danger</code></td>
<td>Used to indicate a dangerous or potentially negative action will be taken</td>
</tr>