rspec-tracer 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +10 -0
  3. data/LICENSE +21 -0
  4. data/README.md +248 -0
  5. data/lib/rspec_tracer/cache.rb +109 -0
  6. data/lib/rspec_tracer/configuration.rb +134 -0
  7. data/lib/rspec_tracer/coverage_reporter.rb +179 -0
  8. data/lib/rspec_tracer/defaults.rb +10 -0
  9. data/lib/rspec_tracer/example.rb +58 -0
  10. data/lib/rspec_tracer/filter.rb +68 -0
  11. data/lib/rspec_tracer/html_reporter/assets/javascripts/application.js +56 -0
  12. data/lib/rspec_tracer/html_reporter/assets/javascripts/libraries/jquery.js +10881 -0
  13. data/lib/rspec_tracer/html_reporter/assets/javascripts/plugins/datatables.js +15381 -0
  14. data/lib/rspec_tracer/html_reporter/assets/stylesheets/application.css +196 -0
  15. data/lib/rspec_tracer/html_reporter/assets/stylesheets/plugins/datatables.css +459 -0
  16. data/lib/rspec_tracer/html_reporter/assets/stylesheets/plugins/jquery-ui.css +436 -0
  17. data/lib/rspec_tracer/html_reporter/assets/stylesheets/print.css +92 -0
  18. data/lib/rspec_tracer/html_reporter/assets/stylesheets/reset.css +265 -0
  19. data/lib/rspec_tracer/html_reporter/public/application.css +5 -0
  20. data/lib/rspec_tracer/html_reporter/public/application.js +6 -0
  21. data/lib/rspec_tracer/html_reporter/public/datatables/images/sort_asc.png +0 -0
  22. data/lib/rspec_tracer/html_reporter/public/datatables/images/sort_asc_disabled.png +0 -0
  23. data/lib/rspec_tracer/html_reporter/public/datatables/images/sort_both.png +0 -0
  24. data/lib/rspec_tracer/html_reporter/public/datatables/images/sort_desc.png +0 -0
  25. data/lib/rspec_tracer/html_reporter/public/datatables/images/sort_desc_disabled.png +0 -0
  26. data/lib/rspec_tracer/html_reporter/public/favicon.png +0 -0
  27. data/lib/rspec_tracer/html_reporter/public/loading.gif +0 -0
  28. data/lib/rspec_tracer/html_reporter/reporter.rb +180 -0
  29. data/lib/rspec_tracer/html_reporter/views/examples.erb +53 -0
  30. data/lib/rspec_tracer/html_reporter/views/examples_dependency.erb +36 -0
  31. data/lib/rspec_tracer/html_reporter/views/files_dependency.erb +36 -0
  32. data/lib/rspec_tracer/html_reporter/views/layout.erb +32 -0
  33. data/lib/rspec_tracer/reporter.rb +255 -0
  34. data/lib/rspec_tracer/rspec_reporter.rb +43 -0
  35. data/lib/rspec_tracer/rspec_runner.rb +25 -0
  36. data/lib/rspec_tracer/ruby_coverage.rb +9 -0
  37. data/lib/rspec_tracer/runner.rb +299 -0
  38. data/lib/rspec_tracer/source_file.rb +31 -0
  39. data/lib/rspec_tracer/version.rb +5 -0
  40. data/lib/rspec_tracer.rb +243 -0
  41. metadata +122 -0
