1
. IE 7 ISSUE with Matrix transform on MINIFY
The problem occurs when minified. and disregards the rest of the styling in that stylesheet.here is the code in Less..
.rotate_second_line()
{
filter: ~"progid:DXImageTransform.Microsoft.Matrix(M11=0.9998476951563913, M12=-0.01745240643728445, M21=0.01745240643728445, M22=0.9998476951563913, SizingMethod='auto expand')";
}Now when it minifies... it strips out all of the spaces...
filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.9998476951563913,M12=-0.01745240643728445,M21=0.01745240643728445,M22=0.9998476951563913,SizingMethod='auto
expand')This is what fixed the problem (a space between
M11=0.9998476951563913, AND M12=-0.01745240643728445)
filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.9998476951563913, M12=-0.01745240643728445,M21=0.01745240643728445,M22=0.9998476951563913,SizingMethod='auto expand')Ive searched around this forum but ive had no luck... i already know about the escaping ~"" but it seems to still go in and change my CSS
Any ideas ????
Thanks in advance
Charles Walter
cjwa...@bca-group.comBCA Europe
www.bca-group.com