From 9ad874b2dfa20b13bb7a0fd2871ce34602983ad0 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Sun, 5 Jan 2014 11:28:22 +0100 Subject: [PATCH] Set z-index on hint container instead of every item. --- src/hints.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hints.js b/src/hints.js index fc31f26..97e8700 100644 --- a/src/hints.js +++ b/src/hints.js @@ -15,10 +15,10 @@ var VbHint = (function(){ hClass = "_hintElem", /* marks hinted elements */ fClass = "_hintFocus", /* marks focused element and focussed hint */ config, - style = "." + lClass + "{" + + style = "#" + cId + "{z-index:100000}" + + "." + lClass + "{" + "-webkit-transform:translate(-4px,-4px);" + "position:absolute;" + - "z-index:100000;" + "font:bold\x20.8em\x20monospace;" + "color:#000;" + "background-color:#fff;" + @@ -36,7 +36,7 @@ var VbHint = (function(){ "}" + "." + lClass + "." + fClass + "{" + /* use higher z-index to show the active label if it's overlapped by other labels */ - "z-index:100001;" + + "z-index:1;" + "opacity:1" + "}"; -- 2.20.1