Provide visual feedback to the user when login fields were autofilled
Categories
(Toolkit :: Password Manager, defect, P2)
Tracking
()
Tracking | Status | |
---|---|---|
firefox67 | --- | fixed |
People
(Reporter: eoger, Assigned: prathiksha)
References
(Depends on 3 open bugs, Blocks 1 open bug)
Details
(Whiteboard: [passwords:fill-ui] )
Attachments
(3 files)
Comment 1•9 years ago
|
||
Comment 2•9 years ago
|
||
Comment 4•9 years ago
|
||
Comment 5•9 years ago
|
||
Comment 6•9 years ago
|
||
Comment 7•9 years ago
|
||
Comment 8•9 years ago
|
||
Reporter | ||
Updated•9 years ago
|
Comment 9•9 years ago
|
||
Comment 10•9 years ago
|
||
Comment 11•9 years ago
|
||
Comment 12•6 years ago
|
||
We now have the APIs for this since we implemented them for Form Autofill.
Comment 13•6 years ago
|
||
We're going to use the existing visual treatment that Form Autofill uses as well.
See code at https://searchfox.org/mozilla-central/search?q=_changeFieldState&case=false®exp=false&path= and FIELD_STATES.AUTO_FILLED.
We would need event listeners to clear the highlight when it's changed like Form Autofill does.
Comment 14•6 years ago
|
||
We should change the colour with setUserInput: https://searchfox.org/mozilla-central/rev/465dbfe030dfec7756b9b523029e90d48dd5ecce/toolkit/components/passwordmgr/LoginManagerContent.jsm#1236,1242
and add an input
listener to clear the colour when edited (like form autofill does).
Assignee | ||
Comment 15•6 years ago
|
||
Provide visual feedback to the user when login fields are autofilled.
Updated•6 years ago
|
Comment 17•6 years ago
|
||
Comment 18•6 years ago
|
||
bugherder |
Comment 19•6 years ago
|
||
How can users re-style or disable this feature if they don't like it? A rule for the yellow highlighting doesn't show up in the element inspector at all as far as I can see. Is it really hard-coded?
Comment 20•6 years ago
|
||
I tried setting background-color:white !important in the element inspector and it had no effect. I found a post advising that setting signon.showAutoCompleteFooter to false would disable this, but it doesn't. I find it really annoying and would like to be able to turn it off. There should be a config setting to allow users to turn it off if they wish.
Comment 21•6 years ago
|
||
This new modification does not make sense. It ruins the site that I am developing. You should give the option to disable the yellow background color. Could you do a rollback for this? Thank you!
Comment 22•6 years ago
|
||
This feature has landed and this bug is resolved/fixed, so not a good place for ongoing discussion. If you encounter problems with the autofill highlight/background field color please file a new bug under the Toolkit:Password Manager component with as much detail as you can manage:, including the nature of the problem, when/where it occurs, what you would expect vs. actual behavior.
Comment 23•6 years ago
|
||
I found a solution with css:
input { filter: none !important; }
That is all!!
Description
•