diff options
| author | Mark Otto <[email protected]> | 2011-12-27 15:51:36 -0600 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-12-27 15:51:36 -0600 |
| commit | 3426877c894b858d89e68c72bc300cd4f670c40f (patch) | |
| tree | 08522284e31ed110f4678cdd289c536716f032c2 /bootstrap.css | |
| parent | fec02f50455c87f0e01fe74b1fb2e3cd032ade09 (diff) | |
| download | bootstrap-3426877c894b858d89e68c72bc300cd4f670c40f.tar.xz bootstrap-3426877c894b858d89e68c72bc300cd4f670c40f.zip | |
add ie7 inline block mixin and add ability to center pagination
Diffstat (limited to 'bootstrap.css')
| -rw-r--r-- | bootstrap.css | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/bootstrap.css b/bootstrap.css index 95dde47e8..51341e902 100644 --- a/bootstrap.css +++ b/bootstrap.css @@ -6,7 +6,7 @@ * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. - * Date: Tue Dec 27 15:23:07 CST 2011 + * Date: Tue Dec 27 15:49:07 CST 2011 */ html, body { margin: 0; @@ -2211,7 +2211,11 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { margin: 18px 0; } .pagination ul { - float: left; + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; margin: 0; border: 1px solid #ddd; border: 1px solid rgba(0, 0, 0, 0.15); @@ -2247,6 +2251,9 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { .pagination .next a { border: 0; } +.pagination.centered { + text-align: center; +} .modal-backdrop { position: fixed; top: 0; |
