Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery Mobile icons white instead black on Android

I'm having a problem with default jQuery Mobile icons. On Android device (any browser, checked on default Browser, FireFox and Chrome) the icons are white but should be black. On other devices (iPhone, Windows Phone, desktop computer) the icons are black as they should be. I'm using latest stable jQuery Mobile 1.2.0. Let me know if anyone run to such problem.

like image 840
Paul B. Avatar asked Oct 11 '12 19:10

Paul B.


1 Answers

I had same problem. I used Theme roller - http://jquerymobile.com/themeroller

There is probably small bug when CSS file is generated. On line 789 is:

background-image: url(images/icons-36-white.png);

but should be:

background-image: url(images/icons-36-black.png);
like image 84
ondromil Avatar answered Oct 20 '22 19:10

ondromil