Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7250 dpurdie 1
/*
2
 * Table styles
3
 * dataTables.vix.grey.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 #111; */
80
}
81
table.dataTable thead .sorting,
82
table.dataTable thead .sorting_asc,
83
table.dataTable thead .sorting_desc,
84
table.dataTable thead .sorting_asc_disabled,
85
table.dataTable thead .sorting_desc_disabled {
86
  cursor: pointer;
87
  *cursor: hand;
88
  background-repeat: no-repeat;
89
  background-position: center right;
90
}
91
table.dataTable thead .sorting {
92
  background-image: url("../images/sort_both.png");
93
}
94
table.dataTable thead .sorting_asc {
95
  background-image: url("../images/sort_asc.png");
96
}
97
table.dataTable thead .sorting_desc {
98
  background-image: url("../images/sort_desc.png");
99
}
100
table.dataTable thead .sorting_asc_disabled {
101
  background-image: url("../images/sort_asc_disabled.png");
102
}
103
table.dataTable thead .sorting_desc_disabled {
104
  background-image: url("../images/sort_desc_disabled.png");
105
}
106
table.dataTable tbody tr {
107
  background-color: #f5f5f5;
108
  color:#000000;font:11px tahoma,sans-serif;padding-right:30px;text-decoration:none
109
}
110
table.dataTable tbody tr.selected {
111
  background-color: #B0BED9;
112
}
113
table.dataTable tbody th,
114
table.dataTable tbody td {
115
  /* padding: 8px 10px; */
116
  /* Taken from body_rowg */
117
    color:Gray;
118
    font:11px tahoma,sans-serif;
119
    padding-right:1em;
120
    text-decoration:none;
121
}
122
 
123
table.dataTable tbody td.black { color:Black; }
124
 
125
/* Taken from txt_linked */
126
td a {
127
    color:#0066FF;
128
    underline;
129
    font-style:normal;
130
}
131
 
132
 
133
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
134
  border-top: 1px solid #ddd;
135
}
136
table.dataTable.row-border tbody tr:first-child th,
137
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
138
table.dataTable.display tbody tr:first-child td {
139
  border-top: none;
140
}
141
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
142
  border-top: 1px solid #ddd;
143
  border-right: 1px solid #ddd;
144
}
145
table.dataTable.cell-border tbody tr th:first-child,
146
table.dataTable.cell-border tbody tr td:first-child {
147
  border-left: 1px solid #ddd;
148
}
149
table.dataTable.cell-border tbody tr:first-child th,
150
table.dataTable.cell-border tbody tr:first-child td {
151
  border-top: none;
152
}
153
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
154
  background-color: #f9f9f9;
155
}
156
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
157
  background-color: #acbad4;
158
}
159
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
160
  background-color: #f6f6f6;
161
}
162
table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
163
  background-color: #aab7d1;
164
}
165
table.dataTable.order-column tbody tr > .sorting_1,
166
table.dataTable.order-column tbody tr > .sorting_2,
167
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
168
table.dataTable.display tbody tr > .sorting_2,
169
table.dataTable.display tbody tr > .sorting_3 {
170
  background-color: #fafafa;
171
}
172
table.dataTable.order-column tbody tr.selected > .sorting_1,
173
table.dataTable.order-column tbody tr.selected > .sorting_2,
174
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
175
table.dataTable.display tbody tr.selected > .sorting_2,
176
table.dataTable.display tbody tr.selected > .sorting_3 {
177
  background-color: #acbad5;
178
}
179
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
180
  background-color: #f1f1f1;
181
}
182
table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
183
  background-color: #f3f3f3;
184
}
185
table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
186
  background-color: whitesmoke;
187
}
188
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
189
  background-color: #a6b4cd;
190
}
191
table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
192
  background-color: #a8b5cf;
193
}
194
table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
195
  background-color: #a9b7d1;
196
}
197
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
198
  background-color: #fafafa;
199
}
200
table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
201
  background-color: #fcfcfc;
202
}
203
table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
204
  background-color: #fefefe;
205
}
206
table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
207
  background-color: #acbad5;
208
}
209
table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
210
  background-color: #aebcd6;
211
}
212
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
213
  background-color: #afbdd8;
214
}
215
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
216
  background-color: #eaeaea;
217
}
218
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
219
  background-color: #ececec;
220
}
221
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
222
  background-color: #efefef;
223
}
224
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
225
  background-color: #a2aec7;
226
}
227
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
228
  background-color: #a3b0c9;
