-manually replaced images/ with all-static/img/ in this css after downloading
-sed -i -e s,images/,all-static/img/, dataTables.bootstrap.css
+manually replaced images/ with ../img/ in this css after downloading
+remember url() gives a location relative to where the css file lies
*cursor: hand;
}
-table.table thead .sorting { background: url('all-static/img/sort_both.png') no-repeat center right; }
-table.table thead .sorting_asc { background: url('all-static/img/sort_asc.png') no-repeat center right; }
-table.table thead .sorting_desc { background: url('all-static/img/sort_desc.png') no-repeat center right; }
+table.table thead .sorting { background: url('../img/sort_both.png') no-repeat center right; }
+table.table thead .sorting_asc { background: url('../img/sort_asc.png') no-repeat center right; }
+table.table thead .sorting_desc { background: url('../img/sort_desc.png') no-repeat center right; }
-table.table thead .sorting_asc_disabled { background: url('all-static/img/sort_asc_disabled.png') no-repeat center right; }
-table.table thead .sorting_desc_disabled { background: url('all-static/img/sort_desc_disabled.png') no-repeat center right; }
+table.table thead .sorting_asc_disabled { background: url('../img/sort_asc_disabled.png') no-repeat center right; }
+table.table thead .sorting_desc_disabled { background: url('../img/sort_desc_disabled.png') no-repeat center right; }
table.dataTable th:active {
outline: none;