mirror of
https://github.com/vale981/tridactyl
synced 2025-03-11 13:06:38 -04:00

Hints still don't work for images, but I don't see any way we can detect that they're clickable, besides special casing instagram.
29 lines
649 B
CSS
29 lines
649 B
CSS
span.TridactylHint {
|
|
position: absolute;
|
|
font-family: sans-serif;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
color: white;
|
|
background-color: red;
|
|
border-color: ButtonShadow;
|
|
border-width: 0px;
|
|
min-width: .75em;
|
|
border-style: solid;
|
|
padding: 0 1pt;
|
|
text-align: center;
|
|
z-index: 2147483647;
|
|
}
|
|
|
|
.TridactylHintElem, .TridactylHintActive {
|
|
color: black !important;
|
|
animation: none;
|
|
transition: unset;
|
|
}
|
|
|
|
.TridactylHintElem { background-color: yellow; }
|
|
.TridactylHintActive { background-color: #88FF00; }
|
|
|
|
div.TridactylHintHost {
|
|
position: static !important;
|
|
}
|