I have some trivial JavaScript to effect a style change:
sel = document.getElementById(\'my_id\'); sel.className = sel.className.replace(/item-[1-9]-selected
The following works. It only has to be set once in pure CSS. And it works more reliably than a JS function. Performance seems unaffected.
@-webkit-keyframes androidBugfix {from { padding: 0; } to { padding: 0; }} body { -webkit-animation: androidBugfix infinite 1s; }