]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/yui3/build/datatable/assets/datatable-core.css
Release 6.5.0
[Github/sugarcrm.git] / include / javascript / yui3 / build / datatable / assets / datatable-core.css
1 /*
2 Copyright (c) 2010, Yahoo! Inc. All rights reserved.
3 Code licensed under the BSD License:
4 http://developer.yahoo.com/yui/license.html
5 version: 3.3.0
6 build: 3167
7 */
8 /* foundational CSS */
9
10 /* mask */
11 .yui-skin-sam .yui-dt-mask {
12     position:absolute;
13     z-index:9500;
14 }
15
16 /* scrollable */
17 .yui-dt-tmp {
18     position:absolute;
19     left:-9000px;
20 }
21
22 .yui-dt-scrollable .yui-dt-bd {
23     overflow:auto;
24 }
25 .yui-dt-scrollable .yui-dt-hd {
26     overflow:hidden;
27     position:relative; /* for ie overflow bug http://rowanw.com/bugs/overflow_relative.htm */
28
29
30 .yui-dt-scrollable .yui-dt-bd thead tr,
31 .yui-dt-scrollable .yui-dt-bd thead th {
32     position:absolute;
33     left:-1500px;
34 }
35
36 .yui-dt-scrollable tbody {
37     -moz-outline:none;
38 }
39
40 /* sortable columns */
41
42 .yui-skin-sam thead .yui-dt-sortable {
43     cursor:pointer;
44 }
45
46 /* draggable columns */
47 .yui-skin-sam thead .yui-dt-draggable {
48     cursor: move;
49 }
50 .yui-dt-coltarget {
51     position: absolute;
52     z-index: 999;
53 }
54
55 /* resizeable columns */
56 .yui-dt-hd {
57     zoom:1; 
58 }
59 th.yui-dt-resizeable .yui-dt-resizerliner {
60     position:relative;
61 }
62 .yui-dt-resizer {
63     position:absolute;
64     right:0;
65     bottom:0;
66     height:100%;
67     cursor:e-resize;
68     cursor:col-resize;
69     background-color:#CCC;opacity:0;filter: alpha(opacity=0); /* Bug 1952811: IE transparency z-index */
70 }
71 .yui-dt-resizerproxy {
72     visibility:hidden;
73     position:absolute;
74     z-index:9000;
75     background-color:#CCC;opacity:0;filter: alpha(opacity=0); /* Bug 1952811: IE transparency z-index */
76 }
77
78 /* hidden columns */
79 th.yui-dt-hidden .yui-dt-liner, 
80 td.yui-dt-hidden .yui-dt-liner,
81 th.yui-dt-hidden .yui-dt-resizer {
82     /*TODO: document change from 2.5.2 to 2.6
83     margin:0;
84     padding:0;
85     white-space:nowrap;
86     width:1px;
87     overflow:hidden;*/
88     display:none;
89 }
90
91 /* editing */
92 .yui-dt-editor, .yui-dt-editor-shim {
93     position:absolute;z-index:9000;
94 }