diff --git a/docs/_includes/nav-css.html b/docs/_includes/nav-css.html
index f1596f7efa7e44753ce1e297ba07fcd016ab7fdb..437b2e3bdb9e14e84a31b4d272458ebb18c13f93 100644
--- a/docs/_includes/nav-css.html
+++ b/docs/_includes/nav-css.html
@@ -54,7 +54,6 @@
     <li><a href="#forms-control-states">Control states</a></li>
     <li><a href="#forms-input-groups">Input groups</a></li>
     <li><a href="#forms-control-sizes">Control sizing</a></li>
-    <li><a href="#forms-actions">Form actions</a></li>
     <li><a href="#forms-help-text">Help text</a></li>
   </ul>
 </li>
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index bec7260c29bef774b9e3a0d38698a1fa12668f4d..326ae499060134d482ef11bfe62657dcf9008c57 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 36b5208e6e384a31a1e67081f5b5bf58fb015e0e..90f6f490fe552519349d3ba2daee5dedf1df0118 100644
--- a/docs/css.html
+++ b/docs/css.html
@@ -1661,21 +1661,6 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
     <input type="text" placeholder="col col-large-4">
   </div>
 </div>
-{% endhighlight %}
-
-    <h3 id="forms-actions">Form actions</h3>
-    <p>End a form with a group of actions (buttons). When placed within a <code>.form-horizontal</code>, the buttons will automatically indent to line up with the form controls.</p>
-    <form class="bs-example">
-      <div class="form-actions">
-        <button type="submit" class="btn btn-primary">Save changes</button>
-        <button type="button" class="btn btn-default">Cancel</button>
-      </div>
-    </form>
-{% highlight html %}
-<div class="form-actions">
-  <button type="submit" class="btn btn-primary">Save changes</button>
-  <button type="button" class="btn btn-default">Cancel</button>
-</div>
 {% endhighlight %}
 
     <h3 id="forms-help-text">Help text</h3>
diff --git a/less/forms.less b/less/forms.less
index 2c696945d08eb50ede6afb064ecb2db9a0fc9309..4e028bf4954d128fcfacf07b1e33721ebaa64137 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
 // ---------