From ca73cba5f0700ce27e72cd36e03ba2ca9fb84f56 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 12 Feb 2020 16:06:50 -0800 Subject: [PATCH] Make underline-on-hover work for spans within links Refs #535 --- docs/assets/css/style.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/assets/css/style.scss b/docs/assets/css/style.scss index 8f5a4197..e670fc31 100644 --- a/docs/assets/css/style.scss +++ b/docs/assets/css/style.scss @@ -74,6 +74,10 @@ a[href^="http"]:after { text-decoration: underline; } +a > span { + text-decoration: inherit; +} + .table-of-contents-section { border-bottom: 1px solid #ccc; }