229
}
230
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
231
  background-color: #a5b2cb;
232
}
233
table.dataTable.no-footer {
234
  border-bottom: 1px solid #111;
235
}
236
table.dataTable.nowrap th, table.dataTable.nowrap td {
237
  white-space: nowrap;
238
}
239
table.dataTable.compact thead th,
240
table.dataTable.compact thead td {
241
  padding: 4px 17px 4px 4px;
242
}
243
table.dataTable.compact tfoot th,
244
table.dataTable.compact tfoot td {
245
  padding: 4px;
246
}
247
table.dataTable.compact tbody th,
248
table.dataTable.compact tbody td {
249
  padding: 4px;
250
}
251
table.dataTable th.dt-left,
252
table.dataTable td.dt-left {
253
  text-align: left;
254
}
255
table.dataTable th.dt-center,
256
table.dataTable td.dt-center,
257
table.dataTable td.dataTables_empty {
258
  text-align: center;
259
}
260
table.dataTable th.dt-right,
261
table.dataTable td.dt-right {
262
  text-align: right;
263
}
264
table.dataTable th.dt-justify,
265
table.dataTable td.dt-justify {
266
  text-align: justify;
267
}
268
table.dataTable th.dt-nowrap,
269
table.dataTable td.dt-nowrap {
270
  white-space: nowrap;
271
}
272
table.dataTable thead th.dt-head-left,
273
table.dataTable thead td.dt-head-left,
274
table.dataTable tfoot th.dt-head-left,
275
table.dataTable tfoot td.dt-head-left {
276
  text-align: left;
277
}
278
table.dataTable thead th.dt-head-center,
279
table.dataTable thead td.dt-head-center,
280
table.dataTable tfoot th.dt-head-center,
281
table.dataTable tfoot td.dt-head-center {
282
  text-align: center;
283
}
284
table.dataTable thead th.dt-head-right,
285
table.dataTable thead td.dt-head-right,
286
table.dataTable tfoot th.dt-head-right,
287
table.dataTable tfoot td.dt-head-right {
288
  text-align: right;
289
}
290
table.dataTable thead th.dt-head-justify,
291
table.dataTable thead td.dt-head-justify,
292
table.dataTable tfoot th.dt-head-justify,
293
table.dataTable tfoot td.dt-head-justify {
294
  text-align: justify;
295
}
296
table.dataTable thead th.dt-head-nowrap,
297
table.dataTable thead td.dt-head-nowrap,
298
table.dataTable tfoot th.dt-head-nowrap,
299
table.dataTable tfoot td.dt-head-nowrap {
300
  white-space: nowrap;
301
}
302
table.dataTable tbody th.dt-body-left,
303
table.dataTable tbody td.dt-body-left {
304
  text-align: left;
305
}
306
table.dataTable tbody th.dt-body-center,
307
table.dataTable tbody td.dt-body-center {
308
  text-align: center;
309
}
310
table.dataTable tbody th.dt-body-right,
311
table.dataTable tbody td.dt-body-right {
312
  text-align: right;
313
}
314
table.dataTable tbody th.dt-body-justify,
315
table.dataTable tbody td.dt-body-justify {
316
  text-align: justify;
317
}
318
table.dataTable tbody th.dt-body-nowrap,
319
table.dataTable tbody td.dt-body-nowrap {
320
  white-space: nowrap;
321
}
322
 
323
table.dataTable,
324
table.dataTable th,
325
table.dataTable td {
326
  box-sizing: content-box;
327
}
328
 
329
/*
330
 * Control feature layout
331
 */
332
.dataTables_wrapper {
333
  position: relative;
334
  clear: both;
335
  *zoom: 1;
336
  zoom: 1;
337
 
338
  /*  Basic body_txt */
339
  color:#000000;
340
  font:11px tahoma,sans-serif;
341
  text-decoration:none;
342
}
343
.dataTables_wrapper .dataTables_length {
344
  float: left;
345
}
346
.dataTables_wrapper .dataTables_filter {
347
  float: right;
348
  text-align: right;
349
}
350
.dataTables_wrapper .dataTables_filter input {
351
  margin-left: 0.5em;
352
}
353
.dataTables_wrapper .dataTables_info {
354
  clear: both;
355
  float: left;
356
  /* padding-top: 0.755em; */
357
}
358
.dataTables_wrapper .dataTables_paginate {
359
  float: right;
360
  text-align: right;
361
  padding-top: 0.25em;
362
}
363
.dataTables_wrapper .dataTables_paginate .paginate_button {
364
  box-sizing: border-box;
365
  display: inline-block;
366
  min-width: 1.5em;
367
  padding: 0.5em 1em;
368
  margin-left: 2px;
369
  text-align: center;
370
  text-decoration: none !important;
371
  cursor: pointer;
372
  *cursor: hand;
373
  color: #333 !important;
374
  border: 1px solid transparent;
375
  border-radius: 2px;
376
}
377
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
378
  color: #333 !important;
