あなたがここで何を望んでいたかを正確に見なくても、私の試みは次のとおりです。
私は他の回答とコメントからつなぎ合わせました:
CSS:
.button_style {
width : 40px !important;
height : 40px !important;
background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(63,67,75)), color-stop(1, rgb(40,42,47)) );
background: -moz-linear-gradient( center bottom, rgb(63,67,75) 0%, rgb(40,42,47) 100% ) !important;
padding: -3px;
-webkit-border-radius: 9px !important;
}
HTML:
<div>
<a href="#" data-role="button" data-theme="a" class="button_style" onClick="check()">Test Button</a>
<a href="#" data-role="button" data-theme="b" class="button_style" onClick="check()">Test Button</a>
<a href="#" data-role="button" data-theme="c" class="button_style" onClick="check()">Test Button</a>
<a href="#" data-role="button" data-theme="d" class="button_style" onClick="check()">Test Button</a>
<a href="#" data-role="button" data-theme="e" class="button_style" onClick="check()">Test Button</a>
<a href="#" data-role="button" data-theme="a" onClick="check()">Test Button</a>
<a href="#" data-role="button" data-theme="b" onClick="check()">Test Button</a>
<a href="#" data-role="button" data-theme="c" onClick="check()">Test Button</a>
<a href="#" data-role="button" data-theme="d" onClick="check()">Test Button</a>
<a href="#" data-role="button" data-theme="e" onClick="check()">Test Button</a>
</div>
私の考えでは、テーマ ローラーでこれを行うことができますか?
また、いくつかのボタン オプションを試すことができます。