Well, basicly i'm trying to make this button
<a href="#" class="ui-btn ui-icon-check ui-btn-icon-right ui-btn-corner-all ui-shadow"> button </a>
Look like this: http://jsfiddle.net/waYg8/2/
But I'm missing a few classes, especially the glare-cut-out looking style. Any ideas?
UPDATE: Trying to add own class, but looks 2d ugly... http://jsfiddle.net/2qt9w/
.btn_round
{
-moz-box-shadow: 0px 1px 0 rgba(255,255,255,0.3);
-webkit-box-shadow: 0px 1px 0 rgba(255,255,255,0.3);
box-shadow: 0px 1px 0 rgba(255,255,255,0.3);
-moz-border-radius: 1.5em !important;
-webkit-border-radius: 1.5em !important;
border-radius: 1.5em !important;
}