Modify Minified CSS by Calling the Function Hook
You can write your own function that will modify the content of minified or combined css sources before saving.
add_filter('wpfc_css_content', "your_function", 10, 1);
function your_function($content){
//you can run whatever you want
return $content
}