Add 'inherit' as link CSS tags to make sure the links properly inherit colors given outside the link. The drawback is that one can't give a standard color to the link itself this way (it's just underlined). This deals with #979.

This commit is contained in:
Griatch 2016-06-24 20:40:46 +02:00
parent 418395bd01
commit 1b9437ce97

View file

@ -21,8 +21,9 @@ body {
}
a:link, a:visited { color: #fff }
a:hover, a:active { color: #ccc }
a:link, a:visited { color: inherit }
a:hover, a:active { color: inherit;
font-weight: bold;}
/* Set this to e.g. bolder if wanting to have ansi-highlights bolden
* stand-alone text.*/