~ubuntu-branches/ubuntu/natty/otrs2/natty-updates

« back to all changes in this revision

Viewing changes to var/httpd/htdocs/yui/2.7.0/build/datatable/assets/datatable-core.css

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2010-08-09 19:43:44 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20100809194344-absef1ut5mfj3qhv
Tags: 2.4.7+dfsg1-1
* Strip out yui from the source in the dfsg version.
  Closes: #591196
* Depend on libjs-yui and link to this package, instead of using the embedded
  yui version. This changes make the flash ticket statistics unuseable!
  Closes: #592146

Show diffs side-by-side

added added

removed removed

Lines of Context:
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.7.0
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
 
}