diff options
| author | Mark Otto <[email protected]> | 2013-01-17 11:20:19 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-01-17 11:20:19 -0800 |
| commit | 360f0c5359917d3a54d4822a7cc348ef787fef12 (patch) | |
| tree | 1bafa00096c3b91aabf30edaa0865e6b291590c3 /docs | |
| parent | 01b32f472d89e6c4f7e58aa85be7a6ad92a982ec (diff) | |
| download | bootstrap-360f0c5359917d3a54d4822a7cc348ef787fef12.tar.xz bootstrap-360f0c5359917d3a54d4822a7cc348ef787fef12.zip | |
Fix floats in navbar
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 016c320e1..151c3dd02 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -3046,6 +3046,7 @@ button.close { margin-left: -15px; } .navbar .nav { + float: left; margin-top: 0; } .navbar .nav:before, @@ -3056,6 +3057,9 @@ button.close { .navbar .nav:after { clear: both; } + .navbar .nav.pull-right { + float: right; + } .navbar .nav > li { float: left; } @@ -3063,7 +3067,6 @@ button.close { display: none; } .nav-collapse.collapse { - float: left; height: auto !important; overflow: visible !important; } |
