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.

CommentFileSizeAuthor
display-bug.png15.05 KBpimousse98

Comments

sydneyshan’s picture

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...