I have a CSS File that contains a rule like this:
.someElement {
filter:gray(enabled=true) alpha(opacity=50);
-ms-filter:"gray(enabled=true) alpha(opacity=50)"
}
This rule causes some issues and I would like to remove it. However, making changes to that CSS File is annoying to say the least, and the ideal situation would be to create a secondary CSS file that overrides/removes that rule.
I assume this isn’t possible? (without JavaScript or so)
Just add this to your new CSS file and make sure it gets loaded AFTER the original one.
Tested in IE9: http://jsfiddle.net/H7msL/1/