I'm using two jquery ui widgets, autocomplete and tabs.
They each have their own stylesheets in jquery.ui.autocomplete.css and jquery.ui.tabs.css respectively, however they share a lot of styles in jquery.ui.theme.css. When I make a change to the styles in jquery.ui.theme.css it affects both the autocomplete and the tabs. How can I customize the styles different for autocomplete and tabs?
One thing I would like to change is the rounded edges on the background hover effect for the autocomplete. The proper .css change to this is
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 0px; -webkit-border-top-left-radius: 0px; -khtml-border-top-left-radius: 0px; border-top-left-radius: 0px; }
However I would like the tabs to be rounded. So the change I would make is change the radius from 0px to 5px.