I have a lot of newer CSS3 properties in my CSS file, and I'm afraid that the minification tool I'm using is missing a lot of these properties:
.big-blue-button:hover {
text-decoration: none;
background: #0994d2;
background: -moz-linear-gradient(#0994d2,#0db5e0);
background: -webkit-linear-gradient(#0994d2,#0db5e0);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0994d2',endColorstr='#0db5e0')";
}
--> with minification
.big-blue-button:hover {
text-decoration: none;
background: 0;
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0994d2',endColorstr='#0db5e0');
}
Does anyone know of a good minification script that works with all the newer CSS properties? Note that I need to do this minification from a script, so it must be executable (as opposed to a copy/paste option).