You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
908 B
50 lines
908 B
2 years ago
|
/*
|
||
|
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
|
||
|
Code licensed under the BSD License:
|
||
|
http://developer.yahoo.com/yui/license.html
|
||
|
version: 2.9.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;
|
||
|
}
|