From eba9b4de6c5d2dfe49ba6d2484307b1d6542620a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 21 Jun 2013 11:56:47 -0700 Subject: Reset padding on homepage links --- docs/assets/css/docs.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index e47805d37..defa02fb0 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -81,7 +81,9 @@ body { /* Textual links */ .bs-masthead-links { - margin: 20px 0; + margin-top: 20px; + margin-bottom: 20px; + padding-left: 0; list-style: none; } .bs-masthead-links li { -- cgit v1.2.3 From 5af22ab89ff5997ef03366d332b91bddea710323 Mon Sep 17 00:00:00 2001 From: Luis Hdez Date: Sun, 23 Jun 2013 23:15:32 +0200 Subject: Fix overlap sidebar for Tablets and up in docs --- docs/assets/css/docs.css | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'docs/assets/css/docs.css') 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; } -- cgit v1.2.3