Reputation: 404
Sign Up
or Login
password
input. In Firefox, click in any input.The results should be that the input appears to get focus, but does not allow the user to enter characters.
z-index
settings (making sure that the parent and child elements had a position
other than static
.password
do not work. Only text
does.I really feel like it's an issue with the z-index
and the .list
elements underneath the .drop-box
, but am also puzzled why (in Chrome) an input with type text would work but password wouldn't. I have been trying to see what might have changed between Chrome version 33 and 34 so I can maybe pinpoint the issue, but have had no luck as of yet.
Any ideas?
Upvotes: 2
Views: 9025
Reputation: 324620
You have box-sizing: border-box
and padding-top + padding-bottom = height
. This means the content height is zero, so you cannot see anything you type (but attempting to type correctly updates the validation).
You should remove the box-sizing
on those elements, or remove the padding
.
Upvotes: 5