diff options
| author | Mark Otto <[email protected]> | 2012-02-06 23:34:03 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-06 23:34:03 -0800 |
| commit | 575b82473f8d248ca3782fa86ce1c92eea03905c (patch) | |
| tree | 094f66085d4525b6e5a201ab4360d409b33780a6 /docs/base-css.html | |
| parent | 85e401a6567e51016357acfe6b01cd5b5c330652 (diff) | |
| download | bootstrap-575b82473f8d248ca3782fa86ce1c92eea03905c.tar.xz bootstrap-575b82473f8d248ca3782fa86ce1c92eea03905c.zip | |
rearrange some of the docs on buttons to show examples of all possible renderings along with code snippets and note about usage; also fix the portrait tablet media query
Diffstat (limited to 'docs/base-css.html')
| -rw-r--r-- | docs/base-css.html | 41 |
1 files changed, 23 insertions, 18 deletions
diff --git a/docs/base-css.html b/docs/base-css.html index b345a8434..a7dcbff19 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -1289,18 +1289,11 @@ For example, <code>section</code> should be wrapped as inline. <div class="span4"> <h3>Buttons for actions</h3> <p>As a convention, buttons should only be used for actions while hyperlinks are to be used for objects. For instance, "Download" should be a button while "recent activity" should be a link.</p> + <p>Button styles can be applied to anything with the <code>.btn</code> class applied. However, typically you'll want to apply these to only <code><a></code> and <code><button></code> elements.</p> + <h3>Cross browser compatibility</h3> + <p>IE9 doesn't crop background gradients on rounded corners, so we remove it. Related, IE9 jankifies disabled <code>button</code> elements, rendering text gray with a nasty text-shadow that we cannot fix.</p> </div> <div class="span4"> - <h3>For anchors and forms</h3> - <p>Button styles can be applied to anything with the <code>.btn</code> applied. However, typically you'll want to apply these to only <code><a></code> and <code><button></code> elements.</p> - </div> - <div class="span4"> - <p><strong>Note:</strong> All buttons must include the <code>.btn</code> class. Button styles should be applied to <code><button></code> and <code><a></code> elements for consistency.</p> - </div> - </div> - - <div class="row"> - <div class="span4"> <h3>Multiple sizes</h3> <p>Fancy larger or smaller buttons? Add <code>.btn-large</code> or <code>.btn-small</code> for two additional sizes.</p> <p> @@ -1311,8 +1304,7 @@ For example, <code>section</code> should be wrapped as inline. <a href="#" class="btn btn-small btn-primary">Primary action</a> <a href="#" class="btn btn-small">Action</a> </p> - </div> - <div class="span4"> + <br> <h3>Disabled state</h3> <p>For disabled buttons, use <code>.btn-disabled</code> for links and <code>:disabled</code> for <code><button></code> elements.</p> <p> @@ -1325,14 +1317,27 @@ For example, <code>section</code> should be wrapped as inline. </p> </div> <div class="span4"> - <h3>Cross browser compatibility</h3> - <p>In IE9, we drop the gradient on all buttons in favor of rounded corners as IE9 doesn't crop background gradients to the corners.</p> - <p>Related, IE9 jankifies disabled <code>button</code> elements, rendering text gray with a nasty text-shadow—unfortunately we can't fix this.</p> + <h3>One class, multiple tags</h3> + <p>Use the <code>.btn</code> class on an <code><a></code>, <code><button></code>, or <code><input></code> element.</p> +<form> +<a class="btn" href="">Link</a> +<button class="btn" type="submit">Button</button> +<input class="btn" type="button" value="Input"> +<input class="btn" type="submit" value="Submit"> +</form> +<pre class="prettyprint linenums"> +<a class="btn" href="">Link</a> +<button class="btn" type="submit"> + Button +</button> +<input class="btn" type="button" + value="Input"> +<input class="btn" type="submit" + value="Submit"> +</pre> + <p>As a best practice, try to match the element for you context to ensure matching cross-browser rendering. If you have an <code>input</code>, use an <code><input type="submit"></code> for your button.</p> </div> </div> - - <br> - </section> |
