tridactyl/src/static/hint.css
Colin Caine 4a3a25751c hinting: Fix #136.
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.
2017-11-28 17:19:50 +00:00

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;
}