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