~ubuntu-branches/ubuntu/saucy/whoopsie-daisy/saucy

« back to all changes in this revision

Viewing changes to backend/stats/static/js/yui/3.4.1/build/datatable-scroll/assets/datatable-base-core.css

  • Committer: Package Import Robot
  • Author(s): Evan Dandrea
  • Date: 2012-04-18 13:04:36 UTC
  • Revision ID: package-import@ubuntu.com-20120418130436-vmt93p8fds516lws
Tags: 0.1.32
Fix failing tests on powerpc and ARM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
YUI 3.4.1 (build 4118)
3
 
Copyright 2011 Yahoo! Inc. All rights reserved.
4
 
Licensed under the BSD License.
5
 
http://yuilibrary.com/license/
6
 
*/
7
 
/* foundational CSS */
8
 
 
9
 
/* mask */
10
 
.yui3-skin-sam .yui3-datatable-mask {
11
 
    position:absolute;
12
 
    z-index:9500;
13
 
}
14
 
 
15
 
/* scrollable */
16
 
.yui3-datatable-tmp {
17
 
    position:absolute;
18
 
    left:-9000px;
19
 
}
20
 
 
21
 
.yui3-datatable-scrollable .yui3-datatable-bd {
22
 
    overflow:auto;
23
 
}
24
 
.yui3-datatable-scrollable .yui3-datatable-hd {
25
 
    overflow:hidden;
26
 
    position:relative; /* for ie overflow bug http://rowanw.com/bugs/overflow_relative.htm */
27
 
28
 
 
29
 
.yui3-datatable-scrollable .yui3-datatable-bd thead tr,
30
 
.yui3-datatable-scrollable .yui3-datatable-bd thead th {
31
 
    position:absolute;
32
 
    left:-1500px;
33
 
}
34
 
 
35
 
.yui3-datatable-scrollable tbody {
36
 
    -moz-outline:none;
37
 
}
38
 
 
39
 
/* sortable columns */
40
 
 
41
 
.yui3-skin-sam thead .yui3-datatable-sortable {
42
 
    cursor:pointer;
43
 
}
44
 
 
45
 
/* draggable columns */
46
 
.yui3-skin-sam thead .yui3-datatable-draggable {
47
 
    cursor: move;
48
 
}
49
 
.yui3-datatable-coltarget {
50
 
    position: absolute;
51
 
    z-index: 999;
52
 
}
53
 
 
54
 
/* resizeable columns */
55
 
.yui3-datatable-hd {
56
 
    zoom:1; 
57
 
}
58
 
th.yui3-datatable-resizeable .yui3-datatable-resizerliner {
59
 
    position:relative;
60
 
}
61
 
.yui3-datatable-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
 
.yui3-datatable-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.yui3-datatable-hidden .yui3-datatable-liner, 
79
 
td.yui3-datatable-hidden .yui3-datatable-liner,
80
 
th.yui3-datatable-hidden .yui3-datatable-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
 
.yui3-datatable-editor, .yui3-datatable-editor-shim {
92
 
    position:absolute;z-index:9000;
93
 
}