import v2.0.0.0_RC3 | 2012-07-01
https://github.com/lucanos/CommunityID -> http://www.itadmins.net/archives/357
This commit is contained in:
93
javascript/yui/datatable/assets/datatable-core.css
Normal file
93
javascript/yui/datatable/assets/datatable-core.css
Normal file
@ -0,0 +1,93 @@
|
||||
/*
|
||||
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.7.0
|
||||
*/
|
||||
/* foundational CSS */
|
||||
|
||||
/* mask */
|
||||
.yui-skin-sam .yui-dt-mask {
|
||||
position:absolute;
|
||||
z-index:9500;
|
||||
}
|
||||
|
||||
/* scrollable */
|
||||
.yui-dt-tmp {
|
||||
position:absolute;
|
||||
left:-9000px;
|
||||
}
|
||||
|
||||
.yui-dt-scrollable .yui-dt-bd {
|
||||
overflow:auto;
|
||||
}
|
||||
.yui-dt-scrollable .yui-dt-hd {
|
||||
overflow:hidden;
|
||||
position:relative; /* for ie overflow bug http://rowanw.com/bugs/overflow_relative.htm */
|
||||
}
|
||||
|
||||
.yui-dt-scrollable .yui-dt-bd thead tr,
|
||||
.yui-dt-scrollable .yui-dt-bd thead th {
|
||||
position:absolute;
|
||||
left:-1500px;
|
||||
}
|
||||
|
||||
.yui-dt-scrollable tbody {
|
||||
-moz-outline:none;
|
||||
}
|
||||
|
||||
/* sortable columns */
|
||||
|
||||
.yui-skin-sam thead .yui-dt-sortable {
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
/* draggable columns */
|
||||
.yui-skin-sam thead .yui-dt-draggable {
|
||||
cursor: move;
|
||||
}
|
||||
.yui-dt-coltarget {
|
||||
position: absolute;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
/* resizeable columns */
|
||||
.yui-dt-hd {
|
||||
zoom:1;
|
||||
}
|
||||
th.yui-dt-resizeable .yui-dt-resizerliner {
|
||||
position:relative;
|
||||
}
|
||||
.yui-dt-resizer {
|
||||
position:absolute;
|
||||
right:0;
|
||||
bottom:0;
|
||||
height:100%;
|
||||
cursor:e-resize;
|
||||
cursor:col-resize;
|
||||
background-color:#CCC;opacity:0;filter: alpha(opacity=0); /* Bug 1952811: IE transparency z-index */
|
||||
}
|
||||
.yui-dt-resizerproxy {
|
||||
visibility:hidden;
|
||||
position:absolute;
|
||||
z-index:9000;
|
||||
background-color:#CCC;opacity:0;filter: alpha(opacity=0); /* Bug 1952811: IE transparency z-index */
|
||||
}
|
||||
|
||||
/* hidden columns */
|
||||
th.yui-dt-hidden .yui-dt-liner,
|
||||
td.yui-dt-hidden .yui-dt-liner,
|
||||
th.yui-dt-hidden .yui-dt-resizer {
|
||||
/*TODO: document change from 2.5.2 to 2.6
|
||||
margin:0;
|
||||
padding:0;
|
||||
white-space:nowrap;
|
||||
width:1px;
|
||||
overflow:hidden;*/
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* editing */
|
||||
.yui-dt-editor {
|
||||
position:absolute;z-index:9000;
|
||||
}
|
49
javascript/yui/datatable/assets/datatable.css
Normal file
49
javascript/yui/datatable/assets/datatable.css
Normal file
@ -0,0 +1,49 @@
|
||||
/*
|
||||
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.7.0
|
||||
*/
|
||||
/*foundational css*/
|
||||
.yui-dt-table th, .yui-dt-table td {
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
th .yui-dt-header {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
th .yui-dt-label {
|
||||
position:relative;
|
||||
border-right:10px;
|
||||
}
|
||||
|
||||
th .yui-dt-resizer {
|
||||
position:absolute;
|
||||
margin-right:-6px;
|
||||
right:0;
|
||||
bottom:0;
|
||||
width:6px;
|
||||
height:100%;
|
||||
cursor:w-resize;
|
||||
cursor:col-resize;
|
||||
}
|
||||
|
||||
/* foundational scrolling css */
|
||||
.yui-dt-scrollable {
|
||||
*overflow-y:auto; /* for ie */
|
||||
}
|
||||
.yui-dt-scrollable thead {
|
||||
display:block; /* for safari and opera */
|
||||
}
|
||||
.yui-dt-scrollable thead tr {
|
||||
position:relative; /* for ie */
|
||||
}
|
||||
.yui-dt-scrollbody {
|
||||
display:block; /* for safari and opera */
|
||||
overflow:auto; /* for gecko */
|
||||
}
|
||||
|
||||
.yui-dt-editor {
|
||||
position:absolute;
|
||||
}
|
240
javascript/yui/datatable/assets/skins/sam/datatable-skin.css
Normal file
240
javascript/yui/datatable/assets/skins/sam/datatable-skin.css
Normal file
@ -0,0 +1,240 @@
|
||||
/*
|
||||
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.7.0
|
||||
*/
|
||||
/* basic skin styles */
|
||||
.yui-skin-sam .yui-dt table {
|
||||
margin:0;padding:0;
|
||||
font-family:arial;font-size:inherit;
|
||||
border-collapse:separate;*border-collapse:collapse;border-spacing:0; /* since ie6 and ie7 behave differently */
|
||||
border:1px solid #7F7F7F;
|
||||
}
|
||||
.yui-skin-sam .yui-dt thead {border-spacing:0;} /* for safari bug */
|
||||
|
||||
.yui-skin-sam .yui-dt caption {
|
||||
color:#000000;
|
||||
font-size:85%;
|
||||
font-weight:normal;
|
||||
font-style:italic;
|
||||
line-height:1;
|
||||
padding:1em 0pt;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-dt th {
|
||||
background:#D8D8DA url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0; /* header gradient */
|
||||
}
|
||||
.yui-skin-sam .yui-dt th,
|
||||
.yui-skin-sam .yui-dt th a {
|
||||
font-weight:normal;text-decoration:none;color:#000; /* header text */
|
||||
vertical-align:bottom;
|
||||
}
|
||||
.yui-skin-sam .yui-dt th {
|
||||
margin:0;padding:0;
|
||||
border:none;
|
||||
border-right:1px solid #CBCBCB;/* inner column border */
|
||||
}
|
||||
.yui-skin-sam .yui-dt tr.yui-dt-first td {
|
||||
border-top:1px solid #7F7F7F; /* tbody top border */
|
||||
}
|
||||
.yui-skin-sam .yui-dt th .yui-dt-liner {
|
||||
white-space:nowrap;
|
||||
}
|
||||
.yui-skin-sam .yui-dt-liner {
|
||||
margin:0;padding:0;
|
||||
padding:4px 10px 4px 10px; /* cell padding */
|
||||
}
|
||||
.yui-skin-sam .yui-dt-coltarget {
|
||||
width: 5px;
|
||||
background-color: red;
|
||||
}
|
||||
.yui-skin-sam .yui-dt td {
|
||||
margin:0;padding:0;
|
||||
border:none;
|
||||
border-right:1px solid #CBCBCB; /* inner column border */
|
||||
text-align:left;
|
||||
}
|
||||
.yui-skin-sam .yui-dt-list td {
|
||||
border-right:none; /* disable inner column border in list mode */
|
||||
}
|
||||
.yui-skin-sam .yui-dt-resizer {
|
||||
width:6px;
|
||||
}
|
||||
|
||||
/* mask */
|
||||
.yui-skin-sam .yui-dt-mask {
|
||||
background-color: #000;
|
||||
opacity: .25;
|
||||
filter: alpha(opacity=25); /* Set opacity in IE */
|
||||
}
|
||||
|
||||
/* messaging */
|
||||
.yui-skin-sam .yui-dt-message {
|
||||
background-color:#FFF;
|
||||
}
|
||||
|
||||
/* scrolling */
|
||||
.yui-skin-sam .yui-dt-scrollable table {border:none;}
|
||||
.yui-skin-sam .yui-dt-scrollable .yui-dt-hd {border-left:1px solid #7F7F7F;border-top:1px solid #7F7F7F;border-right:1px solid #7F7F7F;}
|
||||
.yui-skin-sam .yui-dt-scrollable .yui-dt-bd {border-left:1px solid #7F7F7F;border-bottom:1px solid #7F7F7F;border-right:1px solid #7F7F7F;background-color:#FFF;}
|
||||
.yui-skin-sam .yui-dt-scrollable .yui-dt-data tr.yui-dt-last td {border-bottom:1px solid #7F7F7F;}
|
||||
|
||||
/* sortable columns */
|
||||
.yui-skin-sam th.yui-dt-asc,
|
||||
.yui-skin-sam th.yui-dt-desc {
|
||||
background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -100px; /* sorted header gradient */
|
||||
}
|
||||
.yui-skin-sam th.yui-dt-sortable .yui-dt-label {
|
||||
margin-right:10px;
|
||||
}
|
||||
.yui-skin-sam th.yui-dt-asc .yui-dt-liner {
|
||||
background:url(dt-arrow-up.png) no-repeat right; /* sorted header gradient */
|
||||
}
|
||||
.yui-skin-sam th.yui-dt-desc .yui-dt-liner {
|
||||
background:url(dt-arrow-dn.png) no-repeat right; /* sorted header gradient */
|
||||
}
|
||||
|
||||
/* editing */
|
||||
tbody .yui-dt-editable {
|
||||
cursor:pointer;
|
||||
}
|
||||
.yui-dt-editor {
|
||||
text-align:left;
|
||||
background-color:#F2F2F2;
|
||||
border:1px solid #808080;
|
||||
padding:6px;
|
||||
}
|
||||
.yui-dt-editor label {
|
||||
padding-left:4px;padding-right:6px;
|
||||
}
|
||||
.yui-dt-editor .yui-dt-button {
|
||||
padding-top:6px;text-align:right;
|
||||
}
|
||||
.yui-dt-editor .yui-dt-button button {
|
||||
background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
|
||||
border:1px solid #999;
|
||||
width:4em;height:1.8em;
|
||||
margin-left:6px;
|
||||
}
|
||||
.yui-dt-editor .yui-dt-button button.yui-dt-default {
|
||||
background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1400px;
|
||||
background-color: #5584E0;
|
||||
border:1px solid #304369;
|
||||
color:#FFF
|
||||
}
|
||||
.yui-dt-editor .yui-dt-button button:hover {
|
||||
background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1300px;
|
||||
color:#000;
|
||||
}
|
||||
.yui-dt-editor .yui-dt-button button:active {
|
||||
background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1700px;
|
||||
color:#000;
|
||||
}
|
||||
|
||||
/* striping */
|
||||
.yui-skin-sam tr.yui-dt-even { background-color:#FFF; } /* white */
|
||||
.yui-skin-sam tr.yui-dt-odd { background-color:#EDF5FF; } /* light blue */
|
||||
.yui-skin-sam tr.yui-dt-even td.yui-dt-asc,
|
||||
.yui-skin-sam tr.yui-dt-even td.yui-dt-desc { background-color:#EDF5FF; } /* light blue sorted */
|
||||
.yui-skin-sam tr.yui-dt-odd td.yui-dt-asc,
|
||||
.yui-skin-sam tr.yui-dt-odd td.yui-dt-desc { background-color:#DBEAFF; } /* dark blue sorted */
|
||||
|
||||
/* disable striping in list mode */
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-even { background-color:#FFF; } /* white */
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-odd { background-color:#FFF; } /* white */
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-asc,
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-desc { background-color:#EDF5FF; } /* light blue sorted */
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-asc,
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-desc { background-color:#EDF5FF; } /* light blue sorted */
|
||||
|
||||
/* highlighting */
|
||||
.yui-skin-sam th.yui-dt-highlighted,
|
||||
.yui-skin-sam th.yui-dt-highlighted a {
|
||||
background-color:#B2D2FF; /* med blue hover */
|
||||
}
|
||||
.yui-skin-sam tr.yui-dt-highlighted,
|
||||
.yui-skin-sam tr.yui-dt-highlighted td.yui-dt-asc,
|
||||
.yui-skin-sam tr.yui-dt-highlighted td.yui-dt-desc,
|
||||
.yui-skin-sam tr.yui-dt-even td.yui-dt-highlighted,
|
||||
.yui-skin-sam tr.yui-dt-odd td.yui-dt-highlighted {
|
||||
cursor:pointer;
|
||||
background-color:#B2D2FF; /* med blue hover */
|
||||
}
|
||||
|
||||
/* enable highlighting in list mode */
|
||||
.yui-skin-sam .yui-dt-list th.yui-dt-highlighted,
|
||||
.yui-skin-sam .yui-dt-list th.yui-dt-highlighted a {
|
||||
background-color:#B2D2FF; /* med blue hover */
|
||||
}
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted,
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-asc,
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-desc,
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-highlighted,
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-highlighted {
|
||||
cursor:pointer;
|
||||
background-color:#B2D2FF; /* med blue hover */
|
||||
}
|
||||
|
||||
/* selection */
|
||||
.yui-skin-sam th.yui-dt-selected,
|
||||
.yui-skin-sam th.yui-dt-selected a {
|
||||
background-color:#446CD7; /* bright blue selected cell */
|
||||
}
|
||||
.yui-skin-sam tr.yui-dt-selected td,
|
||||
.yui-skin-sam tr.yui-dt-selected td.yui-dt-asc,
|
||||
.yui-skin-sam tr.yui-dt-selected td.yui-dt-desc {
|
||||
background-color:#426FD9; /* bright blue selected row */
|
||||
color:#FFF;
|
||||
}
|
||||
.yui-skin-sam tr.yui-dt-even td.yui-dt-selected,
|
||||
.yui-skin-sam tr.yui-dt-odd td.yui-dt-selected {
|
||||
background-color:#446CD7; /* bright blue selected cell */
|
||||
color:#FFF;
|
||||
}
|
||||
|
||||
/* enable selection in list mode */
|
||||
.yui-skin-sam .yui-dt-list th.yui-dt-selected,
|
||||
.yui-skin-sam .yui-dt-list th.yui-dt-selected a {
|
||||
background-color:#446CD7; /* bright blue selected cell */
|
||||
}
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-selected td,
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-asc,
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-desc {
|
||||
background-color:#426FD9; /* bright blue selected row */
|
||||
color:#FFF;
|
||||
}
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-selected,
|
||||
.yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-selected {
|
||||
background-color:#446CD7; /* bright blue selected cell */
|
||||
color:#FFF;
|
||||
}
|
||||
|
||||
/* pagination */
|
||||
.yui-skin-sam .yui-dt-paginator {
|
||||
display:block;margin:6px 0;white-space:nowrap;
|
||||
}
|
||||
.yui-skin-sam .yui-dt-paginator .yui-dt-first,
|
||||
.yui-skin-sam .yui-dt-paginator .yui-dt-last,
|
||||
.yui-skin-sam .yui-dt-paginator .yui-dt-selected {
|
||||
padding:2px 6px;
|
||||
}
|
||||
.yui-skin-sam .yui-dt-paginator a.yui-dt-first,
|
||||
.yui-skin-sam .yui-dt-paginator a.yui-dt-last {
|
||||
text-decoration:none;
|
||||
}
|
||||
.yui-skin-sam .yui-dt-paginator .yui-dt-previous,
|
||||
.yui-skin-sam .yui-dt-paginator .yui-dt-next {
|
||||
display:none;
|
||||
}
|
||||
.yui-skin-sam a.yui-dt-page {
|
||||
border:1px solid #CBCBCB;
|
||||
padding:2px 6px;
|
||||
text-decoration:none;
|
||||
background-color:#fff
|
||||
}
|
||||
.yui-skin-sam .yui-dt-selected {
|
||||
border:1px solid #fff;
|
||||
background-color:#fff;
|
||||
}
|
8
javascript/yui/datatable/assets/skins/sam/datatable.css
Normal file
8
javascript/yui/datatable/assets/skins/sam/datatable.css
Normal file
File diff suppressed because one or more lines are too long
BIN
javascript/yui/datatable/assets/skins/sam/dt-arrow-dn.png
Normal file
BIN
javascript/yui/datatable/assets/skins/sam/dt-arrow-dn.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 116 B |
BIN
javascript/yui/datatable/assets/skins/sam/dt-arrow-up.png
Normal file
BIN
javascript/yui/datatable/assets/skins/sam/dt-arrow-up.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 116 B |
Reference in New Issue
Block a user