From 71067168bc5f29de363d33ea71d88cf2a650de18 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 23 Jul 2024 15:54:46 -0500 Subject: [PATCH] Fix blurring from nav title box shadow --- docs/stylesheets/extra.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 2e76b6014126..67ada1a56c8f 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -104,6 +104,14 @@ background-color: var(--md-code-bg-color); } +/* Prevent the shadow from the nav title from blurring the top link. +The box shadow isn't really doing anything anyway. + +This is a consequence of the reduced nav spacing below. */ +.md-nav--primary .md-nav__title { + box-shadow: none; +} + /* Reducing spacing between nav items to fit more content */ .md-nav__link { margin-top: 0.3em;