| 6625 |
dpurdie |
1 |
/*
|
|
|
2 |
* Table styles
|
|
|
3 |
* dataTables.vix.css
|
|
|
4 |
*/
|
|
|
5 |
table.dataTable {
|
|
|
6 |
width: 100%;
|
|
|
7 |
margin: 0 auto;
|
|
|
8 |
clear: both;
|
|
|
9 |
border-collapse: separate;
|
|
|
10 |
border-spacing: 1;
|
|
|
11 |
/*
|
|
|
12 |
* Header and footer styles
|
|
|
13 |
*/
|
|
|
14 |
/*
|
|
|
15 |
* Body styles
|
|
|
16 |
*/
|
|
|
17 |
}
|
|
|
18 |
|
|
|
19 |
.side_panel table.side_panel_table tbody td {
|
|
|
20 |
border-bottom-style: solid;
|
|
|
21 |
border-width: 1px;
|
|
|
22 |
border-color: white;
|
|
|
23 |
padding-left: 1em;
|
|
|
24 |
color: black;
|
|
|
25 |
//font-weight: bold;
|
|
|
26 |
padding-top: 4px;
|
|
|
27 |
padding-bottom: 4px;
|
|
|
28 |
}
|
|
|
29 |
|
|
|
30 |
table.side_panel_table .side_panel_data:hover {
|
|
|
31 |
background-color:#4CAEC5;
|
|
|
32 |
}
|
|
|
33 |
|
|
|
34 |
.side_panel,
|
|
|
35 |
table.side_panel_table .side_panel_data {
|
|
|
36 |
background-color: #87E7FD;
|
|
|
37 |
}
|
|
|
38 |
.side_panel table.dataTable thead th,
|
|
|
39 |
.side_panel table.dataTable thead td {
|
|
|
40 |
border-bottom-style: solid;
|
|
|
41 |
border-width: 1px;
|
|
|
42 |
border-color: white;
|
|
|
43 |
}
|
|
|
44 |
|
|
|
45 |
.side_panel .dataTables_wrapper.no-footer .dataTables_scrollBody {
|
|
|
46 |
border-bottom: none;
|
|
|
47 |
}
|
|
|
48 |
|
|
|
49 |
table.dataTable thead th,
|
|
|
50 |
table.dataTable tfoot th {
|
|
|
51 |
font-weight: bold;
|
|
|
52 |
text-align:left;
|
|
|
53 |
}
|
|
|
54 |
table.dataTable thead {
|
|
|
55 |
background-color:#e4e9ec;
|
|
|
56 |
}
|
|
|
57 |
|
|
|
58 |
table.dataTable thead th.body_sect {
|
|
|
59 |
color: #0066CC;
|
|
|
60 |
background: white;
|
|
|
61 |
}
|
|
|
62 |
table.dataTable thead th,
|
|
|
63 |
table.dataTable thead td {
|
|
|
64 |
// padding: 10px 18px;
|
|
|
65 |
// border-bottom: 1px solid #111111;
|
|
|
66 |
color:#000000;font:11px tahoma,sans-serif;font-weight:bold;padding-right:10px;text-decoration:none;
|
|
|
67 |
|
|
|
68 |
}
|
|
|
69 |
table.dataTable thead th:active,
|
|
|
70 |
table.dataTable thead td:active {
|
|
|
71 |
outline: none;
|
|
|
72 |
}
|
|
|
73 |
table.dataTable tfoot th {
|
|
|
74 |
//border-top: 1px solid #111111;
|
|
|
75 |
//padding: 10px 18px 6px 18px;
|
|
|
76 |
}
|
|
|
77 |
table.dataTable tfoot td {
|
|
|
78 |
//padding: 10px 18px 6px 18px;
|
|
|
79 |
//border-top: 1px solid #111111;
|
|
|
80 |
}
|
|
|
81 |
table.dataTable thead .sorting_asc,
|
|
|
82 |
table.dataTable thead .sorting_desc,
|
|
|
83 |
table.dataTable thead .sorting {
|
|
|
84 |
cursor: pointer;
|
|
|
85 |
*cursor: hand;
|
|
|
86 |
}
|
|
|
87 |
table.dataTable thead .sorting {
|
|
|
88 |
background: url("images/sort_both.png") no-repeat center right;
|
|
|
89 |
}
|
|
|
90 |
table.dataTable thead .sorting_asc {
|
|
|
91 |
background: url("images/sort_asc.png") no-repeat center right;
|
|
|
92 |
}
|
|
|
93 |
table.dataTable thead .sorting_desc {
|
|
|
94 |
background: url("images/sort_desc.png") no-repeat center right;
|
|
|
95 |
}
|
|
|
96 |
table.dataTable thead .sorting_asc_disabled {
|
|
|
97 |
background: url("images/sort_asc_disabled.png") no-repeat center right;
|
|
|
98 |
}
|
|
|
99 |
table.dataTable thead .sorting_desc_disabled {
|
|
|
100 |
background: url("images/sort_desc_disabled.png") no-repeat center right;
|
|
|
101 |
}
|
|
|
102 |
table.dataTable tbody tr {
|
|
|
103 |
background-color: #f5f5f5;
|
|
|
104 |
color:#000000;font:11px tahoma,sans-serif;padding-right:30px;text-decoration:none
|
|
|
105 |
}
|
|
|
106 |
table.dataTable tbody tr.selected {
|
|
|
107 |
background-color: #b0bed9;
|
|
|
108 |
}
|
|
|
109 |
|
|
|
110 |
table.dataTable tbody th,
|
|
|
111 |
table.dataTable tbody td {
|
|
|
112 |
/* padding: 8px 10px; */
|
|
|
113 |
/* Taken from body_rowg */
|
|
|
114 |
color:Gray;
|
|
|
115 |
font:11px tahoma,sans-serif;
|
|
|
116 |
padding-right:1em;
|
|
|
117 |
text-decoration:none;
|
|
|
118 |
}
|
|
|
119 |
/* Taken from txt_linked */
|
|
|
120 |
td a {
|
|
|
121 |
color:#0066FF;
|
|
|
122 |
underline;
|
|
|
123 |
font-style:normal;
|
|
|
124 |
}
|
|
|
125 |
|
|
|
126 |
|
|
|
127 |
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
|
|
|
128 |
border-top: 1px solid #dddddd;
|
|
|
129 |
}
|
|
|
130 |
table.dataTable.row-border tbody tr:first-child th,
|
|
|
131 |
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
|
|
|
132 |
table.dataTable.display tbody tr:first-child td {
|
|
|
133 |
border-top: none;
|
|
|
134 |
}
|
|
|
135 |
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
|
|
|
136 |
border-top: 1px solid #dddddd;
|
|
|
137 |
border-right: 1px solid #dddddd;
|
|
|
138 |
}
|
|
|
139 |
table.dataTable.cell-border tbody tr th:first-child,
|
|
|
140 |
table.dataTable.cell-border tbody tr td:first-child {
|
|
|
141 |
border-left: 1px solid #dddddd;
|
|
|
142 |
}
|
|
|
143 |
table.dataTable.cell-border tbody tr:first-child th,
|
|
|
144 |
table.dataTable.cell-border tbody tr:first-child td {
|
|
|
145 |
border-top: none;
|
|
|
146 |
}
|
|
|
147 |
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
|
|
|
148 |
background-color: #f9f9f9;
|
|
|
149 |
}
|
|
|
150 |
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
|
|
|
151 |
background-color: #abb9d3;
|
|
|
152 |
}
|
|
|
153 |
table.dataTable.hover tbody tr:hover,
|
|
|
154 |
table.dataTable.hover tbody tr.odd:hover,
|
|
|
155 |
table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover,
|
|
|
156 |
table.dataTable.display tbody tr.odd:hover,
|
|
|
157 |
table.dataTable.display tbody tr.even:hover {
|
|
|
158 |
background-color: whitesmoke;
|
|
|
159 |
}
|
|
|
160 |
table.dataTable.hover tbody tr:hover.selected,
|
|
|
161 |
table.dataTable.hover tbody tr.odd:hover.selected,
|
|
|
162 |
table.dataTable.hover tbody tr.even:hover.selected, table.dataTable.display tbody tr:hover.selected,
|
|
|
163 |
table.dataTable.display tbody tr.odd:hover.selected,
|
|
|
164 |
table.dataTable.display tbody tr.even:hover.selected {
|
|
|
165 |
background-color: #a9b7d1;
|
|
|
166 |
}
|
|
|
167 |
table.dataTable.order-column tbody tr > .sorting_1,
|
|
|
168 |
table.dataTable.order-column tbody tr > .sorting_2,
|
|
|
169 |
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
|
|
|
170 |
table.dataTable.display tbody tr > .sorting_2,
|
|
|
171 |
table.dataTable.display tbody tr > .sorting_3 {
|
|
|
172 |
background-color: #f9f9f9;
|
|
|
173 |
}
|
|
|
174 |
table.dataTable.order-column tbody tr.selected > .sorting_1,
|
|
|
175 |
table.dataTable.order-column tbody tr.selected > .sorting_2,
|
|
|
176 |
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
|
|
|
177 |
table.dataTable.display tbody tr.selected > .sorting_2,
|
|
|
178 |
table.dataTable.display tbody tr.selected > .sorting_3 {
|
|
|
179 |
background-color: #acbad4;
|
|
|
180 |
}
|
|
|
181 |
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
|
|
|
182 |
background-color: #f1f1f1;
|
|
|
183 |
}
|
|
|
184 |
table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
|
|
|
185 |
background-color: #f3f3f3;
|
|
|
186 |
}
|
|
|
187 |
table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
|
|
|
188 |
background-color: whitesmoke;
|
|
|
189 |
}
|
|
|
190 |
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
|
|
|
191 |
background-color: #a6b3cd;
|
|
|
192 |
}
|
|
|
193 |
table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
|
|
|
194 |
background-color: #a7b5ce;
|
|
|
195 |
}
|
|
|
196 |
table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
|
|
|
197 |
background-color: #a9b6d0;
|
|
|
198 |
}
|
|
|
199 |
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
|
|
|
200 |
background-color: #f9f9f9;
|
|
|
201 |
}
|
|
|
202 |
table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
|
|
|
203 |
background-color: #fbfbfb;
|
|
|
204 |
}
|
|
|
205 |
table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
|
|
|
206 |
background-color: #fdfdfd;
|
|
|
207 |
}
|
|
|
208 |
table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
|
|
|
209 |
background-color: #acbad4;
|
|
|
210 |
}
|
|
|
211 |
table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
|
|
|
212 |
background-color: #adbbd6;
|
|
|
213 |
}
|
|
|
214 |
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
|
|
|
215 |
background-color: #afbdd8;
|
|
|
216 |
}
|
|
|
217 |
table.dataTable.display tbody tr:hover > .sorting_1,
|
|
|
218 |
table.dataTable.display tbody tr.odd:hover > .sorting_1,
|
|
|
219 |
table.dataTable.display tbody tr.even:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
|
|
|
220 |
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
|
|
|
221 |
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1 {
|
|
|
222 |
background-color: #eaeaea;
|
|
|
223 |
}
|
|
|
224 |
table.dataTable.display tbody tr:hover > .sorting_2,
|
|
|
225 |
table.dataTable.display tbody tr.odd:hover > .sorting_2,
|
|
|
226 |
table.dataTable.display tbody tr.even:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2,
|
|
|
227 |
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_2,
|
|
|
228 |
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_2 {
|
|
|
229 |
background-color: #ebebeb;
|
|
|
230 |
}
|
|
|
231 |
table.dataTable.display tbody tr:hover > .sorting_3,
|
|
|
232 |
table.dataTable.display tbody tr.odd:hover > .sorting_3,
|
|
|
233 |
table.dataTable.display tbody tr.even:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3,
|
|
|
234 |
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_3,
|
|
|
235 |
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_3 {
|
|
|
236 |
background-color: #eeeeee;
|
|
|
237 |
}
|
|
|
238 |
table.dataTable.display tbody tr:hover.selected > .sorting_1,
|
|
|
239 |
table.dataTable.display tbody tr.odd:hover.selected > .sorting_1,
|
|
|
240 |
table.dataTable.display tbody tr.even:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1,
|
|
|
241 |
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_1,
|
|
|
242 |
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_1 {
|
|
|
243 |
background-color: #a1aec7;
|
|
|
244 |
}
|
|
|
245 |
table.dataTable.display tbody tr:hover.selected > .sorting_2,
|
|
|
246 |
table.dataTable.display tbody tr.odd:hover.selected > .sorting_2,
|
|
|
247 |
table.dataTable.display tbody tr.even:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2,
|
|
|
248 |
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_2,
|
|
|
249 |
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_2 {
|
|
|
250 |
background-color: #a2afc8;
|
|
|
251 |
}
|
|
|
252 |
table.dataTable.display tbody tr:hover.selected > .sorting_3,
|
|
|
253 |
table.dataTable.display tbody tr.odd:hover.selected > .sorting_3,
|
|
|
254 |
table.dataTable.display tbody tr.even:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3,
|
|
|
255 |
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_3,
|
|
|
256 |
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_3 {
|
|
|
257 |
background-color: #a4b2cb;
|
|
|
258 |
}
|
|
|
259 |
table.dataTable.no-footer {
|
|
|
260 |
border-bottom: 1px solid #111111;
|
|
|
261 |
}
|
|
|
262 |
table.dataTable.nowrap th, table.dataTable.nowrap td {
|
|
|
263 |
white-space: nowrap;
|
|
|
264 |
}
|
|
|
265 |
table.dataTable.compact thead th,
|
|
|
266 |
table.dataTable.compact thead td {
|
|
|
267 |
padding: 5px 9px;
|
|
|
268 |
}
|
|
|
269 |
table.dataTable.compact tfoot th,
|
|
|
270 |
table.dataTable.compact tfoot td {
|
|
|
271 |
padding: 5px 9px 3px 9px;
|
|
|
272 |
}
|
|
|
273 |
table.dataTable.compact tbody th,
|
|
|
274 |
table.dataTable.compact tbody td {
|
|
|
275 |
padding: 4px 5px;
|
|
|
276 |
}
|
|
|
277 |
table.dataTable th.dt-left,
|
|
|
278 |
table.dataTable td.dt-left {
|
|
|
279 |
text-align: left;
|
|
|
280 |
}
|
|
|
281 |
table.dataTable th.dt-center,
|
|
|
282 |
table.dataTable td.dt-center,
|
|
|
283 |
table.dataTable td.dataTables_empty {
|
|
|
284 |
text-align: center;
|
|
|
285 |
}
|
|
|
286 |
table.dataTable th.dt-right,
|
|
|
287 |
table.dataTable td.dt-right {
|
|
|
288 |
text-align: right;
|
|
|
289 |
}
|
|
|
290 |
table.dataTable th.dt-justify,
|
|
|
291 |
table.dataTable td.dt-justify {
|
|
|
292 |
text-align: justify;
|
|
|
293 |
}
|
|
|
294 |
table.dataTable th.dt-nowrap,
|
|
|
295 |
table.dataTable td.dt-nowrap {
|
|
|
296 |
white-space: nowrap;
|
|
|
297 |
}
|
|
|
298 |
table.dataTable thead th.dt-head-left,
|
|
|
299 |
table.dataTable thead td.dt-head-left,
|
|
|
300 |
table.dataTable tfoot th.dt-head-left,
|
|
|
301 |
table.dataTable tfoot td.dt-head-left {
|
|
|
302 |
text-align: left;
|
|
|
303 |
}
|
|
|
304 |
table.dataTable thead th.dt-head-center,
|
|
|
305 |
table.dataTable thead td.dt-head-center,
|
|
|
306 |
table.dataTable tfoot th.dt-head-center,
|
|
|
307 |
table.dataTable tfoot td.dt-head-center {
|
|
|
308 |
text-align: center;
|
|
|
309 |
}
|
|
|
310 |
table.dataTable thead th.dt-head-right,
|
|
|
311 |
table.dataTable thead td.dt-head-right,
|
|
|
312 |
table.dataTable tfoot th.dt-head-right,
|
|
|
313 |
table.dataTable tfoot td.dt-head-right {
|
|
|
314 |
text-align: right;
|
|
|
315 |
}
|
|
|
316 |
table.dataTable thead th.dt-head-justify,
|
|
|
317 |
table.dataTable thead td.dt-head-justify,
|
|
|
318 |
table.dataTable tfoot th.dt-head-justify,
|
|
|
319 |
table.dataTable tfoot td.dt-head-justify {
|
|
|
320 |
text-align: justify;
|
|
|
321 |
}
|
|
|
322 |
table.dataTable thead th.dt-head-nowrap,
|
|
|
323 |
table.dataTable thead td.dt-head-nowrap,
|
|
|
324 |
table.dataTable tfoot th.dt-head-nowrap,
|
|
|
325 |
table.dataTable tfoot td.dt-head-nowrap {
|
|
|
326 |
white-space: nowrap;
|
|
|
327 |
}
|
|
|
328 |
table.dataTable tbody th.dt-body-left,
|
|
|
329 |
table.dataTable tbody td.dt-body-left {
|
|
|
330 |
text-align: left;
|
|
|
331 |
}
|
|
|
332 |
table.dataTable tbody th.dt-body-center,
|
|
|
333 |
table.dataTable tbody td.dt-body-center {
|
|
|
334 |
text-align: center;
|
|
|
335 |
}
|
|
|
336 |
table.dataTable tbody th.dt-body-right,
|
|
|
337 |
table.dataTable tbody td.dt-body-right {
|
|
|
338 |
text-align: right;
|
|
|
339 |
}
|
|
|
340 |
table.dataTable tbody th.dt-body-justify,
|
|
|
341 |
table.dataTable tbody td.dt-body-justify {
|
|
|
342 |
text-align: justify;
|
|
|
343 |
}
|
|
|
344 |
table.dataTable tbody th.dt-body-nowrap,
|
|
|
345 |
table.dataTable tbody td.dt-body-nowrap {
|
|
|
346 |
white-space: nowrap;
|
|
|
347 |
}
|
|
|
348 |
|
|
|
349 |
table.dataTable,
|
|
|
350 |
table.dataTable th,
|
|
|
351 |
table.dataTable td {
|
|
|
352 |
-webkit-box-sizing: content-box;
|
|
|
353 |
-moz-box-sizing: content-box;
|
|
|
354 |
box-sizing: content-box;
|
|
|
355 |
}
|
|
|
356 |
|
|
|
357 |
/*
|
|
|
358 |
* Control feature layout
|
|
|
359 |
*/
|
|
|
360 |
.dataTables_wrapper {
|
|
|
361 |
position: relative;
|
|
|
362 |
clear: both;
|
|
|
363 |
*zoom: 1;
|
|
|
364 |
zoom: 1;
|
|
|
365 |
|
|
|
366 |
/* Basic body_txt */
|
|
|
367 |
color:#000000;
|
|
|
368 |
font:11px tahoma,sans-serif;
|
|
|
369 |
text-decoration:none;
|
|
|
370 |
}
|
|
|
371 |
.dataTables_wrapper .dataTables_length {
|
|
|
372 |
float: left;
|
|
|
373 |
}
|
|
|
374 |
.dataTables_wrapper .dataTables_filter {
|
|
|
375 |
float: right;
|
|
|
376 |
text-align: right;
|
|
|
377 |
}
|
|
|
378 |
.dataTables_wrapper .dataTables_filter input {
|
|
|
379 |
margin-left: 0.5em;
|
|
|
380 |
}
|
|
|
381 |
.dataTables_wrapper .dataTables_info {
|
|
|
382 |
/* clear: both; */
|
|
|
383 |
float: left;
|
|
|
384 |
|
|
|
385 |
/* padding-top: 0.755em; */
|
|
|
386 |
}
|
|
|
387 |
.dataTables_wrapper .dataTables_paginate {
|
|
|
388 |
float: right;
|
|
|
389 |
text-align: right;
|
|
|
390 |
padding-top: 0.25em;
|
|
|
391 |
}
|
|
|
392 |
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
|
|
393 |
box-sizing: border-box;
|
|
|
394 |
display: inline-block;
|
|
|
395 |
min-width: 1.5em;
|
|
|
396 |
padding: 0.5em 1em;
|
|
|
397 |
margin-left: 2px;
|
|
|
398 |
text-align: center;
|
|
|
399 |
text-decoration: none !important;
|
|
|
400 |
cursor: pointer;
|
|
|
401 |
*cursor: hand;
|
|
|
402 |
color: #333333 !important;
|
|
|
403 |
border: 1px solid transparent;
|
|
|
404 |
}
|
|
|
405 |
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
|
|
|
406 |
color: #333333 !important;
|
|
|
407 |
border: 1px solid #cacaca;
|
|
|
408 |
background-color: white;
|
|
|
409 |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, gainsboro));
|
|
|
410 |
/* Chrome,Safari4+ */
|
|
|
411 |
background: -webkit-linear-gradient(top, white 0%, gainsboro 100%);
|
|
|
412 |
/* Chrome10+,Safari5.1+ */
|
|
|
413 |
background: -moz-linear-gradient(top, white 0%, gainsboro 100%);
|
|
|
414 |
/* FF3.6+ */
|
|
|
415 |
background: -ms-linear-gradient(top, white 0%, gainsboro 100%);
|
|
|
416 |
/* IE10+ */
|
|
|
417 |
background: -o-linear-gradient(top, white 0%, gainsboro 100%);
|
|
|
418 |
/* Opera 11.10+ */
|
|
|
419 |
background: linear-gradient(to bottom, white 0%, gainsboro 100%);
|
|
|
420 |
/* W3C */
|
|
|
421 |
}
|
|
|
422 |
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
|
|
|
423 |
cursor: default;
|
|
|
424 |
color: #666 !important;
|
|
|
425 |
border: 1px solid transparent;
|
|
|
426 |
background: transparent;
|
|
|
427 |
box-shadow: none;
|
|
|
428 |
}
|
|
|
429 |
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
|
|
|
430 |
color: white !important;
|
|
|
431 |
border: 1px solid #111111;
|
|
|
432 |
background-color: #585858;
|
|
|
433 |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111111));
|
|
|
434 |
/* Chrome,Safari4+ */
|
|
|
435 |
background: -webkit-linear-gradient(top, #585858 0%, #111111 100%);
|
|
|
436 |
/* Chrome10+,Safari5.1+ */
|
|
|
437 |
background: -moz-linear-gradient(top, #585858 0%, #111111 100%);
|
|
|
438 |
/* FF3.6+ */
|
|
|
439 |
background: -ms-linear-gradient(top, #585858 0%, #111111 100%);
|
|
|
440 |
/* IE10+ */
|
|
|
441 |
background: -o-linear-gradient(top, #585858 0%, #111111 100%);
|
|
|
442 |
/* Opera 11.10+ */
|
|
|
443 |
background: linear-gradient(to bottom, #585858 0%, #111111 100%);
|
|
|
444 |
/* W3C */
|
|
|
445 |
}
|
|
|
446 |
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
|
|
|
447 |
outline: none;
|
|
|
448 |
background-color: #2b2b2b;
|
|
|
449 |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
|
|
|
450 |
/* Chrome,Safari4+ */
|
|
|
451 |
background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
|
|
452 |
/* Chrome10+,Safari5.1+ */
|
|
|
453 |
background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
|
|
454 |
/* FF3.6+ */
|
|
|
455 |
background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
|
|
456 |
/* IE10+ */
|
|
|
457 |
background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
|
|
458 |
/* Opera 11.10+ */
|
|
|
459 |
background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
|
|
|
460 |
/* W3C */
|
|
|
461 |
box-shadow: inset 0 0 3px #111;
|
|
|
462 |
}
|
|
|
463 |
.dataTables_wrapper .dataTables_processing {
|
|
|
464 |
position: absolute;
|
|
|
465 |
top: 50%;
|
|
|
466 |
left: 50%;
|
|
|
467 |
width: 100%;
|
|
|
468 |
height: 40px;
|
|
|
469 |
margin-left: -50%;
|
|
|
470 |
margin-top: -25px;
|
|
|
471 |
padding-top: 20px;
|
|
|
472 |
text-align: center;
|
|
|
473 |
font-size: 1.2em;
|
|
|
474 |
background-color: white;
|
|
|
475 |
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
|
|
|
476 |
/* Chrome,Safari4+ */
|
|
|
477 |
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
|
|
478 |
/* Chrome10+,Safari5.1+ */
|
|
|
479 |
background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
|
|
480 |
/* FF3.6+ */
|
|
|
481 |
background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
|
|
482 |
/* IE10+ */
|
|
|
483 |
background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
|
|
484 |
/* Opera 11.10+ */
|
|
|
485 |
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
|
|
486 |
/* W3C */
|
|
|
487 |
}
|
|
|
488 |
.dataTables_wrapper .dataTables_length,
|
|
|
489 |
.dataTables_wrapper .dataTables_filter,
|
|
|
490 |
.dataTables_wrapper .dataTables_info,
|
|
|
491 |
.dataTables_wrapper .dataTables_processing,
|
|
|
492 |
.dataTables_wrapper .dataTables_paginate {
|
|
|
493 |
color: #333333;
|
|
|
494 |
}
|
|
|
495 |
.dataTables_wrapper .dataTables_scroll {
|
|
|
496 |
clear: both;
|
|
|
497 |
}
|
|
|
498 |
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
|
|
|
499 |
*margin-top: -1px;
|
|
|
500 |
-webkit-overflow-scrolling: touch;
|
|
|
501 |
}
|
|
|
502 |
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
|
|
|
503 |
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
|
|
|
504 |
height: 0;
|
|
|
505 |
overflow: hidden;
|
|
|
506 |
margin: 0 !important;
|
|
|
507 |
padding: 0 !important;
|
|
|
508 |
}
|
|
|
509 |
.dataTables_wrapper.no-footer .dataTables_scrollBody {
|
|
|
510 |
border-bottom: 1px solid #111111;
|
|
|
511 |
}
|
|
|
512 |
.dataTables_wrapper.no-footer div.dataTables_scrollHead table,
|
|
|
513 |
.dataTables_wrapper.no-footer div.dataTables_scrollBody table {
|
|
|
514 |
border-bottom: none;
|
|
|
515 |
}
|
|
|
516 |
.dataTables_wrapper:after {
|
|
|
517 |
visibility: hidden;
|
|
|
518 |
display: block;
|
|
|
519 |
content: "";
|
|
|
520 |
clear: both;
|
|
|
521 |
height: 0;
|
|
|
522 |
}
|
|
|
523 |
|
|
|
524 |
@media screen and (max-width: 767px) {
|
|
|
525 |
.dataTables_wrapper .dataTables_info,
|
|
|
526 |
.dataTables_wrapper .dataTables_paginate {
|
|
|
527 |
float: none;
|
|
|
528 |
text-align: center;
|
|
|
529 |
}
|
|
|
530 |
.dataTables_wrapper .dataTables_paginate {
|
|
|
531 |
margin-top: 0.5em;
|
|
|
532 |
}
|
|
|
533 |
}
|
|
|
534 |
@media screen and (max-width: 640px) {
|
|
|
535 |
.dataTables_wrapper .dataTables_length,
|
|
|
536 |
.dataTables_wrapper .dataTables_filter {
|
|
|
537 |
float: none;
|
|
|
538 |
text-align: center;
|
|
|
539 |
}
|
|
|
540 |
.dataTables_wrapper .dataTables_filter {
|
|
|
541 |
margin-top: 0.5em;
|
|
|
542 |
}
|
|
|
543 |
}
|
|
|
544 |
|
|
|
545 |
/*
|
|
|
546 |
* Namespace: DTS (DataTables Scroller)
|
|
|
547 |
* Scroller plugin styling
|
|
|
548 |
*/
|
|
|
549 |
div.DTS div.DTS_Loading {
|
|
|
550 |
float:left;
|
|
|
551 |
padding-right: 2em;
|
|
|
552 |
}
|
|
|
553 |
|
|
|
554 |
|
|
|
555 |
|
|
|
556 |
|