From 77210a9692c7bd11ec776f5e51e103053cfefd36 Mon Sep 17 00:00:00 2001 From: cmal Date: Sun, 24 Jun 2018 15:04:37 +0200 Subject: [PATCH] Do not underline external link marker on hover (#69) --- assets/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/style.css b/assets/style.css index a93634a..c6ad44e 100644 --- a/assets/style.css +++ b/assets/style.css @@ -167,6 +167,11 @@ a[href^="http"]::after { line-height: 0; } +a[href^="http"]:hover::after { + display: inline-block; + text-decoration: none; +} + a:hover { text-decoration: underline; }