From 024b9326ccc390e4d42ba32f4ed1efeec05e5b2a Mon Sep 17 00:00:00 2001 From: Marc Gilleron Date: Sun, 26 Sep 2021 23:33:24 +0100 Subject: [PATCH] Fix last nav item in the doc covered by a fixed box --- doc/source/css/extra.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/source/css/extra.css b/doc/source/css/extra.css index 047a2d93..bacca7b3 100644 --- a/doc/source/css/extra.css +++ b/doc/source/css/extra.css @@ -2,3 +2,8 @@ .caption { color: #5599ff; } +/* Undo vertical padding on the "Previous Next" fixed box at the bottom of the navigator, +otherwise it covers the last item */ +.rst-versions .rst-current-version { + padding: 0px 12px 0px 12px; +}