jquery-datatables-rails 1.11.2 → 1.11.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. checksums.yaml +7 -0
  2. data/lib/jquery/datatables/rails/engine.rb +1 -1
  3. data/lib/jquery/datatables/rails/version.rb +1 -1
  4. data/vendor/assets/images/dataTables/extras/button.png +0 -0
  5. data/vendor/assets/images/dataTables/extras/insert.png +0 -0
  6. data/vendor/assets/images/dataTables/foundation/sort_asc.png +0 -0
  7. data/vendor/assets/images/dataTables/foundation/sort_asc_disabled.png +0 -0
  8. data/vendor/assets/images/dataTables/foundation/sort_both.png +0 -0
  9. data/vendor/assets/images/dataTables/foundation/sort_desc.png +0 -0
  10. data/vendor/assets/images/dataTables/foundation/sort_desc_disabled.png +0 -0
  11. data/vendor/assets/images/dataTables/minus.png +0 -0
  12. data/vendor/assets/images/dataTables/plus.png +0 -0
  13. data/vendor/assets/javascripts/dataTables/extras/ColReorder.js +41 -15
  14. data/vendor/assets/javascripts/dataTables/extras/ColVis.js +1 -9
  15. data/vendor/assets/javascripts/dataTables/extras/TableTools.js +121 -69
  16. data/vendor/assets/javascripts/dataTables/extras/TableTools.min.js +50 -49
  17. data/vendor/assets/javascripts/dataTables/jquery.dataTables.bootstrap.js +2 -2
  18. data/vendor/assets/javascripts/dataTables/jquery.dataTables.bootstrap3.js +152 -0
  19. data/vendor/assets/javascripts/dataTables/jquery.dataTables.foundation.js +186 -0
  20. data/vendor/assets/javascripts/dataTables/jquery.dataTables.responsive.js +435 -0
  21. data/vendor/assets/media/dataTables/extras/as3/ZeroClipboard.as +1 -1
  22. data/vendor/assets/media/dataTables/extras/as3/ZeroClipboardPdf.as +1 -1
  23. data/vendor/assets/media/dataTables/extras/swf/copy_csv_xls.swf +0 -0
  24. data/vendor/assets/media/dataTables/extras/swf/copy_csv_xls_pdf.swf +0 -0
  25. data/vendor/assets/stylesheets/dataTables/extras/ColReorder.css.erb +21 -0
  26. data/vendor/assets/stylesheets/dataTables/extras/ColVis.css +76 -0
  27. data/vendor/assets/stylesheets/dataTables/extras/ColVisAlt.css.erb +104 -0
  28. data/vendor/assets/stylesheets/dataTables/extras/{TableTools.css → TableTools.css.erb} +39 -31
  29. data/vendor/assets/stylesheets/dataTables/jquery.dataTables.bootstrap.css.scss +5 -0
  30. data/vendor/assets/stylesheets/dataTables/jquery.dataTables.bootstrap3.css.scss +216 -0
  31. data/vendor/assets/stylesheets/dataTables/jquery.dataTables.foundation.css.scss +211 -0
  32. data/vendor/assets/stylesheets/dataTables/jquery.dataTables.responsive.css.scss +22 -0
  33. metadata +28 -15
