TaskForest
view release on metacpan or search on metacpan
htdocs/yui/build/menu/assets/menu-core.css view on Meta::CPAN
Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and
"showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
2) There may be instances where the CSS for a web page or application
contains style rules whose specificity override the rules implemented by
the Menu CSS files to fix this bug. In such cases, is necessary to
leverage the provided "hide-scrollbars" and "show-scrollbars" classes to
write custom style rules to guard against this bug.
** For more information on this issue, see:
+ https://bugzilla.mozilla.org/show_bug.cgi?id=187435
+ YUILibrary bug #1723530
*/
.hide-scrollbars * {
overflow: hidden;
}
.hide-scrollbars select {
display: none;
}
/*
The following style rule (".yuimenu.show-scrollbars") overrides the
".show-scrollbars" rule defined in container-core.css which sets the
"overflow" property of a YAHOO.widget.Overlay instance's root HTML element to
"auto" when it is visible. Without this override, a Menu would have scrollbars
when one of its submenus is visible.
*/
.yuimenu.show-scrollbars,
.yuimenubar.show-scrollbars {
overflow: visible;
}
.yuimenu.hide-scrollbars .yui-menu-shadow,
.yuimenubar.hide-scrollbars .yui-menu-shadow {
overflow: hidden;
}
.yuimenu.show-scrollbars .yui-menu-shadow,
.yuimenubar.show-scrollbars .yui-menu-shadow {
overflow: auto;
}
.yui-overlay.yui-force-redraw {
margin-bottom: 1px;
}
( run in 0.856 second using v1.01-cache-2.11-cpan-524268b4103 )