Active
Project:
TagTool
Version:
6.x-1.0
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
2 Apr 2009 at 15:42 UTC
Updated:
24 Mar 2011 at 01:22 UTC
In Garland & FF3/IE7, links (in FF), borders & some graphics & links (in IE) will be visible through the tagtool drop down background. It causes the text of some of the options to be difficult to read. The attached picture shows the bug in Firefox 3.
This should be fixed through a simple change to the default CSS styling of the drop-down box. Adding "z-index: 2" in firebug fixed the issue for me.
| Comment | File | Size | Author |
|---|---|---|---|
| display-bug.png | 15.05 KB | pimousse98 |
Comments
Comment #1
sydneyshan commentedThis can be fixed by adding a zIndex css property in the tagtool.js file:
$(this.popup).css({
width: (this.offsetWidth - 4) +'px',
display: 'none',
border: '1px solid #AAA',
position: 'absolute',
background: '#FFF',
zIndex: '500'
});
I don't have time to roll a patch at the moment, but if the maintainer could roll this in it would be fabulous...