对于scss文件夹里的文件找到并填加上前缀,然后用koala自动生成css文件,替换css里的就行了
@each $type,$value in $filters {
	[data-filter="image-# {
	$type
}
"] {
	img {
	-webkit-filter:# {
	$type
}
# {
	$value
}
;-moz-filter:# {
	$type
}
# {
	$value
}
;-o-filter:# {
	$type
}
# {
	$value
}
;filter:# {
	$type
}
# {
	$value
}
;}}}
                                    
                                    回复