diff --git a/docs/_includes/nav-css.html b/docs/_includes/nav-css.html
index f1596f7efa..437b2e3bdb 100644
--- a/docs/_includes/nav-css.html
+++ b/docs/_includes/nav-css.html
@@ -54,7 +54,6 @@
Control states
Input groups
Control sizing
- Form actions
Help text
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index bec7260c29..326ae49906 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -1535,34 +1535,6 @@ select:focus:invalid:focus {
box-shadow: 0 0 6px #f8b9b7;
}
-.form-actions {
- padding: 20px 20px;
- margin-top: 20px;
- margin-bottom: 20px;
- background-color: #f5f5f5;
- border-top: 1px solid #e5e5e5;
-}
-
-.form-actions:before,
-.form-actions:after {
- display: table;
- content: " ";
-}
-
-.form-actions:after {
- clear: both;
-}
-
-.form-actions:before,
-.form-actions:after {
- display: table;
- content: " ";
-}
-
-.form-actions:after {
- clear: both;
-}
-
.help-block {
display: block;
margin-top: 5px;
diff --git a/docs/css.html b/docs/css.html
index 36b5208e6e..90f6f490fe 100644
--- a/docs/css.html
+++ b/docs/css.html
@@ -1661,21 +1661,6 @@ For example, <section>
should be wrapped as inline.
-{% endhighlight %}
-
-
- End a form with a group of actions (buttons). When placed within a .form-horizontal
, the buttons will automatically indent to line up with the form controls.
-
-{% highlight html %}
-
- Save changes
- Cancel
-
{% endhighlight %}
Help text
diff --git a/less/forms.less b/less/forms.less
index 2c696945d0..4e028bf495 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -295,19 +295,6 @@ select:focus:invalid {
-// FORM ACTIONS
-// ------------
-
-.form-actions {
- padding: @line-height-computed 20px;
- margin-top: @line-height-computed;
- margin-bottom: @line-height-computed;
- background-color: @form-actions-bg;
- border-top: 1px solid #e5e5e5;
- .clearfix(); // Adding clearfix to allow for .pull-right button containers
-}
-
-
// HELP TEXT
// ---------