aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-08-22 13:32:48 -0700
committerChris Rebert <[email protected]>2015-08-22 13:32:48 -0700
commit8d26e26eb487cfc273d1c455ecb76b0a263cddb0 (patch)
treeb62bd5a24d45f96ae915b47349125213acfc6244
parent5bc6990be2abc4b0c8b1495db83683e5462a64c4 (diff)
parent6b45c9234a6ae95d92760a369135d5e4e9c063e7 (diff)
downloadbootstrap-8d26e26eb487cfc273d1c455ecb76b0a263cddb0.tar.xz
bootstrap-8d26e26eb487cfc273d1c455ecb76b0a263cddb0.zip
Merge pull request #17235 from kkirsche/patch-28
Add btn-info to buttons examples
-rw-r--r--docs/components/buttons.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/components/buttons.md b/docs/components/buttons.md
index 664c8f57b..cb08e40a8 100644
--- a/docs/components/buttons.md
+++ b/docs/components/buttons.md
@@ -26,6 +26,9 @@ Bootstrap includes six predefined button styles, each serving its own semantic p
<!-- 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>