From 8f2c3037cf06ef3f5150ba24124c29fb6d7834af Mon Sep 17 00:00:00 2001 From: curben <2809763-curben@users.noreply.gitlab.com> Date: Wed, 4 Sep 2019 06:39:18 +0100 Subject: [PATCH] fix(css): underline link icon when hover --- themes/typing/source/css/typing.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/themes/typing/source/css/typing.css b/themes/typing/source/css/typing.css index b1f4aaa..e152163 100644 --- a/themes/typing/source/css/typing.css +++ b/themes/typing/source/css/typing.css @@ -622,11 +622,11 @@ blockquote { .dark .container, .dark .footer { color: #e6e6e6; - background: #000; + background: black; } .dark a:hover { - color: #fff; + color: white; } .dark .home a { @@ -634,7 +634,7 @@ blockquote { } .dark .home a:hover { - border-bottom: 1px solid #fff; + border-bottom: 1px solid white; } .dark code, @@ -869,6 +869,11 @@ svg#link { border-bottom: none; } +/* underline link icon when hover */ +.article .article-entry a.headerlink:hover { + border-bottom: 1px solid #1abc9c; +} + @media (max-width: 768px) { body { font-size: 1.2em;