Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix a blackberry browser input from going black on focus?

I recently upgraded our mobile application to use JQM 1.1.1, and noticed a very big problem on Blackberry 6 browsers.

The screenshots tell the story best.

In the first image you'll see the search text box rendered correctly.

However in the second image you'll see that when the input text box is focused, it makes the textbox black

Please see my screenshots:

enter image description here

enter image description here

Has anyone seen this issue?

like image 289
BentOnCoding Avatar asked Oct 07 '22 23:10

BentOnCoding


2 Answers

I had the same problem, and fixed it with css like this:

input.ui-focus, textarea.ui-focus {
    outline: none;
    -webkit-box-shadow: none;
}
like image 112
Pablo Avatar answered Oct 12 '22 09:10

Pablo


Thank you for your answer. From my side, I had to set css to:

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

Hope it will help!

like image 33
user1629812 Avatar answered Oct 12 '22 10:10

user1629812