From c18be280f63f7c7401f98d8480d65b3618a84fb3 Mon Sep 17 00:00:00 2001 From: Veiko Aasa Date: Thu, 6 Feb 2020 12:31:56 +0200 Subject: [PATCH] help: Fix anchor hidden under navbar The solution idea is from https://github.com/twbs/bootstrap/issues/1768#issuecomment-46519033 Signed-off-by: Veiko Aasa Reviewed-by: Sunil Mohan Adapa --- static/themes/default/css/plinth.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/static/themes/default/css/plinth.css b/static/themes/default/css/plinth.css index 241a2eb69..f9e461b53 100644 --- a/static/themes/default/css/plinth.css +++ b/static/themes/default/css/plinth.css @@ -561,6 +561,15 @@ a.menu_link_active { grid-column: 1; } +/* Help manual - anchor is below navbar */ +*[id^='idm']:before { + display: block; + content: " "; + margin-top: -60px; + height: 60px; + visibility: hidden; +} + @media screen and (max-width: 767px) { .app-header { display: flex;