jQuery Mobile scaling icon in span -
i'm trying put standard jquery mobile icon inline span element, , scale icon:
<span ui-btn-icon-right ui-icon-refresh style="position:relative;background-size:75%;"/> the icon placed perfectly, background-size has no effect. !important not help.
the icon image applied :after pseudoelement. background css needs applied there:
<span class="ui-icon-refresh ui-btn-icon-notext inlineicon"></span> .inlineicon { display: inline-block; position: relative; vertical-align: middle; margin-right: 6px; } .inlineicon:after { background-size: 75% !important; }
Comments
Post a Comment