How can I incorporate jQuery UI classes into my CSS file on a per-element basis, like this:
input {
ui-corner-all /* <- JQuery UI class */
}
Instead of adding the class to every input individually, like this:
<input name="myinput" type="text" class="ui-corner-all" value="" />