You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't known why but link hint on my browser sometimes uses the default theme.
I must use the more specific css matching from other vimium theme to solve this problem.
This is my change:
/* Link hint boxes */
#vimiumHintMarkerContainer div.internalVimiumHintMarker, #vimiumHintMarkerContainer div.vimiumHintMarker {
background: #282a36;
font-size: 12px;
border: 0.25em solid #ffb86c;
border-radius: 0.34em;
box-shadow: 0em 0.1em 0.6em 0.1em rgba(0, 0, 0, 0.4);
}
/* Link hint text */
#vimiumHintMarkerContainer div span {
color: #f8f8f2;
font-size: inherit;
text-shadow: none;
}
/* Link hint matching characters */
#vimiumHintMarkerContainer div > .matchingCharacter ~ span {
color: #6272a4;
}
The text was updated successfully, but these errors were encountered:
Can you give me an example where it falls back to default?
Also in your code, if you write a letter, it would be better to color the written letter instead of the remaining ones. I think this is more intuitively for the user to distinct what he has pressed.
This is the default link hint, it occur when I open a browser (Brave):
If I refresh the page many times, it sometimes uses the theme correctly like this:
This means dracula theme css not working at all (May be it is outdated)
Indeed. It seems like on first launch into a site, the default style is being used. Upon refreshing or clicking another page in this site, the custom CSS is being used.
I don't known why but link hint on my browser sometimes uses the default theme.
I must use the more specific css matching from other vimium theme to solve this problem.
This is my change:
The text was updated successfully, but these errors were encountered: