Do not underline external link marker on hover (#69)

This commit is contained in:
cmal 2018-06-24 15:04:37 +02:00 committed by Magnus Hoff
parent e4fa7ed89a
commit 77210a9692

View file

@ -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;
}