Posted by pimousse98 on April 2, 2009 at 3:42pm
Jump to:
| Project: | TagTool |
| Version: | 6.x-1.0 |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
| Issue tags: | CSS |
Issue Summary
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.
| Attachment | Size |
|---|---|
| display-bug.png | 15.05 KB |
Comments
#1
This 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...