From 90ffde52f2823a3f45e66ea30b2a13185d718589 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Fri, 9 May 2014 10:03:17 -0500 Subject: [PATCH] Make sure that links are clickable Because we set a padding of 50px on anchorable elements to make sure they are not obscured by the header, we need to raise the z-index of links so they are not obscured by these paddings. --- apidoc/template/static/styles/jaguar.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apidoc/template/static/styles/jaguar.css b/apidoc/template/static/styles/jaguar.css index e0c1b9c323..7a332b2631 100644 --- a/apidoc/template/static/styles/jaguar.css +++ b/apidoc/template/static/styles/jaguar.css @@ -17,6 +17,10 @@ body { padding-top: 50px; margin-top: -50px; } +a { + position: relative; + z-index: 1; +} .navigation li { color: #888; }