aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/css/buttons.html
diff options
context:
space:
mode:
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>