diff options
| author | Mark Otto <[email protected]> | 2012-07-17 23:32:52 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-17 23:32:52 -0700 |
| commit | aac3736eeaa1ff1eaf3a6a04502efd6d5b9e7e49 (patch) | |
| tree | fd4a67d6ce3c93bad32076d8b90ddabb29ad8903 /docs/base-css.html | |
| parent | cb1a59caa013e0fbe992bb305502f37bc7141c92 (diff) | |
| download | bootstrap-aac3736eeaa1ff1eaf3a6a04502efd6d5b9e7e49.tar.xz bootstrap-aac3736eeaa1ff1eaf3a6a04502efd6d5b9e7e49.zip | |
fixes #3845: add .btn-link for transparent buttons styled as links
Diffstat (limited to 'docs/base-css.html')
| -rw-r--r-- | docs/base-css.html | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/docs/base-css.html b/docs/base-css.html index a6b545c1d..a23008dd1 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -712,12 +712,14 @@ For example, <code>section</code> should be wrapped as inline. </table> </div> <pre class="prettyprint linenums"> -<tr class="success"> - <td>1</td> - <td>TB - Monthly</td> - <td>01/04/2012</td> - <td>Approved</td> -</tr> +... + <tr class="success"> + <td>1</td> + <td>TB - Monthly</td> + <td>01/04/2012</td> + <td>Approved</td> + </tr> +... </pre> @@ -1423,6 +1425,11 @@ For example, <code>section</code> should be wrapped as inline. <td><code>btn btn-inverse</code></td> <td>Alternate dark gray button, not tied to a semantic action or use</td> </tr> + <tr> + <td><button type="button" class="btn btn-link">Link</button></td> + <td><code>btn btn-link</code></td> + <td>Deemphasize a button by making it look like a link while maintaining button behavior</td> + </tr> </tbody> </table> |