@@ -0,0 +1,21 @@
1
+ /*
2
+ * Namespace DTCR - "DataTables ColReorder" plug-in
3
+ */
4
+
5
+ table.DTCR_clonedTable {
6
+ background-color: white;
7
+ z-index: 202;
8
+ }
9
+
10
+ div.DTCR_pointer {
11
+ width: 1px;
12
+ background-color: #0259C4;
13
+ z-index: 201;
14
+ }
15
+
16
+ body.alt div.DTCR_pointer {
17
+ margin-top: -15px;
18
+ margin-left: -9px;
19
+ width: 18px;
20
+ background: url(<%= asset_path 'dataTables/extras/insert.png' %>) no-repeat top left;
21
+ }
@@ -0,0 +1,76 @@
1
+
2
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3
+ * ColVis styles
4
+ */
5
+ .ColVis {
6
+ float: right;
7
+ margin-bottom: 1em;
8
+ }
9
+
10
+ .ColVis_Button {
11
+ position: relative;
12
+ float: left;
13
+ margin-right: 3px;
14
+ padding: 3px 5px;
15
+ height: 30px;
16
+ background-color: #fff;
17
+ border: 1px solid #d0d0d0;
18
+ cursor: pointer;
19
+ *cursor: hand;
20
+ }
21
+
22
+ button.ColVis_Button::-moz-focus-inner {
23
+ border: none !important;
24
+ padding: 0;
25
+ }
26
+
27
+ .ColVis_text_hover {
28
+ border: 1px solid #999;
29
+ background-color: #f0f0f0;
30
+ }
31
+
32
+ div.ColVis_collectionBackground {
33
+ background-color: black;
34
+ z-index: 1100;
35
+ }
36
+
37
+ div.ColVis_collection {
38
+ position: relative;
39
+ width: 150px;
40
+ background-color: #f3f3f3;
41
+ padding: 3px;
42
+ border: 1px solid #ccc;
43
+ z-index: 1102;
44
+ }
45
+
46
+ div.ColVis_collection button.ColVis_Button {
47
+ background-color: white;
48
+ width: 100%;
49
+ float: none;
50
+ margin-bottom: 2px;
51
+ }
52
+
53
+ div.ColVis_catcher {
54
+ position: absolute;
55
+ z-index: 1101;
56
+ }
57
+
58
+ .disabled {
59
+ color: #999;
60
+ }
61
+
62
+
63
+
64
+ button.ColVis_Button {
65
+ text-align: left;
66
+ }
67
+
68
+ div.ColVis_collection button.ColVis_Button:hover {
69
+ border: 1px solid #999;
70
+ background-color: #f0f0f0;
71
+ }
72
+
73
+ span.ColVis_radio {
74
+ display: inline-block;
75
+ width: 20px;
76
+ }
@@ -0,0 +1,104 @@
1
+ /*
2
+ * An alternative styling for ColVis
3
+ * Note you will likely have to change the path for the background image used by jQuery UI theming:
4
+ * ../../../../examples/examples_support/themes/smoothness
5
+ */
6
+
7
+ .ColVis {
8
+ position: absolute;
9
+ right: 0;
10
+ top: 0;
11
+ width: 15px;
12
+ height: 30px;
13
+ }
14
+
15
+ .ColVis_MasterButton {
16
+ height: 100%;
17
+ width: 100%;
18
+ border-left-width: 0;
19
+ cursor: pointer;
20
+ *cursor: hand;
21
+ background: url(<%= asset_path 'dataTables/extras/button.png' %>) no-repeat top left;
22
+ }
23
+
24
+ button.ColVis_Button::-moz-focus-inner {
25
+ border: none !important;
26
+ padding: 0;
27
+ }
28
+
29
+ .ColVis_text_hover {
30
+ border: 1px solid #999;
31
+ background-color: #f0f0f0;
32
+ }
33
+
34
+ div.ColVis_collectionBackground {
35
+ background-color: black;
36
+ z-index: 1100;
37
+ }
38
+
39
+ div.ColVis_collection {
40
+ position: relative;
41
+ width: 150px;
42
+ background-color: #f9f9f9;
43
+ padding: 3px;
44
+ border: 1px solid #ccc;
45
+ z-index: 1102;
46
+ }
47
+
48
+ div.ColVis_collection button.ColVis_Button {
49
+ height: 30px;
50
+ width: 100%;
51
+ margin-right: 3px;
52
+ margin-bottom: 2px;
53
+ padding: 3px 5px;
54
+ cursor: pointer;
55
+ *cursor: hand;
56
+ text-align: left;
57
+ }
58
+
59
+ div.ColVis_collection button.ColVis_Button:hover {
60
+ border: 1px solid #999;
61
+ background-color: #f0f0f0;
62
+ }
63
+
64
+ div.ColVis_catcher {
65
+ position: absolute;
66
+ z-index: 1101;
67
+ }
68
+
69
+ span.ColVis_radio {
70
+ display: inline-block;
71
+ width: 20px;
72
+ }
73
+
74
+ button.ColVis_Restore {
75
+ margin-top: 15px;
76
+ }
77
+
78
+ button.ColVis_Restore span {
79
+ display: inline-block;
80
+ padding-left: 10px;
81
+ text-align: left;
82
+ }
83
+
84
+ .disabled {
85
+ color: #999;
86
+ }
87
+
88
+
89
+
90
+ /*
91
+ * Styles needed for DataTables scrolling
92
+ */
93
+ div.dataTables_scrollHead {
94
+ position: relative;
95
+ overflow: hidden;
96
+ }
97
+
98
+ div.dataTables_scrollBody {
99
+ overflow-y: scroll;
100
+ }
101
+
102
+ div.dataTables_scrollFoot {
103
+ overflow: hidden;
104
+ }
@@ -5,7 +5,7 @@
5
5
  * Language: Javascript
