diff options
| author | Mark Otto <[email protected]> | 2012-02-21 23:15:43 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-21 23:15:43 -0800 |
| commit | a139167489e249345933b1e58cc7c53542abab97 (patch) | |
| tree | 1a375e66f2da07f695fc8d0f6e4e26ee93fe9a09 /docs/assets/css/bootstrap.css | |
| parent | 9b524a16e9cb5d8c9e0a6c4c7b83a3a881e415ee (diff) | |
| download | bootstrap-a139167489e249345933b1e58cc7c53542abab97.tar.xz bootstrap-a139167489e249345933b1e58cc7c53542abab97.zip | |
set width to auto for default navbar container, then override it later for fixed navbars (done all via the #gridSystem mixins)
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -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 45ae99964..7a91fa5bd 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -134,7 +134,7 @@ a:hover { float: left; margin-left: 20px; } -.container { +.container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { width: 940px; } .span1 { @@ -2698,6 +2698,9 @@ button.btn.btn-small, input[type="submit"].btn.btn-small { -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); } +.navbar .container { + width: auto; +} .btn-navbar { display: none; float: right; |
