site.css:
a:link, a:visited, a:hover, a:active
{
color: #0033CC;
text-decoration: none;
}
in page:
<a href="/foo/boo">test link</a>
jQuery:
$('a').button();
jQuery nicely creates a button for the 'test link' but some text colors on button's different states are the ones defined in site.css, not jQuery theme's.
So the point here is to provide some default look for all the links on the page without affecting jQuery's theming. What am I doing wrong?