MDL-16784 Adding YUI 2.6.0

This commit is contained in:
nicolasconnault 2008-10-03 13:26:32 +00:00
parent fa10a85e87
commit 36af3d4cdf
378 changed files with 263821 additions and 1 deletions

1130
lib/yui/menu/README Executable file

File diff suppressed because it is too large Load diff

238
lib/yui/menu/assets/menu-core.css Executable file
View file

@ -0,0 +1,238 @@
/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.6.0
*/
/* Menu & MenuBar styles */
.yuimenu {
top: -999em;
left: -999em;
}
.yuimenubar {
position: static;
}
.yuimenu .yuimenu,
.yuimenubar .yuimenu {
position: absolute;
}
.yuimenubar li,
.yuimenu li {
list-style-type: none;
}
.yuimenubar ul,
.yuimenu ul,
.yuimenubar li,
.yuimenu li,
.yuimenu h6,
.yuimenubar h6 {
margin: 0;
padding: 0;
}
.yuimenuitemlabel,
.yuimenubaritemlabel {
text-align: left;
white-space: nowrap;
}
/*
The following style rule trigger the "hasLayout" property in
IE (http://msdn2.microsoft.com/en-us/library/ms533776.aspx) for a
MenuBar instance's <ul> element, allowing both to clear their floated
child <li> elements.
*/
.yuimenubar ul {
*zoom: 1;
}
/*
Remove the "hasLayout" trigger for submenus of MenuBar instances as it
is unnecessary.
*/
.yuimenubar .yuimenu ul {
*zoom: normal;
}
/*
The following style rule allows a MenuBar instance's <ul> element to clear
its floated <li> elements in Firefox, Safari and and Opera.
*/
.yuimenubar>.bd>ul:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
height: 0;
line-height: 0;
}
.yuimenubaritem {
float: left;
}
.yuimenubaritemlabel,
.yuimenuitemlabel {
display: block;
}
.yuimenuitemlabel .helptext {
font-style: normal;
display: block;
/*
The value for the left margin controls how much the help text is
offset from the text of the menu item. This value will need to
be customized depending on the longest text label of a menu item.
*/
margin: -1em 0 0 10em;
}
/*
PLEASE NOTE: The <div> element used for a menu's shadow is appended
to its root element via JavaScript once it has been rendered. The
code that creates the shadow lives in the menu's public "onRender"
event handler that is a prototype method of YAHOO.widget.Menu.
Implementers wishing to remove a menu's shadow or add any other markup
required for a given skin for menu should override the "onRender" method.
*/
.yui-menu-shadow {
position: absolute;
visibility: hidden;
z-index: -1;
}
.yui-menu-shadow-visible {
top: 2px;
right: -3px;
left: -3px;
bottom: -3px;
visibility: visible;
}
/*
There are two known issues with YAHOO.widget.Overlay (the superclass class of
Menu) that manifest in Gecko-based browsers on Mac OS X:
1) Elements with scrollbars will poke through Overlay instances floating
above them.
2) An Overlay's scrollbars and the scrollbars of its child nodes remain
visible when the Overlay is hidden.
To fix these bugs in Menu (a subclass of YAHOO.widget.Overlay):
1) The "overflow" property of a Menu instance's shadow element and child
nodes is toggled between "hidden" and "auto" (through the application
and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes)
as its "visibility" configuration property is toggled between
"false" and "true."
2) The "display" property of <select> elements that are child nodes of the
Menu instance's root element is set to "none" when it is hidden.
PLEASE NOTE:
1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are
applied only for Gecko on Mac OS X and are added/removed to/from the
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
+ SourceForge 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;
}

497
lib/yui/menu/assets/menu.css Executable file
View file

@ -0,0 +1,497 @@
/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.6.0
*/
/* Menu & MenuBar styles */
.yuimenu {
top: -999em;
left: -999em;
}
.yuimenubar {
position: static;
}
.yuimenu .yuimenu,
.yuimenubar .yuimenu {
position: absolute;
}
.yuimenubar li,
.yuimenu li {
list-style-type: none;
}
.yuimenubar ul,
.yuimenu ul,
.yuimenubar li,
.yuimenu li,
.yuimenu h6,
.yuimenubar h6 {
margin: 0;
padding: 0;
}
.yuimenuitemlabel,
.yuimenubaritemlabel {
text-align: left;
white-space: nowrap;
}
/*
The following style rule trigger the "hasLayout" property in
IE (http://msdn2.microsoft.com/en-us/library/ms533776.aspx) for a
MenuBar instance's <ul> element, allowing both to clear their floated
child <li> elements.
*/
.yuimenubar ul {
*zoom: 1;
}
/*
Remove the "hasLayout" trigger for submenus of MenuBar instances as it
is unnecessary.
*/
.yuimenubar .yuimenu ul {
*zoom: normal;
}
/*
The following style rule allows a MenuBar instance's <ul> element to clear
its floated <li> elements in Firefox, Safari and and Opera.
*/
.yuimenubar>.bd>ul:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
height: 0;
line-height: 0;
}
.yuimenubaritem {
float: left;
}
.yuimenubaritemlabel,
.yuimenuitemlabel {
display: block;
}
.yuimenuitemlabel .helptext {
font-style: normal;
display: block;
/*
The value for the left margin controls how much the help text is
offset from the text of the menu item. This value will need to
be customized depending on the longest text label of a menu item.
*/
margin: -1em 0 0 10em;
}
/*
PLEASE NOTE: The <div> element used for a menu's shadow is appended
to its root element via JavaScript once it has been rendered. The
code that creates the shadow lives in the menu's public "onRender"
event handler that is a prototype method of YAHOO.widget.Menu.
Implementers wishing to remove a menu's shadow or add any other markup
required for a given skin for menu should override the "onRender" method.
*/
.yui-menu-shadow {
position: absolute;
visibility: hidden;
z-index: -1;
}
.yui-menu-shadow-visible {
top: 2px;
right: -3px;
left: -3px;
bottom: -3px;
visibility: visible;
}
/*
There are two known issues with YAHOO.widget.Overlay (the superclass class of
Menu) that manifest in Gecko-based browsers on Mac OS X:
1) Elements with scrollbars will poke through Overlay instances floating
above them.
2) An Overlay's scrollbars and the scrollbars of its child nodes remain
visible when the Overlay is hidden.
To fix these bugs in Menu (a subclass of YAHOO.widget.Overlay):
1) The "overflow" property of a Menu instance's shadow element and child
nodes is toggled between "hidden" and "auto" (through the application
and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes)
as its "visibility" configuration property is toggled between
"false" and "true."
2) The "display" property of <select> elements that are child nodes of the
Menu instance's root element is set to "none" when it is hidden.
PLEASE NOTE:
1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are
applied only for Gecko on Mac OS X and are added/removed to/from the
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
+ SourceForge 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;
}
/* MenuBar style rules */
.yuimenubar {
background-color: #f6f7ee;
}
/* Menu style rules */
.yuimenu {
background-color: #f6f7ee;
border: solid 1px #c4c4be;
padding: 1px;
}
.yui-menu-shadow {
display: none;
}
.yuimenu ul {
border: solid 1px #c4c4be;
border-width: 1px 0 0 0;
padding: 10px 0;
}
.yuimenu .yui-menu-body-scrolled {
overflow: hidden;
}
/* Group titles */
.yuimenu h6,
.yuimenubar h6 {
font-size: 100%;
font-weight: normal;
border: solid 1px #c4c4be;
color: #b9b9b9;
}
.yuimenubar h6 {
float: left;
padding: 4px 12px;
border-width: 0 1px 0 0;
}
.yuimenubar .yuimenu h6 {
float: none;
}
.yuimenu h6 {
border-width: 1px 0 0 0;
padding: 5px 10px 0 10px;
}
.yuimenu ul.first-of-type,
.yuimenu ul.hastitle,
.yuimenu h6.first-of-type {
border-width: 0;
}
/* Top and bottom scroll controls */
.yuimenu .topscrollbar,
.yuimenu .bottomscrollbar {
height: 16px;
background-position: center center;
background-repeat: no-repeat;
}
.yuimenu .topscrollbar {
background-image: url(menu_up_arrow.png);
}
.yuimenu .topscrollbar_disabled {
background-image: url(menu_up_arrow_disabled.png);
}
.yuimenu .bottomscrollbar {
background-image: url(menu_down_arrow.png);
}
.yuimenu .bottomscrollbar_disabled {
background-image: url(menu_down_arrow_disabled.png);
}
/* MenuItem and MenuBarItem styles */
.yuimenuitem {
/*
For IE: Used to collapse superfluous white space between <li> elements
that is triggered by the "display" property of the <a> elements being
set to "block."
*/
*border-bottom: solid 1px #f6f7ee;
}
.yuimenuitemlabel,
.yuimenubaritemlabel {
font-size: 85%;
color: #000;
text-decoration: none;
}
.yuimenuitemlabel {
padding: 2px 24px;
}
.yuimenubaritemlabel {
border-width: 0 0 0 1px;
border-style: solid;
border-color: #c4c4be;
padding: 4px 24px;
}
.yuimenubar li.first-of-type .yuimenubaritemlabel {
border-width: 0;
}
.yuimenubaritem-hassubmenu {
background: url(menubaritem_submenuindicator.png) right center no-repeat;
}
.yuimenuitem-hassubmenu {
background: url(menuitem_submenuindicator.png) right center no-repeat;
}
.yuimenuitem-checked {
background: url(menuitem_checkbox.png) left center no-repeat;
}
.yuimenuitemlabel .helptext {
margin-top: -1.1em;
*margin-top: -1.2em; /* For IE*/
}
/* MenuItem states */
/* Selected MenuItem */
.yuimenubaritem-selected,
.yuimenuitem-selected {
background-color: #8c8ad0;
}
.yuimenubaritemlabel-selected,
.yuimenuitemlabel-selected {
text-decoration: underline;
color: #fff;
}
.yuimenubaritem-hassubmenu-selected {
background-image: url(menubaritem_submenuindicator_selected.png);
}
.yuimenuitem-hassubmenu-selected {
background-image: url(menuitem_submenuindicator_selected.png);
}
.yuimenuitem-checked-selected {
background-image: url(menuitem_checkbox_selected.png);
}
/* Disabled MenuItem */
.yuimenubaritemlabel-disabled,
.yuimenuitemlabel-disabled {
cursor: default;
color: #b9b9b9;
}
.yuimenubaritem-hassubmenu-disabled {
background-image: url(menubaritem_submenuindicator_disabled.png);
}
.yuimenuitem-hassubmenu-disabled {
background-image: url(menuitem_submenuindicator_disabled.png);
}
.yuimenuitem-checked-disabled {
background-image: url(menuitem_checkbox_disabled.png);
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 936 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 936 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 956 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 956 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 956 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 942 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 942 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 942 B

View file

@ -0,0 +1,325 @@
/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.6.0
*/
/* MenuBar style rules */
.yui-skin-sam .yuimenubar {
font-size: 93%; /* 12px */
line-height: 2; /* ~24px */
*line-height: 1.9; /* For IE */
border: solid 1px #808080;
background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
}
/* MenuBarItem style rules */
.yui-skin-sam .yuimenubarnav .yuimenubaritem {
border-right: solid 1px #ccc;
}
.yui-skin-sam .yuimenubaritemlabel {
padding: 0 10px;
color: #000;
text-decoration: none;
cursor: default;
border-style: solid;
border-color: #808080;
border-width: 1px 0;
*position: relative; /* Necessary to get negative margins in IE. */
margin: -1px 0;
}
.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel {
padding-right: 20px;
/*
Prevents the label from shifting left in IE when the
".yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-selected"
rule us applied.
*/
*display: inline-block;
}
.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu {
background: url(menubaritem_submenuindicator.png) right center no-repeat;
}
/* MenuBarItem states */
/* Selected MenuBarItem */
.yui-skin-sam .yuimenubaritem-selected {
background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;
}
.yui-skin-sam .yuimenubaritemlabel-selected {
border-color: #7D98B8;
}
.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-selected {
border-left-width: 1px;
margin-left: -1px;
*left: -1px; /* For IE */
}
/* Disabled MenuBarItem */
.yui-skin-sam .yuimenubaritemlabel-disabled {
cursor: default;
color: #A6A6A6;
}
.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu-disabled {
background-image: url(menubaritem_submenuindicator_disabled.png);
}
/* Menu style rules */
.yui-skin-sam .yuimenu {
font-size: 93%; /* 12px */
line-height: 1.5; /* 18px */
*line-height: 1.45; /* For IE */
}
.yui-skin-sam .yuimenubar .yuimenu,
.yui-skin-sam .yuimenu .yuimenu {
font-size: 100%;
}
.yui-skin-sam .yuimenu .bd {
/*
The following application of zoom:1 prevents first tier submenus of a MenuBar from hiding
when the mouse is moving from an item in a MenuBar to a submenu in IE 7.
*/
*zoom: 1;
_zoom: normal; /* Remove this rule for IE 6. */
border: solid 1px #808080;
background-color: #fff;
}
.yui-skin-sam .yuimenu .yuimenu .bd {
*zoom: normal;
}
.yui-skin-sam .yuimenu ul {
padding: 3px 0;
border-width: 1px 0 0 0;
border-color: #ccc;
border-style: solid;
}
.yui-skin-sam .yuimenu ul.first-of-type {
border-width: 0;
}
/* Group titles */
.yui-skin-sam .yuimenu h6 {
font-weight: bold;
border-style: solid;
border-color: #ccc;
border-width: 1px 0 0 0;
color: #a4a4a4;
padding: 3px 10px 0 10px;
}
.yui-skin-sam .yuimenu ul.hastitle,
.yui-skin-sam .yuimenu h6.first-of-type {
border-width: 0;
}
/* Top and bottom scroll controls */
.yui-skin-sam .yuimenu .yui-menu-body-scrolled {
border-color: #ccc #808080;
overflow: hidden;
}
.yui-skin-sam .yuimenu .topscrollbar,
.yui-skin-sam .yuimenu .bottomscrollbar {
height: 16px;
border: solid 1px #808080;
background: #fff url(../../../../assets/skins/sam/sprite.png) no-repeat 0 0;
}
.yui-skin-sam .yuimenu .topscrollbar {
border-bottom-width: 0;
background-position: center -950px;
}
.yui-skin-sam .yuimenu .topscrollbar_disabled {
background-position: center -975px;
}
.yui-skin-sam .yuimenu .bottomscrollbar {
border-top-width: 0;
background-position: center -850px;
}
.yui-skin-sam .yuimenu .bottomscrollbar_disabled {
background-position: center -875px;
}
/* MenuItem style rules */
.yui-skin-sam .yuimenuitem {
/*
For IE 7 Quirks and IE 6 Strict Mode and Quirks Mode:
Used to collapse superfluous white space between <li> elements
that is triggered by the "display" property of the <a> elements being
set to "block."
*/
_border-bottom: solid 1px #fff;
}
.yui-skin-sam .yuimenuitemlabel {
padding: 0 20px;
color: #000;
text-decoration: none;
cursor: default;
}
.yui-skin-sam .yuimenuitemlabel .helptext {
margin-top: -1.5em;
*margin-top: -1.45em; /* For IE*/
}
.yui-skin-sam .yuimenuitem-hassubmenu {
background-image: url(menuitem_submenuindicator.png);
background-position: right center;
background-repeat: no-repeat;
}
.yui-skin-sam .yuimenuitem-checked {
background-image: url(menuitem_checkbox.png);
background-position: left center;
background-repeat: no-repeat;
}
/* Menu states */
/* Visible Menu */
.yui-skin-sam .yui-menu-shadow-visible {
background-color: #000;
/*
Opacity can be expensive, so defer the use of opacity until the
menu is visible.
*/
opacity: .12;
*filter: alpha(opacity=12); /* For IE */
}
/* MenuItem states */
/* Selected MenuItem */
.yui-skin-sam .yuimenuitem-selected {
background-color: #B3D4FF;
}
/* Disabled MenuItem */
.yui-skin-sam .yuimenuitemlabel-disabled {
cursor: default;
color: #A6A6A6;
}
.yui-skin-sam .yuimenuitem-hassubmenu-disabled {
background-image: url(menuitem_submenuindicator_disabled.png);
}
.yui-skin-sam .yuimenuitem-checked-disabled {
background-image: url(menuitem_checkbox_disabled.png);
}

View file

@ -0,0 +1,7 @@
/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.6.0
*/
.yuimenu{top:-999em;left:-999em;}.yuimenubar{position:static;}.yuimenu .yuimenu,.yuimenubar .yuimenu{position:absolute;}.yuimenubar li,.yuimenu li{list-style-type:none;}.yuimenubar ul,.yuimenu ul,.yuimenubar li,.yuimenu li,.yuimenu h6,.yuimenubar h6{margin:0;padding:0;}.yuimenuitemlabel,.yuimenubaritemlabel{text-align:left;white-space:nowrap;}.yuimenubar ul{*zoom:1;}.yuimenubar .yuimenu ul{*zoom:normal;}.yuimenubar>.bd>ul:after{content:".";display:block;clear:both;visibility:hidden;height:0;line-height:0;}.yuimenubaritem{float:left;}.yuimenubaritemlabel,.yuimenuitemlabel{display:block;}.yuimenuitemlabel .helptext{font-style:normal;display:block;margin:-1em 0 0 10em;}.yui-menu-shadow{position:absolute;visibility:hidden;z-index:-1;}.yui-menu-shadow-visible{top:2px;right:-3px;left:-3px;bottom:-3px;visibility:visible;}.hide-scrollbars *{overflow:hidden;}.hide-scrollbars select{display:none;}.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-skin-sam .yuimenubar{font-size:93%;line-height:2;*line-height:1.9;border:solid 1px #808080;background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;}.yui-skin-sam .yuimenubarnav .yuimenubaritem{border-right:solid 1px #ccc;}.yui-skin-sam .yuimenubaritemlabel{padding:0 10px;color:#000;text-decoration:none;cursor:default;border-style:solid;border-color:#808080;border-width:1px 0;*position:relative;margin:-1px 0;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel{padding-right:20px;*display:inline-block;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu{background:url(menubaritem_submenuindicator.png) right center no-repeat;}.yui-skin-sam .yuimenubaritem-selected{background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;}.yui-skin-sam .yuimenubaritemlabel-selected{border-color:#7D98B8;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-selected{border-left-width:1px;margin-left:-1px;*left:-1px;}.yui-skin-sam .yuimenubaritemlabel-disabled{cursor:default;color:#A6A6A6;}.yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu-disabled{background-image:url(menubaritem_submenuindicator_disabled.png);}.yui-skin-sam .yuimenu{font-size:93%;line-height:1.5;*line-height:1.45;}.yui-skin-sam .yuimenubar .yuimenu,.yui-skin-sam .yuimenu .yuimenu{font-size:100%;}.yui-skin-sam .yuimenu .bd{*zoom:1;_zoom:normal;border:solid 1px #808080;background-color:#fff;}.yui-skin-sam .yuimenu .yuimenu .bd{*zoom:normal;}.yui-skin-sam .yuimenu ul{padding:3px 0;border-width:1px 0 0 0;border-color:#ccc;border-style:solid;}.yui-skin-sam .yuimenu ul.first-of-type{border-width:0;}.yui-skin-sam .yuimenu h6{font-weight:bold;border-style:solid;border-color:#ccc;border-width:1px 0 0 0;color:#a4a4a4;padding:3px 10px 0 10px;}.yui-skin-sam .yuimenu ul.hastitle,.yui-skin-sam .yuimenu h6.first-of-type{border-width:0;}.yui-skin-sam .yuimenu .yui-menu-body-scrolled{border-color:#ccc #808080;overflow:hidden;}.yui-skin-sam .yuimenu .topscrollbar,.yui-skin-sam .yuimenu .bottomscrollbar{height:16px;border:solid 1px #808080;background:#fff url(../../../../assets/skins/sam/sprite.png) no-repeat 0 0;}.yui-skin-sam .yuimenu .topscrollbar{border-bottom-width:0;background-position:center -950px;}.yui-skin-sam .yuimenu .topscrollbar_disabled{background-position:center -975px;}.yui-skin-sam .yuimenu .bottomscrollbar{border-top-width:0;background-position:center -850px;}.yui-skin-sam .yuimenu .bottomscrollbar_disabled{background-position:center -875px;}.yui-skin-sam .yuimenuitem{_border-bottom:solid 1px #fff;}.yui-skin-sam .yuimenuitemlabel{padding:0 20px;color:#000;text-decoration:none;cursor:default;}.yui-skin-sam .yuimenuitemlabel .helptext{margin-top:-1.5em;*margin-top:-1.45em;}.yui-skin-sam .yuimenuitem-hassubmenu{background-image:url(menuitem_submenuindicator.png);background-position:right center;background-repeat:no-repeat;}.yui-skin-sam .yuimenuitem-checked{background-image:url(menuitem_checkbox.png);background-position:left center;background-repeat:no-repeat;}.yui-skin-sam .yui-menu-shadow-visible{background-color:#000;opacity:.12;*filter:alpha(opacity=12);}.yui-skin-sam .yuimenuitem-selected{background-color:#B3D4FF;}.yui-skin-sam .yuimenuitemlabel-disabled{cursor:default;color:#A6A6A6;}.yui-skin-sam .yuimenuitem-hassubmenu-disabled{background-image:url(menuitem_submenuindicator_disabled.png);}.yui-skin-sam .yuimenuitem-checked-disabled{background-image:url(menuitem_checkbox_disabled.png);}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

9666
lib/yui/menu/menu-debug.js vendored Executable file

File diff suppressed because it is too large Load diff

15
lib/yui/menu/menu-min.js vendored Executable file

File diff suppressed because one or more lines are too long

9619
lib/yui/menu/menu.js vendored Executable file

File diff suppressed because it is too large Load diff