@@ -0,0 +1,196 @@
1
+ //= require ./reset.css
2
+ //= require_directory ./plugins/
3
+
4
+ #content {
5
+ -moz-border-radius-bottomleft: 5px;
6
+ -moz-border-radius-bottomright: 5px;
7
+ -moz-border-radius-topright: 5px;
8
+ -webkit-border-bottom-left-radius: 5px;
9
+ -webkit-border-bottom-right-radius: 5px;
10
+ -webkit-border-top-right-radius: 5px;
11
+ background-color: #fff;
12
+ border: 2px solid #ddd;
13
+ border-bottom-left-radius: 5px;
14
+ border-bottom-right-radius: 5px;
15
+ border-top: 8px solid #ddd;
16
+ border-top-right-radius: 5px;
17
+ clear: left;
18
+ padding: 18px;
19
+ }
20
+
21
+ #footer {
22
+ color: #ddd;
23
+ font-size: 12px;
24
+ font-weight: 700;
25
+ margin-top: 12px;
26
+ text-align: right;
27
+ }
28
+
29
+ #footer a {
30
+ color: #eee;
31
+ text-decoration: underline;
32
+ }
33
+
34
+ #footer a:hover {
35
+ color: #fff;
36
+ text-decoration: none;
37
+ }
38
+
39
+ #loading {
40
+ left: 47%;
41
+ position: fixed;
42
+ top: 46%;
43
+ }
44
+
45
+ .blue {
46
+ color: blue;
47
+ }
48
+
49
+ .dataTables_filter,
50
+ .dataTables_info {
51
+ padding: 2px 6px;
52
+ }
53
+
54
+ .green {
55
+ color: #090;
56
+ }
57
+
58
+ .group_tabs {
59
+ float: left;
60
+ list-style: none;
61
+ margin: 0;
62
+ padding: 0;
63
+ }
64
+
65
+ .group_tabs li {
66
+ display: inline;
67
+ float: left;
68
+ }
69
+
70
+ .group_tabs li a {
71
+ -moz-border-radius-topleft: 2px;
72
+ -moz-border-radius-topright: 2px;
73
+ -webkit-border-top-left-radius: 2px;
74
+ -webkit-border-top-right-radius: 2px;
75
+ background: linear-gradient(#dddddd, #aaaaaa);
76
+ background-color: #aaa;
77
+ border-bottom: none;
78
+ border-top: 1px solid #efefef;
79
+ border-top-left-radius: 2px;
80
+ border-top-right-radius: 2px;
81
+ color: #333;
82
+ display: block;
83
+ float: left;
84
+ font-family: Helvetica, Arial, sans-serif;
85
+ font-weight: 700;
86
+ margin-right: 8px;
87
+ padding: 4px 8px;
88
+ text-decoration: none;
89
+ text-shadow: #e5e5e5 1px 1px 0;
90
+ }
91
+
92
+ .group_tabs li a:active {
93
+ padding-bottom: 3px;
94
+ padding-top: 5px;
95
+ }
96
+
97
+ .group_tabs li a:hover {
98
+ background: linear-gradient(#eeeeee, #aaaaaa);
99
+ background-color: #ccc;
100
+ }
101
+
102
+ .group_tabs li.active a {
103
+ background: linear-gradient(white, #dddddd);
104
+ background-color: #ddd;
105
+ color: #000;
106
+ text-shadow: #fff 1px 1px 0;
107
+ }
108
+
109
+ .number {
110
+ text-align: center;
111
+ }
112
+
113
+ .red {
114
+ color: #900;
115
+ }
116
+
117
+ .report-table {
118
+ margin-bottom: 18px;
119
+ }
120
+
121
+ .report-table--responsive {
122
+ overflow-x: auto;
123
+ overflow-y: hidden;
124
+ }
125
+
126
+ .spec-files-table>tbody td.even {
127
+ background: #e5ecf9;
128
+ }
129
+
130
+ .spec-files-table>tbody td.odd {
131
+ background: #fff;
132
+ }
133
+
134
+ .yellow {
135
+ color: #da0;
136
+ }
137
+
138
+ a {
139
+ color: #333;
140
+ text-decoration: none;
141
+ }
142
+
143
+ a:hover {
144
+ color: #000;
145
+ text-decoration: underline;
146
+ }
147
+
148
+ body {
149
+ background-color: #333;
150
+ font-family: "Lucida Grande", Helvetica, "Helvetica Neue", Arial, sans-serif;
151
+ padding: 12px;
152
+ }
153
+
154
+ h1,
155
+ h2,
156
+ h3,
157
+ h4 {
158
+ color: #1C2324;
159
+ margin: 0 0 12px;
160
+ padding: 0;
161
+ }
162
+
163
+ table {
164
+ width: 100%;
165
+ }
166
+
167
+ td {
168
+ padding: 4px 8px;
169
+ vertical-align: top;
170
+ }
171
+
172
+ td.strong {
173
+ font-weight: 700;
174
+ }
175
+
176
+ th {
177
+ white-space: nowrap;
178
+ }
179
+
180
+ th span.ui-icon {
181
+ float: left;
182
+ }
183
+
184
+ th.ui-state-default {
185
+ cursor: pointer;
186
+ }
187
+
188
+ thead th {
189
+ background: #fff;
190
+ }
191
+
192
+ tr,
193
+ td {
194
+ margin: 0;
195
+ padding: 0;
196
+ }
@@ -0,0 +1,459 @@
1
+ /*
2
+ * Table styles
3
+ */
4
+ table.dataTable {
5
+ width: 100%;
6
+ margin: 0 auto;
7
+ clear: both;
8
+ border-collapse: separate;
9
+ border-spacing: 0;
10
+ /*
11
+ * Header and footer styles
12
+ */
13
+ /*
14
+ * Body styles
15
+ */
16
+ }
17
+ table.dataTable thead th,
18
+ table.dataTable tfoot th {
19
+ font-weight: bold;
20
+ }
21
+ table.dataTable thead th,
22
+ table.dataTable thead td {
23
+ padding: 10px 18px;
24
+ border-bottom: 1px solid #111;
25
+ }
26
+ table.dataTable thead th:active,
27
+ table.dataTable thead td:active {
28
+ outline: none;
29
+ }
30
+ table.dataTable tfoot th,
31
+ table.dataTable tfoot td {
32
+ padding: 10px 18px 6px 18px;
33
+ border-top: 1px solid #111;
34
+ }
35
+ table.dataTable thead .sorting,
36
+ table.dataTable thead .sorting_asc,
37
+ table.dataTable thead .sorting_desc,
38
+ table.dataTable thead .sorting_asc_disabled,
39
+ table.dataTable thead .sorting_desc_disabled {
40
+ cursor: pointer;
41
+ *cursor: hand;
42
+ background-repeat: no-repeat;
43
+ background-position: center right;
44
+ }
45
+ table.dataTable thead .sorting {
46
+ background-image: url("datatables/images/sort_both.png");
47
+ }
48
+ table.dataTable thead .sorting_asc {
49
+ background-image: url("datatables/images/sort_asc.png") !important;
50
+ }
51
+ table.dataTable thead .sorting_desc {
52
+ background-image: url("datatables/images/sort_desc.png") !important;
53
+ }
54
+ table.dataTable thead .sorting_asc_disabled {
55
+ background-image: url("datatables/images/sort_asc_disabled.png");
56
+ }
57
+ table.dataTable thead .sorting_desc_disabled {
58
+ background-image: url("datatables/images/sort_desc_disabled.png");
59
+ }
60
+ table.dataTable tbody tr {
61
+ background-color: #ffffff;
62
+ }
63
+ table.dataTable tbody tr.selected {
64
+ background-color: #B0BED9;
65
+ }
66
+ table.dataTable tbody th,
67
+ table.dataTable tbody td {
68
+ padding: 8px 10px;
69
+ }
70
+ table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
71
+ border-top: 1px solid #ddd;
72
+ }
73
+ table.dataTable.row-border tbody tr:first-child th,
74
+ table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
75
+ table.dataTable.display tbody tr:first-child td {
76
+ border-top: none;
77
+ }
78
+ table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
79
+ border-top: 1px solid #ddd;
80
+ border-right: 1px solid #ddd;
81
+ }
82
+ table.dataTable.cell-border tbody tr th:first-child,
83
+ table.dataTable.cell-border tbody tr td:first-child {
84
+ border-left: 1px solid #ddd;
85
+ }
86
+ table.dataTable.cell-border tbody tr:first-child th,
87
+ table.dataTable.cell-border tbody tr:first-child td {
88
+ border-top: none;
89
+ }
90
+ table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
91
+ background-color: #f9f9f9;
92
+ }
93
+ table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
94
+ background-color: #acbad4;
95
+ }
96
+ table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
97
+ background-color: #f6f6f6;
98
+ }
99
+ table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
100
+ background-color: #aab7d1;
101
+ }
102
+ table.dataTable.order-column tbody tr > .sorting_1,
103
+ table.dataTable.order-column tbody tr > .sorting_2,
104
+ table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
105
+ table.dataTable.display tbody tr > .sorting_2,
106
+ table.dataTable.display tbody tr > .sorting_3 {
107
+ background-color: #fafafa;
108
+ }
109
+ table.dataTable.order-column tbody tr.selected > .sorting_1,
110
+ table.dataTable.order-column tbody tr.selected > .sorting_2,
111
+ table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
112
+ table.dataTable.display tbody tr.selected > .sorting_2,
113
+ table.dataTable.display tbody tr.selected > .sorting_3 {
114
+ background-color: #acbad5;
115
+ }
116
+ table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
117
+ background-color: #f1f1f1;
118
+ }
119
+ table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
120
+ background-color: #f3f3f3;
121
+ }
122
+ table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
123
+ background-color: whitesmoke;
124
+ }
125
+ table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
126
+ background-color: #a6b4cd;
127
+ }
128
+ table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
129
+ background-color: #a8b5cf;
130
+ }
131
+ table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
132
+ background-color: #a9b7d1;
133
+ }
134
+ table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
135
+ background-color: #fafafa;
136
+ }
137
+ table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
138
+ background-color: #fcfcfc;
139
+ }
140
+ table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
141
+ background-color: #fefefe;
142
+ }
143
+ table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
144
+ background-color: #acbad5;
145
+ }
146
+ table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
147
+ background-color: #aebcd6;
148
+ }
149
+ table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
150
+ background-color: #afbdd8;
151
+ }
152
+ table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
153
+ background-color: #eaeaea;
154
+ }
155
+ table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
156
+ background-color: #ececec;
157
+ }
158
+ table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
159
+ background-color: #efefef;
160
+ }
161
+ table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
162
+ background-color: #a2aec7;
163
+ }
164
+ table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
165
+ background-color: #a3b0c9;
166
+ }
167
+ table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
168
+ background-color: #a5b2cb;
169
+ }
170
+ table.dataTable.no-footer {
171
+ border-bottom: 1px solid #111;
172
+ }
173
+ table.dataTable.nowrap th, table.dataTable.nowrap td {
174
+ white-space: nowrap;
175
+ }
176
+ table.dataTable.compact thead th,
177
+ table.dataTable.compact thead td {
178
+ padding: 4px 17px;
179
+ }
180
+ table.dataTable.compact tfoot th,
181
+ table.dataTable.compact tfoot td {
182
+ padding: 4px;
183
+ }
184
+ table.dataTable.compact tbody th,
185
+ table.dataTable.compact tbody td {
186
+ padding: 4px;
187
+ }
188
+ table.dataTable th.dt-left,
189
+ table.dataTable td.dt-left {
190
+ text-align: left;
191
+ }
192
+ table.dataTable th.dt-center,
193
+ table.dataTable td.dt-center,
194
+ table.dataTable td.dataTables_empty {
195
+ text-align: center;
196
+ }
197
+ table.dataTable th.dt-right,
198
+ table.dataTable td.dt-right {
199
+ text-align: right;
200
+ }
201
+ table.dataTable th.dt-justify,
202
+ table.dataTable td.dt-justify {
203
+ text-align: justify;
204
+ }
205
+ table.dataTable th.dt-nowrap,
206
+ table.dataTable td.dt-nowrap {
207
+ white-space: nowrap;
208
+ }
209
+ table.dataTable thead th.dt-head-left,
210
+ table.dataTable thead td.dt-head-left,
211
+ table.dataTable tfoot th.dt-head-left,
212
+ table.dataTable tfoot td.dt-head-left {
213
+ text-align: left;
214
+ }
215
+ table.dataTable thead th.dt-head-center,
216
+ table.dataTable thead td.dt-head-center,
217
+ table.dataTable tfoot th.dt-head-center,
218
+ table.dataTable tfoot td.dt-head-center {
219
+ text-align: center;
220
+ }
221
+ table.dataTable thead th.dt-head-right,
222
+ table.dataTable thead td.dt-head-right,
223
+ table.dataTable tfoot th.dt-head-right,
224
+ table.dataTable tfoot td.dt-head-right {
225
+ text-align: right;
226
+ }
227
+ table.dataTable thead th.dt-head-justify,
228
+ table.dataTable thead td.dt-head-justify,
229
+ table.dataTable tfoot th.dt-head-justify,
230
+ table.dataTable tfoot td.dt-head-justify {
231
+ text-align: justify;
232
+ }
233
+ table.dataTable thead th.dt-head-nowrap,
234
+ table.dataTable thead td.dt-head-nowrap,
235
+ table.dataTable tfoot th.dt-head-nowrap,
236
+ table.dataTable tfoot td.dt-head-nowrap {
237
+ white-space: nowrap;
238
+ }
239
+ table.dataTable tbody th.dt-body-left,
240
+ table.dataTable tbody td.dt-body-left {
241
+ text-align: left;
242
+ }
243
+ table.dataTable tbody th.dt-body-center,
244
+ table.dataTable tbody td.dt-body-center {
245
+ text-align: center;
246
+ }
247
+ table.dataTable tbody th.dt-body-right,
248
+ table.dataTable tbody td.dt-body-right {
249
+ text-align: right;
250
+ }
251
+ table.dataTable tbody th.dt-body-justify,
252
+ table.dataTable tbody td.dt-body-justify {
253
+ text-align: justify;
254
+ }
255
+ table.dataTable tbody th.dt-body-nowrap,
256
+ table.dataTable tbody td.dt-body-nowrap {
257
+ white-space: nowrap;
258
+ }
259
+
260
+ table.dataTable,
261
+ table.dataTable th,
262
+ table.dataTable td {
263
+ box-sizing: content-box;
264
+ }
265
+
266
+ /*
267
+ * Control feature layout
268
+ */
269
+ .dataTables_wrapper {
270
+ position: relative;
271
+ clear: both;
272
+ *zoom: 1;
273
+ zoom: 1;
274
+ }
275
+ .dataTables_wrapper .dataTables_length {
276
+ float: left;
277
+ }
278
+ .dataTables_wrapper .dataTables_length select {
279
+ border: 1px solid #aaa;
280
+ border-radius: 3px;
281
+ padding: 5px;
282
+ background-color: transparent;
283
+ padding: 4px;
284
+ }
285
+ .dataTables_wrapper .dataTables_filter {
286
+ float: right;
287
+ text-align: right;
288
+ }
289
+ .dataTables_wrapper .dataTables_filter input {
290
+ border: 1px solid #aaa;
291
+ border-radius: 3px;
292
+ padding: 5px;
293
+ background-color: transparent;
294
+ margin-left: 3px;
295
+ }
296
+ .dataTables_wrapper .dataTables_info {
297
+ clear: both;
298
+ float: left;
299
+ padding-top: 0.755em;
300
+ }
301
+ .dataTables_wrapper .dataTables_paginate {
302
+ float: right;
303
+ text-align: right;
304
+ padding-top: 0.25em;
305
+ }
306
+ .dataTables_wrapper .dataTables_paginate .paginate_button {
307
+ box-sizing: border-box;
308
+ display: inline-block;
309
+ min-width: 1.5em;
310
+ padding: 0.5em 1em;
311
+ margin-left: 2px;
312
+ text-align: center;
313
+ text-decoration: none !important;
314
+ cursor: pointer;
315
+ *cursor: hand;
316
+ color: #333 !important;
317
+ border: 1px solid transparent;
318
+ border-radius: 2px;
319
+ }
320
+ .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
321
+ color: #333 !important;
322
+ border: 1px solid #979797;
323
+ background-color: white;
324
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
325
+ /* Chrome,Safari4+ */
326
+ background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
327
+ /* Chrome10+,Safari5.1+ */
328
+ background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
329
+ /* FF3.6+ */
330
+ background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
331
+ /* IE10+ */
332
+ background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
333
+ /* Opera 11.10+ */
334
+ background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
335
+ /* W3C */
336
+ }
337
+ .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
338
+ cursor: default;
339
+ color: #666 !important;
340
+ border: 1px solid transparent;
341
+ background: transparent;
342
+ box-shadow: none;
343
+ }
344
+ .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
345
+ color: white !important;
346
+ border: 1px solid #111;
347
+ background-color: #585858;
348
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
349
+ /* Chrome,Safari4+ */
350
+ background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
351
+ /* Chrome10+,Safari5.1+ */
352
+ background: -moz-linear-gradient(top, #585858 0%, #111 100%);
353
+ /* FF3.6+ */
354
+ background: -ms-linear-gradient(top, #585858 0%, #111 100%);
355
+ /* IE10+ */
356
+ background: -o-linear-gradient(top, #585858 0%, #111 100%);
357
+ /* Opera 11.10+ */
358
+ background: linear-gradient(to bottom, #585858 0%, #111 100%);
359
+ /* W3C */
360
+ }
361
+ .dataTables_wrapper .dataTables_paginate .paginate_button:active {
362
+ outline: none;
363
+ background-color: #2b2b2b;
364
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
365
+ /* Chrome,Safari4+ */
366
+ background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
367
+ /* Chrome10+,Safari5.1+ */
368
+ background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
369
+ /* FF3.6+ */
370
+ background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
371
+ /* IE10+ */
372
+ background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
373
+ /* Opera 11.10+ */
374
+ background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
375
+ /* W3C */
376
+ box-shadow: inset 0 0 3px #111;
377
+ }
378
+ .dataTables_wrapper .dataTables_paginate .ellipsis {
379
+ padding: 0 1em;
380
+ }
381
+ .dataTables_wrapper .dataTables_processing {
382
+ position: absolute;
383
+ top: 50%;
384
+ left: 50%;
385
+ width: 100%;
386
+ height: 40px;
387
+ margin-left: -50%;
388
+ margin-top: -25px;
389
+ padding-top: 20px;
390
+ text-align: center;
391
+ font-size: 1.2em;
392
+ background-color: white;
393
+ 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)));
394
+ 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%);
395
+ 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%);
396
+ 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%);
397
+ 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%);
398
+ 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%);
399
+ }
400
+ .dataTables_wrapper .dataTables_length,
401
+ .dataTables_wrapper .dataTables_filter,
402
+ .dataTables_wrapper .dataTables_info,
403
+ .dataTables_wrapper .dataTables_processing,
404
+ .dataTables_wrapper .dataTables_paginate {
405
+ color: #333;
406
+ }
407
+ .dataTables_wrapper .dataTables_scroll {
408
+ clear: both;
409
+ }
410
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
411
+ *margin-top: -1px;
412
+ -webkit-overflow-scrolling: touch;
413
+ }
414
+ .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 {
415
+ vertical-align: middle;
416
+ }
417
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
418
+ .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,
419
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
420
+ height: 0;
421
+ overflow: hidden;
422
+ margin: 0 !important;
423
+ padding: 0 !important;
424
+ }
425
+ .dataTables_wrapper.no-footer .dataTables_scrollBody {
426
+ border-bottom: 1px solid #111;
427
+ }
428
+ .dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
429
+ .dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
430
+ border-bottom: none;
431
+ }
432
+ .dataTables_wrapper:after {
433
+ visibility: hidden;
434
+ display: block;
435
+ content: "";
436
+ clear: both;
437
+ height: 0;
438
+ }
439
+
440
+ @media screen and (max-width: 767px) {
441
+ .dataTables_wrapper .dataTables_info,
442
+ .dataTables_wrapper .dataTables_paginate {
443
+ float: none;
444
+ text-align: center;
445
+ }
446
+ .dataTables_wrapper .dataTables_paginate {
447
+ margin-top: 0.5em;
448
+ }
449
+ }
450
+ @media screen and (max-width: 640px) {
451
+ .dataTables_wrapper .dataTables_length,
452
+ .dataTables_wrapper .dataTables_filter {
453
+ float: none;
454
+ text-align: center;
455
+ }
456
+ .dataTables_wrapper .dataTables_filter {
457
+ margin-top: 0.5em;
458
+ }
459
+ }