philc / vimium

The hacker's browser.
https://chrome.google.com/webstore/detail/vimium/dbepggeogbaibhgnhhndojpepiihcmeb
MIT License
23.48k stars 2.49k forks source link

Link hints have low opacity with Display #Anchors extension #3603

Closed mb720 closed 1 week ago

mb720 commented 4 years ago

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:

vimium with display anchors on Stack Overflow

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.

gdh1995 commented 4 years ago

Confirmed. The extension draw links using z-index: 2147483645, which is larger than Vimium's, so those markers of LinkHints are covered by anchors.

mb720 commented 1 week ago

Using Vimium 2.1.2 on Firefox and Display #Anchors 1.4resigned1, this issue seems gone now for me. Thanks for fixing!