Themeroller Bug: ui-helper-hidden-accessible

Themeroller Bug: ui-helper-hidden-accessible


Hello all... Just wanted to throw in a quick bug report & fix, and
Trac seemed to be broken, so I thought I'd post here.
The CSS for ui-helper-hidden-accessible is not 100% effective as
generated by Themeroller.
In some situations--such as the site I'm developing--I noticed that an
initialized but unopened datepicker causes the addition of 20-30
pixels (or 1-2 em, something like that) worth of extra space at the
bottom of the page. Upon opening a datepicker, this space disappears,
causing scrollbar and/or page position if scrolled all the way down to
"jump". Simple fix... Changing:
.ui-helper-hidden-accessible { position: absolute; left:
-99999999px; }
...to...
.ui-helper-hidden-accessible { position: absolute; left: -99999999px;
top: -99999999px; }
Seems to shape things up.