Like this question (and answer) suggest, I currently remove a few ExtJs "injected" css classes by including this in my Ext.application block:
Ext.application({
launch : function() {
...
Ext.getBody().removeCls('x-nbr');
...
}
});
ExtJs adds the 'x-nbr' class to the body tag when Internet Explorer 8 is used (this overrides lots of CSS that ruins my page).
But what other classes does it add? How how do I remove ALL the styles that ExtJs adds when IE renders my page?
EDIT
I have found a duplicate question here, but the (at the time of this writing) 2 answers provided are insufficient. I cannot change the value of scopeResetCSS in ext-all.js as that file is shared across multiple applications. I need a fix for my application specifically.