From 361759728171a31351e092b476fc2b0ecaebafe5 Mon Sep 17 00:00:00 2001 From: MDLeom <2809763-curben@users.noreply.gitlab.com> Date: Thu, 22 Oct 2020 05:14:22 +0000 Subject: [PATCH] fix(css): underline site links when hover --- themes/chameleon/source/css/_source.css | 8 +++----- themes/chameleon/source/css/chameleon.css | 8 +++----- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/themes/chameleon/source/css/_source.css b/themes/chameleon/source/css/_source.css index 52ce3a2..56aac02 100644 --- a/themes/chameleon/source/css/_source.css +++ b/themes/chameleon/source/css/_source.css @@ -369,15 +369,13 @@ span.index-list-count:after { position: relative; } -.article .main-nav-link:hover { - border: 0; -} - .article .article-entry { word-break: break-word; } -.article .article-entry a { +.article .article-entry a, +.article a.main-nav-link:hover, +.copyright a:hover { border-bottom: 1px solid var(--link-underline); } diff --git a/themes/chameleon/source/css/chameleon.css b/themes/chameleon/source/css/chameleon.css index 5e3cf16..eb5a69c 100644 --- a/themes/chameleon/source/css/chameleon.css +++ b/themes/chameleon/source/css/chameleon.css @@ -840,15 +840,13 @@ span.index-list-count:after { position: relative; } -.article .main-nav-link:hover { - border: 0; -} - .article .article-entry { word-break: break-word; } -.article .article-entry a { +.article .article-entry a, +.article a.main-nav-link:hover, +.copyright a:hover { border-bottom: 1px solid var(--link-underline); }