1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 23:58:00 +01:00

increased zIndex as there seem to be sites with zIndex = 1.000.000 out there

This commit is contained in:
Martin Stubenschrott
2007-10-26 03:47:29 +00:00
parent d468cfe790
commit c2a02ccd6d

View File

@@ -158,7 +158,7 @@ vimperator.Hints = function() //{{{
baseNodeAbsolute.style.fontWeight = "bold";
baseNodeAbsolute.style.lineHeight = "10px";
baseNodeAbsolute.style.padding = "0px 1px 0px 0px";
baseNodeAbsolute.style.zIndex = "5000";
baseNodeAbsolute.style.zIndex = "10000001";
baseNodeAbsolute.className = "vimperator-hint";
var res = vimperator.buffer.evaluateXPath(vimperator.options["hinttags"], doc, null, true);
@@ -279,7 +279,7 @@ outer:
imgspan.style.backgroundColor = "yellow";
imgspan.style.position = "absolute";
imgspan.style.opacity = 0.5;
imgspan.style.zIndex = "4999";
imgspan.style.zIndex = "10000000";
imgspan.className = "vimperator-hint";
hints[i][3] = imgspan;
doc.body.appendChild(imgspan);