Subversion Repository Public Repository

litesoft

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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/**
 * 2011-07-18: this is TOTALLY COPIED from DataTable.css
 * in the SQSAWSConsoleWebsiteContent package 	
 * This is our custom AWS Console CellTable style.
 */

@def selectionBorderWidth 2px;
@def headerTextColor #3A3A3A;
@def headerBorderColor #CBCBCB;
@def cellBorderWidth 1px;
@def vCellPadding 6px;
@def hCellPadding 10px;

.cellTableWidget {
    border-collapse: collapse;
    empty-cells: empty;
    border-spacing: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: inherit;
    border-left: cellBorderWidth solid headerBorderColor;
}

.cellTableFirstColumn {

}

.cellTableLastColumn {

}

.cellTableFooter {
    /*
      background: url("https://images-na.ssl-images-amazon.com/images/G/01/webservices/console/data_table_column_header_bg.png") repeat-x scroll 0 0 #D8D8DA;
      */
    font-weight: bold;
    text-decoration: none;
    vertical-align: bottom;
    color: headerTextColor;
    border-color: headerTextColor headerBorderColor headerBorderColor headerTextColor;
    border-style: none solid solid none;
    border-width: 0 cellBorderWidth cellBorderWidth 0;
    margin: 0;
    padding: vCellPadding hCellPadding;
    text-align: left;
    overflow: hidden;
}

.cellTableHeader {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    font-style: normal;
    background: url("https://images-na.ssl-images-amazon.com/images/G/01/webservices/console/data_table_column_header_bg.png") repeat-x scroll 0 0 #D8D8DA;
    vertical-align: bottom;
    color: headerTextColor;
    border-color: headerTextColor headerBorderColor headerBorderColor headerTextColor;
    border-style: none solid solid none;
    border-width: 0 cellBorderWidth cellBorderWidth 0;
    margin: 0;
    padding: 0;
    text-align: left;
    overflow: hidden;
}

.cellTableCell {
    border-color: headerTextColor headerBorderColor headerBorderColor headerTextColor;
    border-style: none solid solid none;
    border-width: 0 cellBorderWidth cellBorderWidth 0;
    margin: 0;
    padding: vCellPadding hCellPadding;
    text-align: left;
    overflow: hidden;
    font-size: 12px;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}

.cellTableFirstColumnFooter {

}

.cellTableFirstColumnHeader {

}

.cellTableLastColumnFooter {

}

.cellTableLastColumnHeader {

}

.cellTableSortableHeader {
    cursor: pointer;
    cursor: hand;
}

.cellTableSortableHeader:hover {
    color: #6c6b6b;
}

.cellTableSortedHeaderAscending {

}

.cellTableSortedHeaderDescending {

}

.cellTableEvenRow {
    background: #ffffff;
}

.cellTableEvenRowCell {
}

.cellTableOddRow {
    background: #ffffff;
}

.cellTableOddRowCell {

}

.cellTableHoveredRow {
    background: #ffffdd;
}

.cellTableHoveredRowCell {

}

.cellTableKeyboardSelectedRow {

}

.cellTableKeyboardSelectedRowCell {

}

.cellTableSelectedRow {
    color: #000000;
    height: auto;
    overflow: auto;
}

.cellTableSelectedRowCell {
    background: #eaf3fe;
}

/**
 * The keyboard selected cell is visible over selection.
 */
.cellTableKeyboardSelectedCell {

}

.cellTableLoading {
    margin: 30px;
}

.resizableCellTableResizeHandle {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 4px;
    cursor: col-resize;
}

.cellTableLastColumnHeader .resizableCellTableResizeHandle {
    width: 0px;
    cursor: default;
}

.resizableCellTableHeader {
    position: relative;
    padding: vCellPadding hCellPadding;
    white-space: nowrap;
}

.scrollableTableBody {
    display: block;
    overflow: auto;
}

Commits for litesoft/trunk/GWT_Sandbox/FormEngine/src/com/temp/foundation/client/widget/table/ResizableCellTable.css

Diff revisions: vs.
Revision Author Commited Message
964 GeorgeS picture GeorgeS Fri 01 Aug, 2014 03:18:23 +0000

!