upgraded yui to 2.2.2 and yui-ext to 1.0.1a
This commit is contained in:
parent
4d9af2c691
commit
547ced6500
1992 changed files with 645731 additions and 0 deletions
52
www/extras/yui/examples/tabview/css/example.css
Normal file
52
www/extras/yui/examples/tabview/css/example.css
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
/*
|
||||
Copyright (c) 2006, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
Version: 0.10.0
|
||||
*/
|
||||
|
||||
body {
|
||||
margin:0;
|
||||
font:small arial;
|
||||
}
|
||||
|
||||
#doc {
|
||||
margin:10px;
|
||||
}
|
||||
|
||||
ul, li {
|
||||
list-style:none;
|
||||
}
|
||||
|
||||
form, p, ul, li, h1, h2, h3, h4, h5, h6 {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
p {
|
||||
padding:1em 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color:#666;
|
||||
font:bold 150% palatino, georgia;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font:bold 130% arial;
|
||||
margin:1em 0 0.5em;
|
||||
}
|
||||
|
||||
#hd img {
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
#hd h1 {
|
||||
display:inline;
|
||||
margin:0 0 0 20px;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
#examples li {
|
||||
padding:0.5em 1em;
|
||||
}
|
||||
31
www/extras/yui/examples/tabview/css/module_tabs.css
Normal file
31
www/extras/yui/examples/tabview/css/module_tabs.css
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
|
||||
.yui-navset .yui-nav li { /* tabs */
|
||||
font:77%/1.2 verdana;
|
||||
margin-bottom:-10px; /* pointer overlap */
|
||||
padding-bottom:6px; /* make room for pointer */
|
||||
position:relative;
|
||||
top:-2px; /* pull above nav */
|
||||
}
|
||||
|
||||
|
||||
.yui-navset .yui-content { /* content pane */
|
||||
background:#fff;
|
||||
border:1px solid #dcdcdc;
|
||||
}
|
||||
|
||||
.yui-navset .yui-nav {
|
||||
background:#e1e1e1 url(../img/newcats_bkgd.gif) repeat-x;
|
||||
border:1px solid #dcdcdc;
|
||||
}
|
||||
|
||||
.yui-navset .yui-nav li a em {
|
||||
padding:0.5em;
|
||||
}
|
||||
|
||||
.yui-navset .yui-nav .selected a {
|
||||
background:#293852 url(../img/tab_right.gif) no-repeat top right;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
.yui-navset .yui-nav .selected { background:url(../img/ptr.gif) no-repeat bottom center; }
|
||||
.yui-navset .yui-nav .selected em { background:url(../img/tab_left.gif) no-repeat; }
|
||||
76
www/extras/yui/examples/tabview/css/round_tabs.css
Normal file
76
www/extras/yui/examples/tabview/css/round_tabs.css
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
.yui-navset .yui-content {
|
||||
border:1px solid #ccc;
|
||||
}
|
||||
.yui-navset .yui-nav .selected a, .yui-navset .yui-nav a:hover {
|
||||
background-color:#fff;
|
||||
}
|
||||
|
||||
.yui-navset .yui-nav li a {
|
||||
background:#e5e5e5 url(../img/round_4px_trans_gray.gif) no-repeat;
|
||||
}
|
||||
.yui-navset .yui-nav li a em {
|
||||
background:transparent url(../img/round_4px_trans_gray.gif) no-repeat top right;
|
||||
padding:0.5em;
|
||||
}
|
||||
|
||||
/* top oriented */
|
||||
|
||||
.yui-navset-top .yui-nav { margin-bottom:-1px; } /* for overlap, based on content border-width */
|
||||
.yui-navset-top .yui-nav li a {
|
||||
border-bottom:1px solid #ccc;
|
||||
}
|
||||
|
||||
.yui-navset-top .yui-nav .selected a { border-bottom:0; }
|
||||
.yui-navset-top .yui-nav .selected a em { padding-bottom:0.6em; } /* adjust height */
|
||||
|
||||
/* top & bottom oriented */
|
||||
.yui-navset-top .yui-nav li a em, .yui-navset-bottom .yui-nav li a em {
|
||||
margin-left:4px; /* based on border-radius */
|
||||
padding-right:8px; /* based on border-radius (2x left to balance margin) */
|
||||
padding-left:4px;
|
||||
}
|
||||
|
||||
/* bottom oriented */
|
||||
|
||||
.yui-navset-bottom .yui-nav { margin-top:-1px; } /* for overlap, based on content border-width */
|
||||
.yui-navset-bottom .yui-nav li a { border-top:1px solid #ccc; }
|
||||
|
||||
.yui-navset-bottom .yui-nav .selected a { border-top:0; }
|
||||
.yui-navset-bottom .yui-nav .selected a em { padding-top:0.6em; } /* adjust height */
|
||||
|
||||
.yui-navset-bottom .yui-nav li a { background-position:bottom left; }
|
||||
.yui-navset-bottom .yui-nav li a em { background-position:bottom right; }
|
||||
|
||||
/* left oriented */
|
||||
|
||||
.yui-navset-left .yui-content { margin-left:-1px; } /* for overlap, based on content border-width */
|
||||
|
||||
.yui-navset-left .yui-nav li a {
|
||||
border-right:1px solid #ccc;
|
||||
padding-bottom:4px;
|
||||
}
|
||||
|
||||
.yui-navset-left .yui-nav li a em, .yui-navset-right .yui-nav li a em {
|
||||
padding-top:8px; /* based on border-radius (2x left to balance margin) */
|
||||
}
|
||||
|
||||
.yui-navset-left .yui-nav .selected a { border-right:0; }
|
||||
.yui-navset-left .yui-nav .selected a em { padding-left:0.6em; } /* adjust width */
|
||||
|
||||
.yui-navset-left .yui-nav li a { background-position:bottom left; }
|
||||
.yui-navset-left .yui-nav li a em { background-position:top left; }
|
||||
|
||||
/* right oriented */
|
||||
|
||||
.yui-navset-right .yui-content { margin-right:-1px; } /* for overlap, based on content border-width */
|
||||
|
||||
.yui-navset-right .yui-nav li a {
|
||||
border-left:1px solid #ccc;
|
||||
padding-bottom:4px;
|
||||
}
|
||||
|
||||
.yui-navset-right .yui-nav .selected a { border-left:0; }
|
||||
.yui-navset-right .yui-nav .selected a em { padding-left:0.6em; } /* adjust width */
|
||||
|
||||
.yui-navset-right .yui-nav li a { background-position:bottom right; }
|
||||
.yui-navset-right .yui-nav li a em { background-position:top right; }
|
||||
Loading…
Add table
Add a link
Reference in a new issue