I'm developing a jquery mobile based website, and setting the css for retina displays. Jquery Mobile includes the 36px x 36px icon sizes, but uses the 18px version by default. I can't find what jQuery Mobile class or data attribute to add to the button to make it use the 36px size.
クラスui-icon-altは適切な背景画像を使用しているように見えますが、クラスをui-iconからui-icon-altに変更すると、ボタンがまったくレンダリングされません。私が取り組んでいる問題のボタンは次のとおりです。
<a href="#" data-icon="arrow-l" data-role="button" class="show-back ui-btn-left ui-btn ui-btn-corner-all ui-btn-icon-notext" data-iconpos="notext">
<span class="ui-btn-inner ">
<span class="ui-btn-text">Back</span>
<span class="ui-icon ui-icon-arrow-l"></span>
</span>
</a>