6
6
  * License: GPL v2 / 3 point BSD
7
7
  * Project: DataTables
8
- *
8
+ *
9
9
  * Copyright 2009-2012 Allan Jardine, all rights reserved.
10
10
  *
11
11
  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
@@ -74,7 +74,7 @@ button.DTTT_button {
74
74
  padding: 3px 8px;
75
75
  }
76
76
 
77
- .DTTT_button embed {
77
+ .DTTT_button embed {
78
78
  outline: none;
79
79
  }
80
80
 
@@ -104,7 +104,7 @@ div.DTTT_disabled,
104
104
  a.DTTT_disabled {
105
105
  color: #999;
106
106
  border: 1px solid #d0d0d0;
107
-
107
+
108
108
  background: #ffffff; /* Old browsers */
109
109
  background: -webkit-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* Chrome10+,Safari5.1+ */
110
110
  background: -moz-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* FF3.6+ */
@@ -115,19 +115,25 @@ a.DTTT_disabled {
115
115
  }
116
116
 
117
117
 
118
- button.DTTT_button_csv,
119
- button.DTTT_button_xls,
120
- button.DTTT_button_copy,
121
- button.DTTT_button_pdf,
122
- button.DTTT_button_print {
118
+
119
+ /*
120
+ * BUTTON_STYLES
121
+ * Action specific button styles
122
+ * If you want images - comment this back in
123
+
124
+ a.DTTT_button_csv,
125
+ a.DTTT_button_xls,
126
+ a.DTTT_button_copy,
127
+ a.DTTT_button_pdf,
128
+ a.DTTT_button_print {
123
129
  padding-right: 0px;
124
130
  }
125
131
 
126
- button.DTTT_button_csv span,
127
- button.DTTT_button_xls span,
128
- button.DTTT_button_copy span,
129
- button.DTTT_button_pdf span,
130
- button.DTTT_button_print span {
132
+ a.DTTT_button_csv span,
133
+ a.DTTT_button_xls span,
134
+ a.DTTT_button_copy span,
135
+ a.DTTT_button_pdf span,
136
+ a.DTTT_button_print span {
131
137
  display: inline-block;
132
138
  height: 24px;
133
139
  line-height: 24px;
@@ -135,30 +141,32 @@ button.DTTT_button_print span {
135
141
  }
136
142
 
137
143
 
138
- button.DTTT_button_csv span { background: url('/assets/dataTables/dataTables/extras/csv.png') no-repeat bottom right; }
139
- button.DTTT_button_csv:hover span { background: url('/assets/dataTables/dataTables/extras/csv_hover.png') no-repeat center right; }
144
+ a.DTTT_button_csv span { background: url(../images/csv.png) no-repeat bottom right; }
145
+ a.DTTT_button_csv:hover span { background: url(../images/csv_hover.png) no-repeat center right; }
140
146
 
141
- button.DTTT_button_xls span { background: url('assets/dataTables/dataTables/extras/xls.png') no-repeat center right; }
142
- button.DTTT_button_xls:hover span { background: #f0f0f0 url('/assets/dataTables/extras/xls_hover.png') no-repeat center right; }
147
+ a.DTTT_button_xls span { background: url(../images/xls.png) no-repeat center right; }
148
+ a.DTTT_button_xls:hover span { background: #f0f0f0 url(../images/xls_hover.png) no-repeat center right; }
143
149
 
144
- button.DTTT_button_copy span { background: url('/assets/dataTables/dataTables/extras/copy.png') no-repeat center right; }
145
- button.DTTT_button_copy:hover span { background: #f0f0f0 url('/assets/dataTables/extras/copy_hover.png') no-repeat center right; }
150
+ a.DTTT_button_copy span { background: url(../images/copy.png) no-repeat center right; }
151
+ a.DTTT_button_copy:hover span { background: #f0f0f0 url(../images/copy_hover.png) no-repeat center right; }
146
152
 
147
- button.DTTT_button_pdf span { background: url('/assets/dataTables/dataTables/extras/pdf.png') no-repeat center right; }
148
- button.DTTT_button_pdf:hover span { background: #f0f0f0 url('/assets/dataTables/extras/pdf_hover.png') no-repeat center right; }
153
+ a.DTTT_button_pdf span { background: url(../images/pdf.png) no-repeat center right; }
154
+ a.DTTT_button_pdf:hover span { background: #f0f0f0 url(../images/pdf_hover.png) no-repeat center right; }
149
155
 
150
- button.DTTT_button_print span { background: url('/assets/dataTables/dataTables/extras/print.png') no-repeat center right; }
151
- button.DTTT_button_print:hover span { background: #f0f0f0 url('/assets/dataTables/extras/print_hover.png') no-repeat center right; }
156
+ a.DTTT_button_print span { background: url(../images/print.png) no-repeat center right; }
157
+ a.DTTT_button_print:hover span { background: #f0f0f0 url(../images/print_hover.png) no-repeat center right; }
152
158
 
159
+ */
153
160
 
154
161
  button.DTTT_button_collection span {
155
162
  padding-right: 17px;
156
- background: url('/assets/dataTables/extras/collection.png') no-repeat center right;
163
+
164
+ background: url(<%= asset_path 'dataTables/extras/collection.png' %>) no-repeat center right;
157
165
  }
158
166
 
159
167
  button.DTTT_button_collection:hover span {
160
168
  padding-right: 17px;
161
- background: #f0f0f0 url('/assets/dataTables/extras/collection_hover.png') no-repeat center right;
169
+ background: #f0f0f0 url(<%= asset_path 'dataTables/extras/collection_hover.png' %>) no-repeat center right;
162
170
  }
163
171
 
164
172
 
@@ -225,7 +233,7 @@ div.DTTT_collection {
225
233
  -ms-border-radius: 5px;
226
234
  -o-border-radius: 5px;
227
235
  border-radius: 5px;
228
-
236
+
229
237
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
230
238
  -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
231
239
  -ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
@@ -234,7 +242,7 @@ div.DTTT_collection {
234
242
  }
235
243
 
236
244
  div.DTTT_collection_background {
237
- background: transparent url('/assets/dataTables/extras/background.png') repeat top left;
245
+ background: transparent url(<%= asset_path 'dataTables/extras/background.png' %>) repeat top left;
238
246
  z-index: 2001;
239
247
  }
240
248
 
@@ -248,7 +256,7 @@ div.DTTT_collection a.DTTT_button {
248
256
  display: block;
249
257
  float: none;
250
258
  margin-bottom: 4px;
251
-
259
+
252
260
  -webkit-box-shadow: 1px 1px 3px #999;
253
261
  -moz-box-shadow: 1px 1px 3px #999;
254
262
  -ms-box-shadow: 1px 1px 3px #999;
@@ -281,18 +289,18 @@ div.DTTT_collection a.DTTT_button {
281
289
  background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
282
290
  background: linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
283
291
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
284
-
292
+
285
293
  opacity: 0.95;
286
294
 
287
295
  border: 1px solid black;
288
296
  border: 1px solid rgba(0, 0, 0, 0.5);
289
-
297
+
290
298
  -webkit-border-radius: 6px;
291
299
  -moz-border-radius: 6px;
292
300
  -ms-border-radius: 6px;
293
301
  -o-border-radius: 6px;
294
302
  border-radius: 6px;
295
-
303
+
296
304
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
297
305
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
298
306
  -ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
@@ -44,3 +44,8 @@ table.dataTable thead .sorting_desc_disabled { background: image-url('dataTables
44
44
  table.dataTable th:active {
45
45
  outline: none;
46
46
  }
47
+
48
+ /* fixes for TableTools */
49
+ .DTTT_dropdown {z-index: 2002;}
50
+
51
+ .DTTT_dropdown li {position: relative;}
@@ -0,0 +1,216 @@
1
+ div.dataTables_length label {
2
+ font-weight: normal;
3
+ float: left;
4
+ text-align: left;
5
+ }
6
+
7
+ div.dataTables_length select {
8
+ width: 75px;
9
+ }
10
+
11
+ div.dataTables_filter label {
12
+ font-weight: normal;
13
+ float: right;
14
+ }
15
+
16
+ div.dataTables_filter input {
17
+ width: 16em;
18
+ }
19
+
20
+ div.dataTables_info {
21
+ padding-top: 8px;
22
+ }
23
+
24
+ div.dataTables_paginate {
25
+ float: right;
26
+ margin: 0;
27
+ }
28
+
29
+ div.dataTables_paginate ul.pagination {
30
+ margin: 2px;
31
+ }
32
+
33
+ table.dataTable,
34
+ table.dataTable td,
35
+ table.dataTable th {
36
+ -webkit-box-sizing: content-box;
37
+ -moz-box-sizing: content-box;
38
+ box-sizing: content-box;
39
+ }
40
+
41
+
42
+ table.dataTable {
43
+ clear: both;
44
+ margin-top: 6px !important;
45
+ margin-bottom: 6px !important;
46
+ max-width: none !important;
47
+ }
48
+
49
+ table.dataTable thead .sorting,
50
+ table.dataTable thead .sorting_asc,
51
+ table.dataTable thead .sorting_desc,
52
+ table.dataTable thead .sorting_asc_disabled,
53
+ table.dataTable thead .sorting_desc_disabled {
54
+ cursor: pointer;
55
+ }
56
+
57
+ table.dataTable thead .sorting { background: image-url('dataTables/sort_both.png') no-repeat center right; }
58
+ table.dataTable thead .sorting_asc { background: image-url('dataTables/sort_asc.png') no-repeat center right; }
59
+ table.dataTable thead .sorting_desc { background: image-url('dataTables/sort_desc.png') no-repeat center right; }
60
+
61
+ table.dataTable thead .sorting_asc_disabled { background: image-url('dataTables/sort_asc_disabled.png') no-repeat center right; }
62
+ table.dataTable thead .sorting_desc_disabled { background: image-url('dataTables/sort_desc_disabled.png') no-repeat center right; }
63
+
64
+ table.dataTable th:active {
65
+ outline: none;
66
+ }
67
+
68
+ /* Scrolling */
69
+ div.dataTables_scrollHead table {
70
+ margin-bottom: 0 !important;
71
+ border-bottom-left-radius: 0;
72
+ border-bottom-right-radius: 0;
73
+ }
74
+
75
+ div.dataTables_scrollHead table thead tr:last-child th:first-child,
76
+ div.dataTables_scrollHead table thead tr:last-child td:first-child {
77
+ border-bottom-left-radius: 0 !important;
78
+ border-bottom-right-radius: 0 !important;
79
+ }
80
+
81
+ div.dataTables_scrollBody table {
82
+ border-top: none;
83
+ margin-bottom: 0 !important;
84
+ }
85
+
86
+ div.dataTables_scrollBody tbody tr:first-child th,
87
+ div.dataTables_scrollBody tbody tr:first-child td {
88
+ border-top: none;
89
+ }
90
+
91
+ div.dataTables_scrollFoot table {
92
+ border-top: none;
93
+ }
94
+
95
+
96
+
97
+
98
+ /*
99
+ * TableTools styles
100
+ */
101
+ .table tbody tr.active td,
102
+ .table tbody tr.active th {
103
+ background-color: #08C;
104
+ color: white;
105
+ }
106
+
107
+ .table tbody tr.active:hover td,
108
+ .table tbody tr.active:hover th {
109
+ background-color: #0075b0 !important;
110
+ }
111
+
112
+ .table-striped tbody tr.active:nth-child(odd) td,
113
+ .table-striped tbody tr.active:nth-child(odd) th {
114
+ background-color: #017ebc;
115
+ }
116
+
117
+ table.DTTT_selectable tbody tr {
118
+ cursor: pointer;
119
+ }
120
+
121
+ div.DTTT .btn {
122
+ color: #333 !important;
123
+ font-size: 12px;
124
+ }
125
+
126
+ div.DTTT .btn:hover {
127
+ text-decoration: none !important;
128
+ }
129
+
130
+ ul.DTTT_dropdown.dropdown-menu {
131
+ z-index: 2003;
132
+ }
133
+
134
+ ul.DTTT_dropdown.dropdown-menu a {
135
+ color: #333 !important; /* needed only when demo_page.css is included */
136
+ }
137
+
138
+ ul.DTTT_dropdown.dropdown-menu li {
139
+ position: relative;
140
+ }
141
+
142
+ ul.DTTT_dropdown.dropdown-menu li:hover a {
143
+ background-color: #0088cc;
144
+ color: white !important;
145
+ }
146
+
147
+ div.DTTT_collection_background {
148
+ z-index: 2002;
149
+ }
150
+
151
+ /* TableTools information display */
152
+ div.DTTT_print_info.modal {
153
+ height: 150px;
154
+ margin-top: -75px;
155
+ text-align: center;
156
+ }
157
+
158
+ div.DTTT_print_info h6 {
159
+ font-weight: normal;
160
+ font-size: 28px;
161
+ line-height: 28px;
162
+ margin: 1em;
163
+ }
164
+
165
+ div.DTTT_print_info p {
166
+ font-size: 14px;
167
+ line-height: 20px;
168
+ }
169
+
170
+
171
+
172
+ /*
173
+ * FixedColumns styles
174
+ */
175
+ div.DTFC_LeftHeadWrapper table,
176
+ div.DTFC_LeftFootWrapper table,
177
+ div.DTFC_RightHeadWrapper table,
178
+ div.DTFC_RightFootWrapper table,
179
+ table.DTFC_Cloned tr.even {
180
+ background-color: white;
181
+ }
182
+
183
+ div.DTFC_RightHeadWrapper table ,
184
+ div.DTFC_LeftHeadWrapper table {
185
+ margin-bottom: 0 !important;
186
+ border-top-right-radius: 0 !important;
187
+ border-bottom-left-radius: 0 !important;
188
+ border-bottom-right-radius: 0 !important;
189
+ }
190
+
191
+ div.DTFC_RightHeadWrapper table thead tr:last-child th:first-child,
192
+ div.DTFC_RightHeadWrapper table thead tr:last-child td:first-child,
193
+ div.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child,
194
+ div.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child {
195
+ border-bottom-left-radius: 0 !important;
196
+ border-bottom-right-radius: 0 !important;
197
+ }
198
+
199
+ div.DTFC_RightBodyWrapper table,
200
+ div.DTFC_LeftBodyWrapper table {
201
+ border-top: none;
202
+ margin-bottom: 0 !important;
203
+ }
204
+
205
+ div.DTFC_RightBodyWrapper tbody tr:first-child th,
206
+ div.DTFC_RightBodyWrapper tbody tr:first-child td,
207
+ div.DTFC_LeftBodyWrapper tbody tr:first-child th,
208
+ div.DTFC_LeftBodyWrapper tbody tr:first-child td {
209
+ border-top: none;
210
+ }
211
+
212
+ div.DTFC_RightFootWrapper table,
213
+ div.DTFC_LeftFootWrapper table {
214
+ border-top: none;
215
+ }
216
+