diff --git a/admin/themes/default/icon/remove_filter.png b/admin/themes/default/icon/remove_filter.png deleted file mode 100644 index c2fa7382f..000000000 Binary files a/admin/themes/default/icon/remove_filter.png and /dev/null differ diff --git a/admin/themes/default/icon/remove_filter_hover.png b/admin/themes/default/icon/remove_filter_hover.png deleted file mode 100644 index 1f9d97527..000000000 Binary files a/admin/themes/default/icon/remove_filter_hover.png and /dev/null differ diff --git a/admin/themes/default/js/batchManagerGlobal.js b/admin/themes/default/js/batchManagerGlobal.js index 3e48a74f0..c95ef598d 100644 --- a/admin/themes/default/js/batchManagerGlobal.js +++ b/admin/themes/default/js/batchManagerGlobal.js @@ -22,6 +22,8 @@ function filter_disable(filter) { $("#addFilter").children("option[value="+filter+"]").removeAttr("disabled"); } +$(".removeFilter").addClass("icon-cancel-circled"); + $(".removeFilter").click(function () { var filter = $(this).parent('li').attr("id"); filter_disable(filter); diff --git a/admin/themes/default/theme.css b/admin/themes/default/theme.css index 49c56868e..8559aa56a 100644 --- a/admin/themes/default/theme.css +++ b/admin/themes/default/theme.css @@ -1000,8 +1000,9 @@ LEGEND { #batchManagerGlobal .actionButtons {text-align:left;} #batchManagerGlobal #filterList {padding-left:5px;} #batchManagerGlobal #filterList li {margin-bottom:5px; list-style-type:none;} -#batchManagerGlobal a.removeFilter {background: url(icon/remove_filter.png) no-repeat top left;width:7px;height:7px;display:inline-block;} -#batchManagerGlobal a.removeFilter:hover {background: url(icon/remove_filter_hover.png);} +#batchManagerGlobal a.removeFilter {color:#666;} +#batchManagerGlobal a.removeFilter::before {margin-right:0;} +#batchManagerGlobal a.removeFilter:hover {color:red;} #batchManagerGlobal .removeFilter span {display:none} #batchManagerGlobal #applyFilterBlock {margin-top:20px;} #batchManagerGlobal .useFilterCheckbox {display:none;}