diff options
| author | Jacob Thornton <[email protected]> | 2012-01-28 16:21:55 -0800 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-01-28 16:21:55 -0800 |
| commit | 22d52fca46c792c08bd316298c4dd85e52bf531f (patch) | |
| tree | 9c0f8db065832ef22e0d9ffc9df528cdec7b0229 | |
| parent | b8a683d7f250a11d349a3e5de0d75ace9d67df0c (diff) | |
| download | bootstrap-22d52fca46c792c08bd316298c4dd85e52bf531f.tar.xz bootstrap-22d52fca46c792c08bd316298c4dd85e52bf531f.zip | |
fix goign between small view large view with responsive collapse
| -rw-r--r-- | docs/assets/css/docs.css | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index a48558395..b06065365 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -47,10 +47,10 @@ section { hr.soften { height: 1px; margin: 54px 0; - background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); - background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); - background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); - background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); + background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); + background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); + background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); + background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0)); border: 0; } @@ -166,7 +166,7 @@ hr.soften { border: 1px solid #e5e5e5; -webkit-border-radius: 4px; -moz-border-radius: 4px; - border-radius: 4px; + border-radius: 4px; } .subnav .nav { margin-bottom: 0; @@ -695,6 +695,11 @@ form.well { } } +@media (min-width: 940px) { + .nav-collapse.collapse { + height: auto !important; + } +} @media (max-width: 768px) { @@ -788,7 +793,7 @@ form.well { } @media (max-width: 940px) { - + /* Unfloat brand */ .navbar-fixed-top .brand { float: none; |
