From c0e7d2471ef86d37be8e8f16229e0e7d8692925d Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 1 Apr 2026 08:32:34 +0200 Subject: [PATCH] Add invisible bridge to dropdown menu for easier hovering --- static/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/static/style.css b/static/style.css index 870e534fe..5754c44e8 100644 --- a/static/style.css +++ b/static/style.css @@ -170,6 +170,15 @@ header a:hover:not(.home) { border-bottom: 2px solid var(--link-text-color); } +.dropdown-menu::before { + content: ""; + position: absolute; + bottom: 100%; + left: 0; + right: 0; + height: 0.75rem; +} + .dropdown-menu { display: none; position: absolute;