Upgrading YUI library to 2.5.1
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
parent
3f04871b93
commit
bc9dfff6ae
17 changed files with 163 additions and 505 deletions
|
@ -1,9 +1,14 @@
|
|||
@import url("../lib/yui/reset-fonts-grids.css");
|
||||
@import url("../lib/yui/skin.css");
|
||||
|
||||
a, a:link, a:visited, a:active {
|
||||
color : #0000CC;
|
||||
}
|
||||
|
||||
.yui-button a,.yui-button a:link,.yui-button a:visited {
|
||||
color : #000;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color : #669ACC;
|
||||
}
|
||||
|
@ -1367,40 +1372,9 @@ input[type=reset]:active, input[type=button]:active, input.submit:active {
|
|||
font-style : italic;
|
||||
}
|
||||
|
||||
/* Define a new style for each menu */
|
||||
|
||||
.yui-skin-sam .yuimenu {
|
||||
line-height: 2;/* ~24px */
|
||||
*line-height: 1.9; /* For IE */
|
||||
}
|
||||
|
||||
a.yuimenuitemlabel {
|
||||
}
|
||||
|
||||
.yui-skin-sam .yuimenu .bd {
|
||||
border-width: 1px;
|
||||
border-color: #ddd #666 #666 #ddd;
|
||||
border-style: solid;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.yui-skin-sam #sublangs li.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 #ccc;
|
||||
}
|
||||
|
||||
|
||||
/* Define a new style for a MenuItem instance's "selected" state. */
|
||||
.yui-skin-sam #sublangs .yuimenuitem-selected {
|
||||
background-color: #82AAE1;
|
||||
}
|
||||
.yui-skin-sam #sublangs .yuimenuitemlabel-selected {
|
||||
color: #fff;
|
||||
a.yuimenuitemlabel:hover {
|
||||
background-color : #B3D4FF;
|
||||
color : #000;
|
||||
}
|
||||
|
||||
#toplevelnav {
|
||||
|
@ -1565,4 +1539,13 @@ label.permissioncode {
|
|||
span.permissiondesc {
|
||||
font-weight : normal;
|
||||
}
|
||||
|
||||
/* autocomplete additions */
|
||||
#borrowerautocomplete { width: 450px; text-align:left;} /* z-index needed on top instances for ie & sf absolute inside relative issue */
|
||||
.autocomplete { width:130px; }/* set width of widget here*/
|
||||
.autocomplete .yui-ac-highlight ,
|
||||
.autocomplete .yui-ac-highlight .sample-result,
|
||||
.autocomplete .yui-ac-highlight .sample-query { color:#FFF; }
|
||||
.autocomplete .sample-result { color: black; }
|
||||
.autocomplete .sample-query { color:#000; }
|
||||
#findborrower { position:static; width:335px; }
|
||||
#yborrowercontainer { text-align:left;width:335px; }
|
|
@ -44,17 +44,12 @@
|
|||
<!-- TMPL_IF name="intranetcolorstylesheet" -->
|
||||
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/<!-- TMPL_VAR NAME="intranetcolorstylesheet" -->" />
|
||||
<!-- /TMPL_IF -->
|
||||
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/lib/yui/button.css" />
|
||||
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/lib/yui/menu.css" />
|
||||
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/lib/yui/container.css" />
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/yahoo-dom-event/yahoo-dom-event.js"></script>
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/element/element-beta-min.js"></script>
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/container/container_core-min.js"></script>
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/menu/menu-min.js"></script>
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/button/button-beta-min.js"></script>
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/utilities/utilities.js"></script>
|
||||
<!-- TMPL_IF NAME="CircAutocompl" -->
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/autocomplete/autocomplete-min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/lib/yui/autocomplete.css" />
|
||||
<!-- /TMPL_IF -->
|
||||
|
||||
<!-- yui js -->
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/utilities/utilities.js"></script>
|
||||
<!-- TMPL_IF NAME="CircAutocompl" --><script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/autocomplete/autocomplete-min.js"></script> <!-- /TMPL_IF -->
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/button/button-min.js"></script>
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/container/container_core-min.js"></script>
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR NAME="yuipath" -->/menu/menu-min.js"></script>
|
||||
<!-- koha core js -->
|
||||
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/js/staff-global.js"></script>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,58 +0,0 @@
|
|||
.autocomplete .yui-ac {
|
||||
position:relative;
|
||||
font-size:100%;
|
||||
}
|
||||
.autocomplete .yui-ac-input {
|
||||
position:absolute;
|
||||
width:100%;}
|
||||
.autocomplete .yui-ac-container {
|
||||
position:absolute;
|
||||
top:1.6em;
|
||||
width:100%;
|
||||
}
|
||||
.autocomplete .yui-ac-content {
|
||||
position:absolute;
|
||||
width:100%;
|
||||
border:1px solid #808080;
|
||||
background:#fff;
|
||||
overflow:hidden;
|
||||
z-index:9050;
|
||||
}
|
||||
.autocomplete .yui-ac-shadow {
|
||||
position:absolute;
|
||||
margin:.3em;
|
||||
width:100%;
|
||||
background:#000;
|
||||
-moz-opacity:0.10;
|
||||
opacity:.10;
|
||||
filter:alpha(opacity=10);
|
||||
z-index:9049;
|
||||
}
|
||||
.autocomplete .yui-ac-content ul {
|
||||
margin:0;
|
||||
padding:0;
|
||||
width:100%;
|
||||
}
|
||||
.autocomplete .yui-ac-content li {
|
||||
margin:0;
|
||||
padding:2px 5px;
|
||||
cursor:default;
|
||||
white-space:nowrap;
|
||||
}
|
||||
.autocomplete .yui-ac-content li.yui-ac-prehighlight {
|
||||
background:#B3D4FF;
|
||||
}
|
||||
.autocomplete .yui-ac-content li.yui-ac-highlight {
|
||||
background:#426FD9;
|
||||
color:#FFF;
|
||||
}
|
||||
|
||||
#borrowerautocomplete { width: 450px; text-align:left;} /* z-index needed on top instances for ie & sf absolute inside relative issue */
|
||||
.autocomplete { width:130px; }/* set width of widget here*/
|
||||
.autocomplete .yui-ac-highlight ,
|
||||
.autocomplete .yui-ac-highlight .sample-result,
|
||||
.autocomplete .yui-ac-highlight .sample-query { color:#FFF; }
|
||||
.autocomplete .sample-result { color: black; }
|
||||
.autocomplete .sample-query { color:#000; }
|
||||
#findborrower { position:static; width:335px; }
|
||||
#yborrowercontainer { text-align:left;width:300px; }
|
File diff suppressed because one or more lines are too long
|
@ -1,7 +0,0 @@
|
|||
/*
|
||||
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.3.1
|
||||
*/
|
||||
body .yui-button{display:-moz-inline-box;display:inline-block;}body .yui-button .first-child{display:block;*display:inline-block;}body .yui-button button,body .yui-button a{display:block;*display:inline-block;border:none;}body .yui-button button{background-color:transparent;*overflow:visible;cursor:pointer;}body .yui-button a{text-decoration:none;}body .yui-button{border-width:1px 0;border-style:solid;border-color:#808080;background:url(yui-sprite.png) repeat-x 0 0;margin:auto .25em;}body .yui-button .first-child{border-width:0 1px;border-style:solid;border-color:#808080;margin:0 -1px;*position:relative;*left:-1px;}body .yui-button button,body .yui-button a{padding:0 10px;font-size:93%;line-height:2;*line-height:1.7;min-height:2em;*min-height:auto;color:#000;}body .yui-split-button button,body .yui-menu-button button{padding-right:20px;background-position:right center;background-repeat:no-repeat;}body .yui-menu-button button{background-image:url(menu-button-arrow.png);}body .yui-split-button button{background-image:url(split-button-arrow.png);}body .yui-button-focus{border-color:#7D98B8;background-position:0 -1300px;}body .yui-button-focus .first-child{border-color:#7D98B8;}body .yui-button-focus button,body .yui-button-focus a{color:#000;}body .yui-split-button-focus button{background-image:url(split-button-arrow-focus.png);}body .yui-button-hover{border-color:#7D98B8;background-position:0 -1300px;}body .yui-button-hover .first-child{border-color:#7D98B8;}body .yui-button-hover button,body .yui-button-hover a{color:#000;}body .yui-split-button-hover button{background-image:url(split-button-arrow-hover.png);}body .yui-button-active{border-color:#7D98B8;background-position:0 -1700px;}body .yui-button-active .first-child{border-color:#7D98B8;}body .yui-button-active button,body .yui-button-active a{color:#000;}body .yui-split-button-activeoption{border-color:#808080;background-position:0 0;}body .yui-split-button-activeoption .first-child{border-color:#808080;}body .yui-split-button-activeoption button{background-image:url(split-button-arrow-active.png);}body .yui-radio-button-checked,body .yui-checkbox-button-checked{border-color:#304369;background-position:0 -1400px;}body .yui-radio-button-checked .first-child,body .yui-checkbox-button-checked .first-child{border-color:#304369;}body .yui-radio-button-checked button,body .yui-checkbox-button-checked button{color:#fff;}body .yui-button-disabled{border-color:#ccc;background-position:0 -1500px;}body .yui-button-disabled .first-child{border-color:#ccc;}body .yui-button-disabled button,body .yui-button-disabled a{color:#A6A6A6;cursor:default;}body .yui-menu-button-disabled button{background-image:url(menu-button-arrow-disabled.png);}body .yui-split-button-disabled button{background-image:url(split-button-arrow-disabled.png);}
|
11
koha-tmpl/intranet-tmpl/prog/en/lib/yui/button/button-min.js
vendored
Normal file
11
koha-tmpl/intranet-tmpl/prog/en/lib/yui/button/button-min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -1,318 +0,0 @@
|
|||
/*
|
||||
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.4.1
|
||||
*/
|
||||
.yui-overlay,
|
||||
.yui-panel-container {
|
||||
visibility:hidden;
|
||||
position:absolute;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.yui-tt {
|
||||
visibility:hidden;
|
||||
position:absolute;
|
||||
color:#333;
|
||||
background-color:#FDFFB4;
|
||||
font-family:arial,helvetica,verdana,sans-serif;
|
||||
padding:2px;
|
||||
border:1px solid #FCC90D;
|
||||
font:100% sans-serif;
|
||||
width:auto;
|
||||
}
|
||||
|
||||
/*
|
||||
PLEASE NOTE: The <DIV> element used for a Tooltip's shadow is appended
|
||||
to its root element via JavaScript once it has been rendered. The
|
||||
code that creates the shadow lives in the Tooltip's public "onRender"
|
||||
event handler that is a prototype method of YAHOO.widget.Tooltip.
|
||||
Implementers wishing to remove a Tooltip's shadow or add any other markup
|
||||
required for a given skin for Tooltip should override the "onRender" method.
|
||||
*/
|
||||
|
||||
.yui-tt-shadow {
|
||||
display: none;
|
||||
}
|
||||
|
||||
* html body.masked select {
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
* html div.yui-panel-container select {
|
||||
visibility:inherit;
|
||||
}
|
||||
|
||||
* html div.drag select {
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
* html div.hide-select select {
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
.mask {
|
||||
z-index: 1;
|
||||
display:none;
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
-moz-opacity: 0.5;
|
||||
opacity:.50;
|
||||
filter: alpha(opacity=50);
|
||||
background-color:#CCC;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
There are two known issues with YAHOO.widget.Overlay (and its subclasses) 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:
|
||||
|
||||
1) The "overflow" property of an Overlay instance's root 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
|
||||
Overlay 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 Container 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,
|
||||
.hide-scrollbars * {
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
}
|
||||
|
||||
.hide-scrollbars select {
|
||||
|
||||
display: none;
|
||||
|
||||
}
|
||||
|
||||
.show-scrollbars {
|
||||
|
||||
overflow: auto;
|
||||
|
||||
}
|
||||
|
||||
.yui-panel-container.show-scrollbars {
|
||||
|
||||
overflow: visible;
|
||||
|
||||
}
|
||||
|
||||
.yui-panel-container.show-scrollbars .underlay {
|
||||
|
||||
overflow: auto;
|
||||
|
||||
}
|
||||
|
||||
.yui-panel-container.focused {
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Panel underlay styles */
|
||||
|
||||
.yui-panel-container .underlay {
|
||||
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
|
||||
}
|
||||
|
||||
.yui-panel-container.matte {
|
||||
|
||||
padding: 3px;
|
||||
background-color: #fff;
|
||||
|
||||
}
|
||||
|
||||
.yui-panel-container.shadow .underlay {
|
||||
|
||||
top: 3px;
|
||||
bottom: -3px;
|
||||
right: -3px;
|
||||
left: 3px;
|
||||
background-color: #000;
|
||||
opacity: .12;
|
||||
filter: alpha(opacity=12); /* For IE */
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
Workaround for Safari 2.x - the yui-force-redraw class is applied, and then removed when
|
||||
the Panel's content changes, to force Safari 2.x to redraw the underlay.
|
||||
We attempt to choose a CSS property which has no visual impact when added,
|
||||
removed, but still causes Safari to redraw
|
||||
*/
|
||||
.yui-panel-container.shadow .underlay.yui-force-redraw {
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
.yui-effect-fade .underlay {
|
||||
display:none;
|
||||
}
|
||||
|
||||
.yui-panel {
|
||||
visibility:hidden;
|
||||
border-collapse:separate;
|
||||
position:relative;
|
||||
left:0;
|
||||
top:0;
|
||||
font:1em Arial;
|
||||
background-color:#FFF;
|
||||
border:1px solid #000;
|
||||
z-index:1;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.yui-panel .hd {
|
||||
background-color:#3d77cb;
|
||||
color:#FFF;
|
||||
font-size:100%;
|
||||
line-height:100%;
|
||||
border:1px solid #FFF;
|
||||
border-bottom:1px solid #000;
|
||||
font-weight:bold;
|
||||
padding:4px;
|
||||
white-space:nowrap;
|
||||
}
|
||||
|
||||
.yui-panel .bd {
|
||||
overflow:hidden;
|
||||
padding:4px;
|
||||
}
|
||||
|
||||
.yui-panel .bd p {
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
.yui-panel .container-close {
|
||||
position:absolute;
|
||||
top:5px;
|
||||
right:4px;
|
||||
z-index:6;
|
||||
height:12px;
|
||||
width:12px;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
background:url(close12_1.gif) no-repeat;
|
||||
cursor:pointer;
|
||||
visibility:inherit;
|
||||
}
|
||||
|
||||
.yui-panel .ft {
|
||||
padding:4px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.yui-simple-dialog .bd .yui-icon {
|
||||
background-repeat:no-repeat;
|
||||
width:16px;
|
||||
height:16px;
|
||||
margin-right:10px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.yui-simple-dialog .bd span.blckicon {
|
||||
background: url("blck16_1.gif") no-repeat;
|
||||
}
|
||||
|
||||
.yui-simple-dialog .bd span.alrticon {
|
||||
background: url("alrt16_1.gif") no-repeat;
|
||||
}
|
||||
|
||||
.yui-simple-dialog .bd span.hlpicon {
|
||||
background: url("hlp16_1.gif") no-repeat;
|
||||
}
|
||||
|
||||
.yui-simple-dialog .bd span.infoicon {
|
||||
background: url("info16_1.gif") no-repeat;
|
||||
}
|
||||
|
||||
.yui-simple-dialog .bd span.warnicon {
|
||||
background: url("warn16_1.gif") no-repeat;
|
||||
}
|
||||
|
||||
.yui-simple-dialog .bd span.tipicon {
|
||||
background: url("tip16_1.gif") no-repeat;
|
||||
}
|
||||
|
||||
.yui-dialog .ft,
|
||||
.yui-simple-dialog .ft {
|
||||
padding-bottom:5px;
|
||||
padding-right:5px;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
.yui-dialog form,
|
||||
.yui-simple-dialog form {
|
||||
margin:0;
|
||||
}
|
||||
|
||||
.button-group button {
|
||||
font:100 76% verdana;
|
||||
text-decoration:none;
|
||||
background-color: #E4E4E4;
|
||||
color: #333;
|
||||
cursor: hand;
|
||||
vertical-align: middle;
|
||||
border: 2px solid #797979;
|
||||
border-top-color:#FFF;
|
||||
border-left-color:#FFF;
|
||||
margin:2px;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.button-group button.default {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.button-group button:hover,
|
||||
.button-group button.hover {
|
||||
border:2px solid #90A029;
|
||||
background-color:#EBF09E;
|
||||
border-top-color:#FFF;
|
||||
border-left-color:#FFF;
|
||||
}
|
||||
|
||||
.button-group button:active {
|
||||
border:2px solid #E4E4E4;
|
||||
background-color:#BBB;
|
||||
border-top-color:#333;
|
||||
border-left-color:#333;
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,7 +0,0 @@
|
|||
/*
|
||||
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.3.1
|
||||
*/
|
||||
.yuimenu .yuimenu,.yuimenubar .yuimenu{position:absolute;visibility:hidden;}.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{white-space:nowrap;}.yui-menu-shadow{position:absolute;z-index:-1;}.hide-scrollbars *{overflow:hidden;}.hide-scrollbars select{display:none;}.yuimenu.show-scrollbars{overflow:visible;}.yuimenu.hide-scrollbars .yui-menu-shadow{overflow:hidden;}.yuimenu.show-scrollbars .yui-menu-shadow{overflow:auto;}body .yuimenubar{border:solid 1px #808080;background:url(yui-sprite.png) repeat-x 0 0;}body .yuimenubar .bd,body .yuimenubar ul{*zoom:1;}body .yuimenubar>.bd>ul:after{content:".";display:block;clear:both;visibility:hidden;height:0;line-height:0;}body .yuimenubaritem{float:left;}body .yuimenubarnav .yuimenubaritem{border-right:solid 1px #ccc;}body .yuimenubaritemlabel{display:block;*display:inline-block;font-size:93%;line-height:2;*line-height:1.9;padding:0 10px;color:#000;text-decoration:none;outline:none;cursor:default;border-style:solid;border-color:#808080;border-width:1px 0;position:relative;margin:-1px 0;}body .yuimenubarnav .yuimenubaritemlabel{padding-right:20px;}body .yuimenubaritemlabel .submenuindicator{width:1px;height:1px;top:0;left:0;}body .yuimenubarnav .yuimenubaritemlabel .submenuindicator{top:50%;right:8px;left:auto;margin-top:-3px;height:4px;width:7px;text-indent:8px;background-position:-16px -856px;}body .yuimenubaritem a.selected{background:url(yui-sprite.png) repeat-x 0 -1700px;border-color:#7D98B8;}body .yuimenubarnav .yuimenubaritem a.selected{border-left-width:1px;margin-left:-1px;*left:-1px;}body .yuimenubar a.selected .submenuindicator{background:transparent;}body .yuimenubarnav a.selected .submenuindicator{background:url(yui-sprite.png) repeat-x -16px -856px;}body .yuimenubaritem a.disabled{cursor:default;color:#A6A6A6;}body .yuimenubarnav .yuimenubaritem a.disabled .submenuindicator{background-position:-16px -881px;}body .yuimenu .bd{border:solid 1px #808080;background-color:#fff;}body .yuimenu ul{padding:3px 0;border-width:1px 0 0 0;border-color:#ccc;border-style:solid;}body .yuimenu ul.first-of-type{border-width:0;}body .yuimenu h6{font-size:93%;font-weight:bold;line-height:1.5;*line-height:1.45;border-style:solid;border-color:#ccc;border-width:1px 0 0 0;color:#a4a4a4;padding:3px 10px 0 10px;}body .yuimenu ul.hastitle,body .yuimenu h6.first-of-type{border-width:0;}body .yuimenu .yui-menu-body-scrolled{border-color:#ccc #808080;overflow:hidden;}body .yuimenu .topscrollbar,body .yuimenu .bottomscrollbar{height:16px;border:solid 1px #808080;background:#fff url(yui-sprite.png) no-repeat 0 0;}body .yuimenu .topscrollbar{border-bottom-width:0;background-position:center -950px;}body .yuimenu .topscrollbar_disabled{background-position:center -975px;}body .yuimenu .bottomscrollbar{border-top-width:0;background-position:center -850px;}body .yuimenu .bottomscrollbar_disabled{background-position:center -875px;}body .yuimenuitemlabel{font-size:93%;line-height:1.5;*line-height:1.45;padding:0 20px;display:block;color:#000;text-decoration:none;outline:none;position:relative;*position:static;cursor:default;}body .yuimenuitemlabel .helptext{font-style:normal;display:block;margin:-1.5em 0 0 10em;*margin-top:-1.45em;}body .yuimenuitemlabel .submenuindicator,body .yuimenuitemlabel .checkedindicator,body .yuimenubaritemlabel .submenuindicator{position:absolute;overflow:hidden;background:url(yui-sprite.png) no-repeat;}body .yuimenuitemlabel .submenuindicator,body .yuimenuitemlabel .checkedindicator{*position:static;*display:inline-block;}body .yuimenuitemlabel .submenuindicator{top:50%;right:8px;margin-top:-3px;height:7px;width:4px;text-indent:5px;background-position:0 -906px;}body .yuimenuitemlabel .checkedindicator{top:50%;left:8px;margin-top:-3px;height:7px;width:7px;text-indent:8px;background-position:0 -1006px;}body .visible .yuimenuitemlabel .submenuindicator{*float:right;*margin:-1em 8px 0 8px;}body .visible .yuimenuitem .hassubmenu{*padding-right:0;}body .visible .yuimenuitemlabel .checkedindicator{*float:left;*margin:-1em 0 0 -12px;}body .yui-menu-shadow-visible{top:2px;right:-3px;left:-3px;bottom:-3px;background-color:#000;opacity:.12;*filter:alpha(opacity=12);visibility:visible;}body .visible .bd,body .visible .yuimenuitem{_zoom:1;}body .visible .yuimenuitemlabel{*zoom:1;}body .yuimenuitem a.selected{background:#B3D4FF;}body .yuimenubar .yuimenuitem a.selected .submenuindicator{background:url(yui-sprite.png) no-repeat 0 -906px;}body .yuimenubarnav .yuimenuitem a.selected{border-width:0;margin:0;*left:0;}body .yuimenuitem a.disabled{cursor:default;color:#A6A6A6;}body .yuimenuitem a.disabled .submenuindicator{background-position:0 -931px;}body .yuimenuitem a.disabled .checkedindicator{background-position:0 -1031px;}
|
File diff suppressed because one or more lines are too long
23
koha-tmpl/intranet-tmpl/prog/en/lib/yui/skin.css
Normal file
23
koha-tmpl/intranet-tmpl/prog/en/lib/yui/skin.css
Normal file
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue