first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-09-30 18:11:26 -04:00
commit e592ca6823
27270 changed files with 5002257 additions and 0 deletions
@@ -0,0 +1,169 @@
.yui3-menu .yui3-menu {
position: absolute;
z-index: 1;
}
.yui3-menu .yui3-shim {
/*
Styles for the <iframe> shim used to prevent <select> elements from poking through
submenus in IE < 7. Note: For peformance, creation of the <iframe> shim for each submenu
is deferred until it is initially made visible by the user.
*/
position: absolute;
top: 0;
left: 0;
z-index: -1;
opacity: 0;
filter: alpha(opacity=0); /* For IE since it doesn't implement the CSS3 "opacity" property. */
border: none;
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
.yui3-menu-hidden {
/*
Position hidden menus outside the viewport boundaries to prevent them from
triggering scrollbars on the viewport.
*/
top: -10000px;
left: -10000px;
/*
Using "visibility:hidden" over "display" none because:
1) As the "position" property for submenus is set to "absolute", they are out of
the document flow and take up no space. Therefore, from that perspective use of
"display:none" is redundant.
2) According to MSDN use of "display:none" is more expensive:
"Display is the more expensive of the two CSS properties, so if you are
making elements appear and disappear often, visibility will be faster."
(See http://msdn.microsoft.com/en-us/library/bb264005(VS.85).aspx)
*/
visibility: hidden;
}
.yui3-menu li {
list-style-type: none;
}
.yui3-menu ul,
.yui3-menu li {
margin: 0;
padding: 0;
}
.yui3-menu-label,
.yui3-menuitem-content {
text-align: left;
white-space: nowrap;
display: block;
}
.yui3-menu-horizontal li {
float: left;
width: auto;
}
.yui3-menu-horizontal li li {
float: none;
}
.yui3-menu-horizontal ul {
/*
Use of "zoom" sets the "hasLayout" property to "true" in IE (< 8). When "hasLayout" is
set to "true", an element can clear its floated descendents. For more:
http://msdn.microsoft.com/en-gb/library/ms533776(VS.85).aspx
*/
*zoom: 1;
}
.yui3-menu-horizontal ul ul {
/*
No need to clear <ul>s of submenus of horizontal menus since <li>s of submenus
aren't floated.
*/
*zoom: normal;
}
.yui3-menu-horizontal>.yui3-menu-content>ul:after {
/* Self-clearing solution for Opera, Webkit, Gecko and IE > 7 */
content: "";
display: block;
clear: both;
line-height: 0;
font-size: 0;
visibility: hidden;
}
/*
The following two rules are for IE 7. Triggering "hasLayout" (via use of "zoom") prevents
first-tier submenus from hiding when the mouse is moving from an menu label in a root menu to
its corresponding submenu.
*/
.yui3-menu-content {
*zoom: 1;
}
.yui3-menu-hidden .yui3-menu-content {
*zoom: normal;
}
/*
The following two rules are for IE 6 (Standards Mode and Quirks Mode) and IE 7 (Quirks Mode
only). Triggering "hasLayout" (via use of "zoom") fixes a bug in IE where mousing mousing off
the text node of menuitem or menu label will incorrectly trigger the mouseout event.
*/
.yui3-menuitem-content,
.yui3-menu-label {
_zoom: 1;
}
.yui3-menu-hidden .yui3-menuitem-content,
.yui3-menu-hidden .yui3-menu-label {
_zoom: normal;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 157 B

@@ -0,0 +1,312 @@
/* Vertical menus and submenus */
.yui3-skin-night .yui3-menu-content,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-content {
font-size: 100%;
line-height: 2.25; /* 18px 1.5*/
*line-height: 1.45; /* For IE */
border: solid 1px #303030;
background: #151515;
/*padding: 3px 0;*/
}
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-content {
font-size: 100%;
}
/* Horizontal menus */
.yui3-skin-night .yui3-menu-horizontal .yui3-menu-content {
line-height: 2; /* ~24px */
*line-height: 1.9; /* For IE */
background-color:#3b3c3d;
background: -moz-linear-gradient(
0% 100% 90deg,
#242526 0%,
#3b3c3d 96%,
#2C2D2F 100%
);
background: -webkit-gradient(
linear,
left bottom,
left top,
from(#242526),
color-stop(0.96, #3b3c3d),
to(#2C2D2F)
);
padding: 0;
}
.yui3-skin-night .yui3-menu ul,
.yui3-skin-night .yui3-menu ul ul {
margin-top: 3px;
padding-top: 3px;
border-top: solid 1px #303030;
}
.yui3-skin-night .yui3-menu ul.first-of-type {
border: 0;
margin: 0;
padding: 0;
}
.yui3-skin-night .yui3-menu-horizontal ul {
padding: 0;
margin: 0;
border: 0;
}
.yui3-skin-night .yui3-menu li,
.yui3-skin-night .yui3-menu .yui3-menu li {
/*
For and IE 6 (Strict Mode and Quirks Mode) and IE 7 (Quirks Mode only):
Used to collapse superfluous white space between <li> elements that is
triggered by the "display" property of the <a> elements being set to
"block" by node-menunav-core.css file.
*/
_border-bottom: solid 1px #151515;
}
.yui3-skin-night .yui3-menu-horizontal li {
_border-bottom: 0;
}
.yui3-skin-night .yui3-menubuttonnav li {
border-right: solid 1px #ccc;
}
.yui3-skin-night .yui3-splitbuttonnav li {
border-right: solid 1px #303030;
}
.yui3-skin-night .yui3-menubuttonnav li li,
.yui3-skin-night .yui3-splitbuttonnav li li {
border-right: 0;
}
/* Menuitems and menu labels */
.yui3-skin-night .yui3-menu-label,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-label,
.yui3-skin-night .yui3-menuitem-content,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menuitem-content {
/*padding: 0 20px;*/
padding: 0 1em;
/*background-color: #2F3030;*/
color: #fff;
text-decoration: none;
cursor: default;
/*
Necessary specify values for border, position and margin to override
values specified in the selectors that follow.
*/
float: none;
border: 0;
margin: 0;
}
.yui3-skin-night .yui3-menu-horizontal .yui3-menu-label,
.yui3-skin-night .yui3-menu-horizontal .yui3-menuitem-content {
padding: 0 10px;
border-style: solid;
border-color: #303030;
border-width: 1px 0;
margin: -1px 0;
float: left; /* Ensures that menu labels clear floated descendents.
Also gets negative margins working in IE 7
(Strict Mode). */
width: auto;
}
.yui3-skin-night .yui3-menu-label,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-label {
background: url(vertical-menu-submenu-indicator.png) right center no-repeat;
}
.yui3-skin-night .yui3-menu-horizontal .yui3-menu-label {
background: none;
}
.yui3-skin-night .yui3-menubuttonnav .yui3-menu-label,
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label {
background-image: none;
}
.yui3-skin-night .yui3-menubuttonnav .yui3-menu-label {
padding-right: 0;
}
.yui3-skin-night .yui3-menubuttonnav .yui3-menu-label em {
font-style: normal;
padding-right: 20px;
display: block;
background: url(horizontal-menu-submenu-indicator.png) right center no-repeat;
}
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label {
padding: 0;
}
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label a {
float: left;
width: auto;
color: #fff;
text-decoration: none;
cursor: default;
padding: 0 5px 0 10px;
}
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label .yui3-menu-toggle {
padding: 0; /* Overide padding applied by the preceeding rule. */
border-left: solid 1px #303030;
width: 15px;
overflow: hidden;
text-indent: -1000px;
background: url(horizontal-menu-submenu-indicator.png) 3px center no-repeat;
}
/* Selected menuitem */
.yui3-skin-night .yui3-menu-label-active,
.yui3-skin-night .yui3-menu-label-menuvisible,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-label-active,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-label-menuvisible {
background-color: #292a2a;
}
.yui3-skin-night .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menuitem-active .yui3-menuitem-content {
background-image: none;
background-color: #292a2a;
background: -moz-linear-gradient(
0% 100% 90deg,
#252626 0%,
#333434 100%
);
background: -webkit-gradient(
linear,
left top,
left bottom,
from(#333434),
to(#252626)
);
/*
Undo values set for "border-left-width" and "margin-left" when the root
menu has a class of "yui-menubuttonnav" or "yui-splitbuttonnav" applied.
*/
border-left-width: 0;
margin-left: 0;
}
.yui3-skin-night .yui3-menu-horizontal .yui3-menu-label-active,
.yui3-skin-night .yui3-menu-horizontal .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-night .yui3-menu-horizontal .yui3-menu-label-menuvisible {
border-color: #303030;
background-color:#555658;
background: -moz-linear-gradient(
0% 100% 90deg,
#343536 0%,
#555658 96%,
#3E3F41 100%
);
background: -webkit-gradient(
linear,
left bottom,
left top,
from(#343536),
color-stop(0.96, #555658),
to(#3E3F41)
);
}
.yui3-skin-night .yui3-menubuttonnav .yui3-menu-label-active,
.yui3-skin-night .yui3-menubuttonnav .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-night .yui3-menubuttonnav .yui3-menu-label-menuvisible,
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label-active,
.yui3-skin-night .yui3-splitbuttonnav .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label-menuvisible {
border-left-width: 1px;
margin-left: -1px;
}
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label-menuvisible {
border-color: #303030;
background: transparent;
}
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label-menuvisible .yui3-menu-toggle {
border-color: #303030;
background-color: #505050;
}
File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 B

@@ -0,0 +1,266 @@
/* Vertical menus and submenus */
.yui3-skin-sam .yui3-menu-content,
.yui3-skin-sam .yui3-menu .yui3-menu .yui3-menu-content {
font-size: 93%; /* 12px */
line-height: 1.5; /* 18px */
*line-height: 1.45; /* For IE */
border: solid 1px #808080;
background: #fff;
padding: 3px 0;
}
.yui3-skin-sam .yui3-menu .yui3-menu .yui3-menu-content {
font-size: 100%;
}
/* Horizontal menus */
.yui3-skin-sam .yui3-menu-horizontal .yui3-menu-content {
line-height: 2; /* ~24px */
*line-height: 1.9; /* For IE */
background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
padding: 0;
}
.yui3-skin-sam .yui3-menu ul,
.yui3-skin-sam .yui3-menu ul ul {
margin-top: 3px;
padding-top: 3px;
border-top: solid 1px #ccc;
}
.yui3-skin-sam .yui3-menu ul.first-of-type {
border: 0;
margin: 0;
padding: 0;
}
.yui3-skin-sam .yui3-menu-horizontal ul {
padding: 0;
margin: 0;
border: 0;
}
.yui3-skin-sam .yui3-menu li,
.yui3-skin-sam .yui3-menu .yui3-menu li {
/*
For and IE 6 (Strict Mode and Quirks Mode) and IE 7 (Quirks Mode only):
Used to collapse superfluous white space between <li> elements that is
triggered by the "display" property of the <a> elements being set to
"block" by node-menunav-core.css file.
*/
_border-bottom: solid 1px #fff;
}
.yui3-skin-sam .yui3-menu-horizontal li {
_border-bottom: 0;
}
.yui3-skin-sam .yui3-menubuttonnav li {
border-right: solid 1px #ccc;
}
.yui3-skin-sam .yui3-splitbuttonnav li {
border-right: solid 1px #808080;
}
.yui3-skin-sam .yui3-menubuttonnav li li,
.yui3-skin-sam .yui3-splitbuttonnav li li {
border-right: 0;
}
/* Menuitems and menu labels */
.yui3-skin-sam .yui3-menu-label,
.yui3-skin-sam .yui3-menu .yui3-menu .yui3-menu-label,
.yui3-skin-sam .yui3-menuitem-content,
.yui3-skin-sam .yui3-menu .yui3-menu .yui3-menuitem-content {
/*padding: 0 20px;*/
padding: 0 1em;
color: #000;
text-decoration: none;
cursor: default;
/*
Necessary specify values for border, position and margin to override
values specified in the selectors that follow.
*/
float: none;
border: 0;
margin: 0;
}
.yui3-skin-sam .yui3-menu-horizontal .yui3-menu-label,
.yui3-skin-sam .yui3-menu-horizontal .yui3-menuitem-content {
padding: 0 10px;
border-style: solid;
border-color: #808080;
border-width: 1px 0;
margin: -1px 0;
float: left; /* Ensures that menu labels clear floated descendents.
Also gets negative margins working in IE 7
(Strict Mode). */
width: auto;
}
.yui3-skin-sam .yui3-menu-label,
.yui3-skin-sam .yui3-menu .yui3-menu .yui3-menu-label {
background: url(vertical-menu-submenu-indicator.png) right center no-repeat;
}
.yui3-skin-sam .yui3-menu-horizontal .yui3-menu-label {
background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
}
.yui3-skin-sam .yui3-menubuttonnav .yui3-menu-label,
.yui3-skin-sam .yui3-splitbuttonnav .yui3-menu-label {
background-image: none;
}
.yui3-skin-sam .yui3-menubuttonnav .yui3-menu-label {
padding-right: 0;
}
.yui3-skin-sam .yui3-menubuttonnav .yui3-menu-label em {
font-style: normal;
padding-right: 20px;
display: block;
background: url(horizontal-menu-submenu-indicator.png) right center no-repeat;
}
.yui3-skin-sam .yui3-splitbuttonnav .yui3-menu-label {
padding: 0;
}
.yui3-skin-sam .yui3-splitbuttonnav .yui3-menu-label a {
float: left;
width: auto;
color: #000;
text-decoration: none;
cursor: default;
padding: 0 5px 0 10px;
}
.yui3-skin-sam .yui3-splitbuttonnav .yui3-menu-label .yui3-menu-toggle {
padding: 0; /* Overide padding applied by the preceeding rule. */
border-left: solid 1px #ccc;
width: 15px;
overflow: hidden;
text-indent: -1000px;
background: url(horizontal-menu-submenu-indicator.png) 3px center no-repeat;
}
/* Selected menuitem */
.yui3-skin-sam .yui3-menu-label-active,
.yui3-skin-sam .yui3-menu-label-menuvisible,
.yui3-skin-sam .yui3-menu .yui3-menu .yui3-menu-label-active,
.yui3-skin-sam .yui3-menu .yui3-menu .yui3-menu-label-menuvisible {
background-color: #B3D4FF;
}
.yui3-skin-sam .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-sam .yui3-menu .yui3-menu .yui3-menuitem-active .yui3-menuitem-content {
background-image: none;
background-color: #B3D4FF;
/*
Undo values set for "border-left-width" and "margin-left" when the root
menu has a class of "yui-menubuttonnav" or "yui-splitbuttonnav" applied.
*/
border-left-width: 0;
margin-left: 0;
}
.yui3-skin-sam .yui3-menu-horizontal .yui3-menu-label-active,
.yui3-skin-sam .yui3-menu-horizontal .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-sam .yui3-menu-horizontal .yui3-menu-label-menuvisible {
border-color: #7D98B8;
background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;
}
.yui3-skin-sam .yui3-menubuttonnav .yui3-menu-label-active,
.yui3-skin-sam .yui3-menubuttonnav .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-sam .yui3-menubuttonnav .yui3-menu-label-menuvisible,
.yui3-skin-sam .yui3-splitbuttonnav .yui3-menu-label-active,
.yui3-skin-sam .yui3-splitbuttonnav .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-sam .yui3-splitbuttonnav .yui3-menu-label-menuvisible {
border-left-width: 1px;
margin-left: -1px;
}
.yui3-skin-sam .yui3-splitbuttonnav .yui3-menu-label-menuvisible {
border-color: #808080;
background: transparent;
}
.yui3-skin-sam .yui3-splitbuttonnav .yui3-menu-label-menuvisible .yui3-menu-toggle {
border-color: #7D98B8;
background: url(horizontal-menu-submenu-toggle.png) left center no-repeat;
}
File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff