Netbeans highlights presumed errors deep down in some libraries attached. Skimming the code, there are rules that - I think - have a simple to correct typo. For instance in
...\sites\all\modules\contrib\quicktabs\quicktabs_tabstyles\tabstyles\zen\zen.css
this rule
*html ul.quicktabs-tabs.quicktabs-style-zen li{
margin-bottom:-5px;
}
can be 'corrected' inserting a space after the *
, thus becoming
* html ul.quicktabs-tabs.quicktabs-style-zen li{
margin-bottom:-5px;
}
and the errors have gone.
Am I breaking something doing so, specifically WRT Windows Explorer 6, that I cannot test?