-
22 May 2012 7:26 AM #1
Unanswered: Android Password form field focus state background CSS issue
Unanswered: Android Password form field focus state background CSS issue
The focus state of password shows a white background . I tried to override css but still same effect.
But no issue with Text fields. It is strange issue
I did set the inputCls too , this works fine for Text field but Password field shows that white background when focused.
Any help ?
-
24 May 2012 4:31 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
- Answers
- 3101
You should inspect the input element to see if the CSS was applied first.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
24 May 2012 5:01 AM #3
Many thanks for your reply .
The CSS override perfectly work with iPhone , but not with Android. And I couldn't find in inspecter where this white background comes from
-
24 May 2012 5:03 AM #4Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
- Answers
- 3101
Ok, so it works on iOS then that would tell me it's a browser behavior bug.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
24 May 2012 5:22 AM #5
Thanks again fro your reply .
So if it is a "bug", then I assume there is no work around .
Strange situation is ,it works fine when use Text but when change to Password this issue occurs
-
9 Oct 2012 6:40 AM #6
Add to your css:
input:focus {
-webkit-user-modify: read-write-plaintext-only;
}


Reply With Quote