diff options
| author | Mark Otto <[email protected]> | 2013-06-23 15:16:25 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-06-23 15:16:25 -0700 |
| commit | 55120d124c6b9d0f43fa348963ecb67d79326fc2 (patch) | |
| tree | 866159fc975ac3b4769842619c5cb08cc3fbfe47 /docs/assets | |
| parent | 573a19741770338b9e08838d908f51b7a82cddd3 (diff) | |
| parent | 5af22ab89ff5997ef03366d332b91bddea710323 (diff) | |
| download | bootstrap-55120d124c6b9d0f43fa348963ecb67d79326fc2.tar.xz bootstrap-55120d124c6b9d0f43fa348963ecb67d79326fc2.zip | |
Merge pull request #8268 from luishdez/hotfix/sidebar-overlap
Fix overlap sidebar for Tablets and up in docs
Diffstat (limited to 'docs/assets')
| -rw-r--r-- | docs/assets/css/docs.css | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index defa02fb0..cef5f3334 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -713,13 +713,6 @@ input.focused { /* Tablets and up */ @media screen and (min-width: 768px) { - /* Reaffix the fixed sidebar */ - .bs-sidebar.affix { - position: fixed; /* Undo the static from mobile-first approach */ - top: 50px; - width: 160px; - } - /* Back to top link */ .bs-top { display: block; /* Unhide */ @@ -781,6 +774,8 @@ input.focused { /* Widen the fixed sidebar */ .bs-sidebar.affix { + position: fixed; /* Undo the static from mobile-first approach */ + top: 50px; width: 213px; } |
