I've been thinking about doing this:
<button class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only">Blah</button>
Is there a way you can define a single class in CSS that comprises all these classes and then define the button to have the single class?
Like:
.myclass {ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only}
<button class="myclass">Blah</button>
?