Merge pull request #681 from yrchen/Fix-Plugin-dataTables

Fix wrong path for static images
pull/667/merge
Abdullah Almsaeed 2015-09-15 17:58:19 -04:00
commit 6cd614c582
2 changed files with 6 additions and 6 deletions

View File

@ -47,19 +47,19 @@ table.dataTable thead .sorting_desc_disabled {
background-position: center right;
}
table.dataTable thead .sorting {
background-image: url("../images/sort_both.png");
background-image: url("images/sort_both.png");
}
table.dataTable thead .sorting_asc {
background-image: url("../images/sort_asc.png");
background-image: url("images/sort_asc.png");
}
table.dataTable thead .sorting_desc {
background-image: url("../images/sort_desc.png");
background-image: url("images/sort_desc.png");
}
table.dataTable thead .sorting_asc_disabled {
background-image: url("../images/sort_asc_disabled.png");
background-image: url("images/sort_asc_disabled.png");
}
table.dataTable thead .sorting_desc_disabled {
background-image: url("../images/sort_desc_disabled.png");
background-image: url("images/sort_desc_disabled.png");
}
table.dataTable tbody tr {
background-color: #ffffff;

File diff suppressed because one or more lines are too long