From: Andreas Cederstròˆm Date: Thu, 28 Mar 2013 10:33:18 +0000 (+0100) Subject: Make sure form actions are properly aligned with form-horizontal X-Git-Tag: v3.0.0-rc1~547^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7409%2Fhead;p=thirdparty%2Fbootstrap.git Make sure form actions are properly aligned with form-horizontal --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 50d2070015..d096c6c506 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1705,6 +1705,9 @@ select:focus:invalid:focus { .form-horizontal .control-group > .controls { margin-left: 180px; } + .form-horizontal .form-actions { + padding-left: 180px; + } } .btn { diff --git a/less/forms.less b/less/forms.less index 841966bfe9..02aa4242ca 100644 --- a/less/forms.less +++ b/less/forms.less @@ -539,5 +539,10 @@ select:focus:invalid { margin-left: @component-offset-horizontal; } + // Make sure form actions buttons are aligned with controls + .form-actions { + padding-left: @component-offset-horizontal; + } + } }