aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/css/buttons.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-08 17:09:47 -0700
committerMark Otto <[email protected]>2014-07-08 17:09:47 -0700
commitf399d21ef5e20bd736d5cf2946acb982378cd2f4 (patch)
tree68a7d4abd87c0c0bc3c92b894544a4cd3875ba72 /docs/_includes/css/buttons.html
parent28a61e708dab9de25c22cf8a73897daa90290496 (diff)
downloadbootstrap-f399d21ef5e20bd736d5cf2946acb982378cd2f4.tar.xz
bootstrap-f399d21ef5e20bd736d5cf2946acb982378cd2f4.zip
Revamp button: rename .btn-default to .btn-secondary, drop .btn-info
Diffstat (limited to 'docs/_includes/css/buttons.html')
-rw-r--r--docs/_includes/css/buttons.html12
1 files changed, 4 insertions, 8 deletions
diff --git a/docs/_includes/css/buttons.html b/docs/_includes/css/buttons.html
index 139fbd1e6..5fa879c33 100644
--- a/docs/_includes/css/buttons.html
+++ b/docs/_includes/css/buttons.html
@@ -3,28 +3,24 @@
<p>Use any of the available button classes to quickly create a styled button.</p>
<div class="bs-example">
<p>
- <button type="button" class="btn btn-default">Default</button>
<button type="button" class="btn btn-primary">Primary</button>
+ <button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-success">Success</button>
- <button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-link">Link</button>
</p>
</div>
{% highlight html %}
-<!-- Standard button -->
-<button type="button" class="btn btn-default">Default</button>
-
<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
<button type="button" class="btn btn-primary">Primary</button>
+<!-- Secondary, outline button -->
+<button type="button" class="btn btn-secondary">Secondary</button>
+
<!-- Indicates a successful or positive action -->
<button type="button" class="btn btn-success">Success</button>
-<!-- Contextual button for informational alert messages -->
-<button type="button" class="btn btn-info">Info</button>
-
<!-- Indicates caution should be taken with this action -->
<button type="button" class="btn btn-warning">Warning</button>