From c3f219ba92a4ad386b6c4c7b99fd41dbbc8c3c0a Mon Sep 17 00:00:00 2001 From: Jeena Date: Tue, 25 Sep 2018 21:53:07 +0200 Subject: [PATCH] Make last file in list visible For some reason the CSS didn't connect the side-nav to the bottom of the page and this lead to some wrong calculations of the browser which lead to the fact that the last file in the list of files was outside of the visible area. Pinning it with bottom: 0; fixes this problem and now one can scroll down all the way to even see the last file in the file list. --- configurator.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configurator.py b/configurator.py index f053d95..ec221e2 100755 --- a/configurator.py +++ b/configurator.py @@ -283,6 +283,10 @@ INDEX = Template(r""" border-bottom: 1px solid #eeeeee !important; } + .side-nav { + bottom: 0; + } + .fb_side-nav li { line-height: 36px; }