From 6be041715f0934e93e985b6bc1063f1110d15f6b Mon Sep 17 00:00:00 2001 From: Robert Timm Date: Wed, 10 May 2017 00:11:39 +0200 Subject: [PATCH] fixes hintElem opacity for non opaque elements Forces the hintElem to be fully opaque, even when attached to non opaque elements (e.g. {opacity:0.5}). #349 --- src/scripts/hints.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scripts/hints.css b/src/scripts/hints.css index c061121..f4fee78 100644 --- a/src/scripts/hints.css +++ b/src/scripts/hints.css @@ -17,7 +17,8 @@ background-color:#ff0 !important; color:#000 !important; transition-delay:all 0 !important; - transition:all 0 !important + transition:all 0 !important; + opacity:1 !important } ._hintElem._hintFocus{ background-color:#8f0 !important -- 2.20.1