Custom Query (7259 matches)
Results (46 - 48 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1801 | fixed | Use bgiframe for dialogs when available | ||
Description |
We have reports in email that select boxes show through... should be as easy as adding <code> if ($.fn.bgiframe != undefined) {
} </code> This would of course live in dialogInit |
|||
#1808 | fixed | UI Shadow doesn't work on Safari 2 without explicit z-index | ||
Description |
The default value of a z-index on Safari 2 seems to be 'normal' rather than 'auto', which causes no z-index to be assigned (the default tries to add 'normal' + 1). I've created a simple patch to address the issue. |
|||
#1811 | fixed | accordion animation prevents dynamic content | ||
Description |
The accordion changes the style of the div that contains it. So at the end of the animation, the style is something like: style="overflow: hidden; height: 109px" The problem is if you have dynamic content within that accordion, then any new content you add in gets cut off because of the height constraint and overflow. My suggestion is after the animation is done, to clear the style completely so everything is back to auto. |