~jstys-z/helioviewer.org/client5

« back to all changes in this revision

Viewing changes to lib/yui/build/datatable/assets/datatable.css

  • Committer: V. Keith Hughitt
  • Date: 2008-06-11 19:37:01 UTC
  • Revision ID: hughitt1@kore-20080611193701-ddjd2nkey4ohmyam
nightly build 06-11-2008: spring cleaning.. preparing for multi-tiered construction of layer entries and their options

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
3
 
Code licensed under the BSD License:
4
 
http://developer.yahoo.net/yui/license.txt
5
 
version: 2.5.0
6
 
*/
7
 
/*foundational css*/
8
 
.yui-dt-table th, .yui-dt-table td {
9
 
    overflow:hidden;
10
 
}
11
 
 
12
 
th .yui-dt-header {
13
 
    position:relative;
14
 
}
15
 
 
16
 
th .yui-dt-label {
17
 
    position:relative;
18
 
    border-right:10px;
19
 
}
20
 
 
21
 
th .yui-dt-resizer {
22
 
    position:absolute;
23
 
    margin-right:-6px;
24
 
    right:0;
25
 
    bottom:0;
26
 
    width:6px;
27
 
    height:100%;
28
 
    cursor:w-resize;
29
 
    cursor:col-resize;
30
 
}
31
 
 
32
 
/* foundational scrolling css */
33
 
.yui-dt-scrollable  {
34
 
    *overflow-y:auto; /* for ie */
35
 
}
36
 
.yui-dt-scrollable  thead {
37
 
    display:block; /* for safari and opera */
38
 
}
39
 
.yui-dt-scrollable thead tr {
40
 
    position:relative;  /* for ie */
41
 
}
42
 
.yui-dt-scrollbody {
43
 
    display:block; /* for safari and opera */
44
 
    overflow:auto; /* for gecko */
45
 
}
46
 
 
47
 
.yui-dt-editor {
48
 
    position:absolute;
49
 
}