diff options
| author | Mark Otto <[email protected]> | 2012-02-22 11:16:32 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-22 11:16:32 -0800 |
| commit | 8609a77bd2f2b18a88efea5b31d6b6f90036e702 (patch) | |
| tree | 9a76f248d034a2f17f6c37c936e133d3bf8d3dfc /docs/assets/css/bootstrap.css | |
| parent | 0ed6d3b28ea6fa86a9a1d6fe9de2df29ae1dddaa (diff) | |
| download | bootstrap-8609a77bd2f2b18a88efea5b31d6b6f90036e702.tar.xz bootstrap-8609a77bd2f2b18a88efea5b31d6b6f90036e702.zip | |
add clearfix to .form-actions for .pull-right and .pull-left supported buttons, per #1978 and #2173
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index d1b95590c..eb459012e 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -845,6 +845,14 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec margin-bottom: 18px; background-color: #f5f5f5; border-top: 1px solid #ddd; + *zoom: 1; +} +.form-actions:before, .form-actions:after { + display: table; + content: ""; +} +.form-actions:after { + clear: both; } .uneditable-input { display: block; |
