refresh-sf
refresh-sf copied to clipboard
css not clean transforms
in CSS Compressor when you have something like this:
transform: translate(50%,50%);
or
transform: scale(2,2);
this tools should changed to this:
transform:translate(50%);
or
transform:scale(2);
but it is not, and refresh-sf not change this
when you have transition translate or scale or else, when passed two parameter is same value, should be removed one of them,
please fix this issue