379
  border: 1px solid #979797;
380
  background-color: white;
381
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
382
  /* Chrome,Safari4+ */
383
  background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
384
  /* Chrome10+,Safari5.1+ */
385
  background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
386
  /* FF3.6+ */
387
  background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
388
  /* IE10+ */
389
  background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
390
  /* Opera 11.10+ */
391
  background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
392
  /* W3C */
393
}
394
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
395
  cursor: default;
396
  color: #666 !important;
397
  border: 1px solid transparent;
398
  background: transparent;
399
  box-shadow: none;
400
}
401
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
402
  color: white !important;
403
  border: 1px solid #111;
404
  background-color: #585858;
405
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
406
  /* Chrome,Safari4+ */
407
  background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
408
  /* Chrome10+,Safari5.1+ */
409
  background: -moz-linear-gradient(top, #585858 0%, #111 100%);
410
  /* FF3.6+ */
411
  background: -ms-linear-gradient(top, #585858 0%, #111 100%);
412
  /* IE10+ */
413
  background: -o-linear-gradient(top, #585858 0%, #111 100%);
414
  /* Opera 11.10+ */
415
  background: linear-gradient(to bottom, #585858 0%, #111 100%);
416
  /* W3C */
417
}
418
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
419
  outline: none;
420
  background-color: #2b2b2b;
421
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
422
  /* Chrome,Safari4+ */
423
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
424
  /* Chrome10+,Safari5.1+ */
425
  background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
426
  /* FF3.6+ */
427
  background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
428
  /* IE10+ */
429
  background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
430
  /* Opera 11.10+ */
431
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
432
  /* W3C */
433
  box-shadow: inset 0 0 3px #111;
434
}
435
.dataTables_wrapper .dataTables_paginate .ellipsis {
436
  padding: 0 1em;
437
}
438
.dataTables_wrapper .dataTables_processing {
439
  position: absolute;
440
  top: 50%;
441
  left: 50%;
442
  width: 100%;
443
  height: 40px;
444
  margin-left: -50%;
445
  margin-top: -25px;
446
  padding-top: 20px;
447
  text-align: center;
448
  font-size: 1.2em;
449
  background-color: white;
450
  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)));
451
  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%);
452
  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%);
453
  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%);
454
  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%);
455
  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%);
456
}
457
.dataTables_wrapper .dataTables_length,
458
.dataTables_wrapper .dataTables_filter,
459
.dataTables_wrapper .dataTables_info,
460
.dataTables_wrapper .dataTables_processing,
461
.dataTables_wrapper .dataTables_paginate {
462
  color: #333;
463
}
464
.dataTables_wrapper .dataTables_scroll {
465
  clear: both;
466
}
467
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
468
  *margin-top: -1px;
469
  -webkit-overflow-scrolling: touch;
470
}
471
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
472
  vertical-align: middle;
473
}
474
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
475
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
476
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
477
  height: 0;
478
  overflow: hidden;
479
  margin: 0 !important;
480
  padding: 0 !important;
481
}
482
.dataTables_wrapper.no-footer .dataTables_scrollBody {
483
  border-bottom: 1px solid #111;
484
}
485
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
486
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
487
  border-bottom: none;
488
}
489
.dataTables_wrapper:after {
490
  visibility: hidden;
491
  display: block;
492
  content: "";
493
  clear: both;
494
  height: 0;
495
}
496
 
497
@media screen and (max-width: 767px) {
498
  .dataTables_wrapper .dataTables_info,
499
  .dataTables_wrapper .dataTables_paginate {
500
    float: none;
501
    text-align: center;
502
  }
503
  .dataTables_wrapper .dataTables_paginate {
504
    margin-top: 0.5em;
505
  }
506
}
507
@media screen and (max-width: 640px) {
508
  .dataTables_wrapper .dataTables_length,
509
  .dataTables_wrapper .dataTables_filter {
510
    float: none;
511
    text-align: center;
512
  }
513
  .dataTables_wrapper .dataTables_filter {
514
    margin-top: 0.5em;
515
  }
516
}