fix: tweak indicator link text color (#363)

This commit is contained in:
alistair3149 2021-05-04 11:56:32 -04:00
parent 93dbd76324
commit 9a610b8485
No known key found for this signature in database
GPG key ID: 94D081060FD3DD9C

View file

@ -257,6 +257,19 @@ video {
.mw-indicator {
filter: invert( 1 ) hue-rotate( 180deg );
// Have to hardcode the color since the filter breaks the color
a {
color: @color-link;
&:hover {
color: @color-link--hover;
}
&:active {
color: @color-link--active;
}
}
}
}