blob: c7ce94877bc297c0fded9502d629e32512b6674c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
.i-table {
overflow: hidden;
text-align: left /* Force default alignment */
}
.i-table-header-wrap {
background: #efefef;
border: 1px solid #ddd;
overflow: hidden;
}
.i-table-header table,
.i-table-table {
border-collapse: collapse;
margin: 0;
padding: 0;
border: 0;
}
.i-table-header td,
.i-table-table td {
margin: 0;
padding: 0;
border: 0;
}
.i-table-header td {
cursor: pointer;
}
.i-table-resizer {
display: block;
height: 1em;
float: right;
background: #ddd;
cursor: col-resize;
}
.i-table-caption-container {
float: right;
overflow: hidden;
white-space: nowrap;
}
.i-table-row-spacer {
height: 10px;
overflow: hidden; /* IE hack to allow < one line height divs */
}
.i-table-row,
.i-table-row-odd {
border: 0;
margin: 0;
padding: 0;
}
.i-table .i-selected {
background: #999;
color: #fff;
}
.i-table-row td,
.i-table-row-odd td {
padding: 0;
}
.i-table-cell-content {
white-space: nowrap;
overflow: hidden;
padding: 3px 0 3px 3px;
margin-right: 5px;
}
.i-table-column-selector {
float: right;
background: #ddd;
margin: -1em 0 0 0;
height: 1em;
width: 0.5em;
position: relative; /* hide this from IE, it works without it */
}
.i-ie .i-table-column-selector {
position: static;
}
.i-table-focus-slot-left {
border-left: 2px solid #999;
margin-right: -2px;
}
.i-table-focus-slot-right {
border-right: 2px solid #999;
margin-left: -2px;
}
.i-table-header-drag {
position: absolute;
background: #efefef;
border: 1px solid #eee;
opacity: 0.5;
filter: alpha(opacity=50);
margin-top: 20px;
z-index: 30000;
}
.i-table-scrollposition {
width: 160px;
background: #eee;
}
.i-table-scrollposition span {
display: block;
text-align: center;
}
/* row in column selector */
.i-on div {
}
.i-off div {
color: #ddd;
}
|