{combine_css path=$SOCIALBUTT_PATH|@cat:"template/style.css"} {html_style}{literal} img.grayscale { filter: url("data:image/svg+xml;utf8,#grayscale"); /* Firefox 10+ */ filter: gray; /* IE6-9 */ -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */ } {/literal}{/html_style} {footer_script}{literal} jQuery("input.enable").change(function() { $parent = $(this).closest("table"); if (!$(this).is(":checked")) { $parent.find("thead label").attr("title", "{/literal}{'Enable'|@translate|escape:javascript}{literal}"); $parent.find("thead img").addClass('grayscale'); $parent.find("tbody").hide(); } else { $parent.find("thead label").attr("title", "{/literal}{'Disable'|@translate|escape:javascript}{literal}"); $parent.find("thead img").removeClass('grayscale'); $parent.find("tbody").show(); } }); {/literal}{/footer_script}