From 6f4a0e68a768d24ffce30481b0fca85dd65678e2 Mon Sep 17 00:00:00 2001 From: jamesread Date: Thu, 28 Sep 2023 23:05:12 +0100 Subject: [PATCH] bugfix: sidebar link style --- webui/style.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/webui/style.css b/webui/style.css index cd8a297..f7256fa 100644 --- a/webui/style.css +++ b/webui/style.css @@ -82,13 +82,17 @@ aside ul { aside ul li { list-style: none; text-align: left; - padding-left: 1em; - padding-top: 0.5em; - padding-bottom: 0.5em; border-bottom: 1px inset black; } -aside ul li:hover { +aside ul li a { + display: block; + padding-left: 1em; + padding-top: 0.5em; + padding-bottom: 0.5em; +} + +aside ul li a:hover { color: black; background-color: #efefef; cursor: pointer;