Custom Query (7259 matches)
Results (82 - 84 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#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. |
|||
#1809 | wontfix | Calendar: October problem solved - all days are displayed | ||
Description |
Hi there, my friend Will found a way to solve the problem in years like 2009, 2015 and 2020 where the october month wasn´t displaying right: just change the values in line 370 by this: return 32 - new Date(year, month, 33).getDate(); Thats all! bye |
|||
#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. |