How to fix blackberry browser input in black out of focus?

I recently updated our mobile app to use JQM 1.1.1, and noticed a very big problem in Blackberry 6 browsers.

Screenshots tell a story better.

In the first image, you will see that the search text box is displayed correctly.

However, in the second image, you will see that when the input text box is focused, it makes a black text box

See my screenshots:

enter image description here

enter image description here

Has anyone seen this problem?

+5
source share
2 answers

I had the same problem and fixed it with css as follows:

input.ui-focus, textarea.ui-focus {
    outline: none;
    -webkit-box-shadow: none;
}
+3
source

Thanks for your reply. For my part, I had to install css for:

.ui-btn.ui-focus, .ui-input-text.ui-focus, ui-input-search.ui-focus

Hope this helps!

+1

All Articles