Skip to content

Commit 44b0448

Browse files
Fixed bootstrap asset image path.
1 parent 7f79dbf commit 44b0448

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/assets/stylesheets/dataTables/jquery.dataTables.bootstrap.css.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ table.table thead .sorting_desc_disabled {
3535
*cursor: hand;
3636
}
3737

38-
table.table thead .sorting { background: url('../images/sort_both.png') no-repeat center right; }
39-
table.table thead .sorting_asc { background: url('../images/sort_asc.png') no-repeat center right; }
40-
table.table thead .sorting_desc { background: url('../images/sort_desc.png') no-repeat center right; }
38+
table.dataTable thead .sorting { background: image-url('dataTables/sort_both.png') no-repeat center right; }
39+
table.dataTable thead .sorting_asc { background: image-url('dataTables/sort_asc.png') no-repeat center right; }
40+
table.dataTable thead .sorting_desc { background: image-url('dataTables/sort_desc.png') no-repeat center right; }
4141

42-
table.table thead .sorting_asc_disabled { background: url('../images/sort_asc_disabled.png') no-repeat center right; }
43-
table.table thead .sorting_desc_disabled { background: url('../images/sort_desc_disabled.png') no-repeat center right; }
42+
table.dataTable thead .sorting_asc_disabled { background: image-url('dataTables/sort_asc_disabled.png') no-repeat center right; }
43+
table.dataTable thead .sorting_desc_disabled { background: image-url('dataTables/sort_desc_disabled.png') no-repeat center right; }
4444

4545
table.dataTable th:active {
4646
outline: none;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Jquery
22
module Datatables
33
module Rails
4-
VERSION = "1.12.1"
4+
VERSION = "1.12.2"
55
end
66
end
77
end

0 commit comments

Comments
 (0)