diff options
| author | Mark Otto <[email protected]> | 2012-02-16 22:04:11 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-16 22:04:11 -0800 |
| commit | 6f6adfb52fc2f6043f84ac4fab876592c00b2894 (patch) | |
| tree | 006fa82300b984ff6cf8cd8913b9b5d151e6c77e /docs | |
| parent | 268e7d67abb32ed5cfc575c71f03d635672e781c (diff) | |
| download | bootstrap-6f6adfb52fc2f6043f84ac4fab876592c00b2894.tar.xz bootstrap-6f6adfb52fc2f6043f84ac4fab876592c00b2894.zip | |
change clearfix mixin to drop parens that prevent it from being a class, too
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/bootstrap.zip | bin | 53227 -> 53322 bytes | |||
| -rw-r--r-- | docs/assets/css/bootstrap-responsive.css | 10 | ||||
| -rw-r--r-- | docs/assets/css/bootstrap.css | 10 |
3 files changed, 20 insertions, 0 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip Binary files differindex 5d59b6d7f..4ef9191d6 100644 --- a/docs/assets/bootstrap.zip +++ b/docs/assets/bootstrap.zip diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css index a4277a26f..780719e65 100644 --- a/docs/assets/css/bootstrap-responsive.css +++ b/docs/assets/css/bootstrap-responsive.css @@ -7,6 +7,16 @@ * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ +.clearfix { + *zoom: 1; +} +.clearfix:before, .clearfix:after { + display: table; + content: ""; +} +.clearfix:after { + clear: both; +} .hidden { display: none; visibility: hidden; diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index d6441d133..74d7308be 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -94,6 +94,16 @@ textarea { overflow: auto; vertical-align: top; } +.clearfix { + *zoom: 1; +} +.clearfix:before, .clearfix:after { + display: table; + content: ""; +} +.clearfix:after { + clear: both; +} body { margin: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
