From 29385a4aee56ab0aa16279f6cc79ca5d7e1d716c Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Thu, 19 Dec 2013 01:08:24 +0100 Subject: [PATCH] Increase z-index of active hint label. This allows to see the label while stepping though the hints via event if hint label overlaps each other. --- src/hints.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hints.js b/src/hints.js index 4b06b23..2e37127 100644 --- a/src/hints.js +++ b/src/hints.js @@ -35,6 +35,8 @@ var VbHint = (function(){ "background-color:#8f0 !important" + "}" + "." + lClass + "." + fClass + "{" + + /* use higher z-index to show the active label if it's overlapped by other labels */ + "z-index:100001;" + "opacity:1" + "}"; -- 2.20.1