I'm using Jquery Mobile. When I create an input text for example select box, it 
wraps it with some HTML. one of the rows is:
<span class="ui-icon ui-icon-arrow-d ui-icon-shadow"></span>
In our project we have a lot of overriding on those classes, especially ui-icon:
.ui-icon {
        background-size: 85px 700px !important;
}
so I get a page with those parameters, all my page get messy because of that.
Changing the style in all projects is a lot of work, how can I force my page to ignore this style (background-size) for that current class is ui-icon ?
 
     
     
    