aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2015-01-19 16:03:41 -0800
committerMark Otto <[email protected]>2015-01-19 16:03:41 -0800
commit21dc9b1f5715efe68df4373a221140fc39e383b7 (patch)
tree3b024cfecd0035715026f01bcc3ecd766b9b9e49
parente1dfe01c9ff033cd11774737b115be15b4c5bf5f (diff)
downloadbootstrap-21dc9b1f5715efe68df4373a221140fc39e383b7.tar.xz
bootstrap-21dc9b1f5715efe68df4373a221140fc39e383b7.zip
fix broken buttons
-rw-r--r--docs/content/forms.md6
-rw-r--r--docs/javascript/modal.md4
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/content/forms.md b/docs/content/forms.md
index b825a55e4..f1068a01b 100644
--- a/docs/content/forms.md
+++ b/docs/content/forms.md
@@ -64,7 +64,7 @@ Add `.form-inline` to your `<form>` or a parent element for left-aligned and inl
<label for="exampleInputEmail2">Email</label>
<input type="email" class="form-control" id="exampleInputEmail2" placeholder="[email protected]">
</div>
- <button type="submit" class="btn btn-default">Send invitation</button>
+ <button type="submit" class="btn btn-primary">Send invitation</button>
</form>
</div>
{% endexample %}
@@ -86,7 +86,7 @@ Add `.form-inline` to your `<form>` or a parent element for left-aligned and inl
<input type="checkbox"> Remember me
</label>
</div>
- <button type="submit" class="btn btn-default">Sign in</button>
+ <button type="submit" class="btn btn-primary">Sign in</button>
</form>
{% endexample %}
@@ -315,7 +315,7 @@ When you need to place plain text next to a form label within a form, use the `.
<label for="inputPassword2" class="sr-only">Password</label>
<input type="password" class="form-control" id="inputPassword2" placeholder="Password">
</div>
- <button type="submit" class="btn btn-default">Confirm identity</button>
+ <button type="submit" class="btn btn-primary">Confirm identity</button>
</form>
{% endexample %}
diff --git a/docs/javascript/modal.md b/docs/javascript/modal.md
index 8a3b91e88..22c74f31c 100644
--- a/docs/javascript/modal.md
+++ b/docs/javascript/modal.md
@@ -280,7 +280,7 @@ Have a bunch of buttons that all trigger the same modal, just with slightly diff
</form>
</div>
<div class="modal-footer">
- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
+ <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Send message</button>
</div>
</div>
@@ -316,7 +316,7 @@ Have a bunch of buttons that all trigger the same modal, just with slightly diff
</form>
</div>
<div class="modal-footer">
- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
+ <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Send message</button>
</div>
</div>