Link hints have low opacity with Display #Anchors extension
Hi and thanks a lot for Vimium!
I use the addon Display #Anchors in combination with Vimium 1.66 on Firefox to get a URL with an anchor. Unfortunately, some of those anchor links are pretty hard to read since they're so transparent:

This happens reliably on any Stack Overflow question.
Here is my Vimium CSS (should be the default):
div > .vimiumHintMarker {
/* linkhint boxes */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF785),
color-stop(100%,#FFC542));
border: 1px solid #E3BE23;
}
div > .vimiumHintMarker span {
/* linkhint text */
color: black;
font-weight: bold;
font-size: 12px;
}
div > .vimiumHintMarker > .matchingCharacter {
}
Is there a way to make the link hints opaque?
I'm running Firefox 77.0.1 on Arch Linux 5.6.12.
Confirmed. The extension draw links using z-index: 2147483645, which is larger than Vimium's, so those markers of LinkHints are covered by anchors.
Using Vimium 2.1.2 on Firefox and Display #Anchors 1.4resigned1, this issue seems gone now for me. Thanks for fixing!