mysociety / writetothem

Write to your MP, MEP, & other elected representatives.
https://www.writetothem.com
Other
54 stars 11 forks source link

User issue: capital/lower case defaults #269

Closed MyfanwyNixon closed 9 years ago

MyfanwyNixon commented 9 years ago

in the data form, in the mobile version I have just used, there is inconsistency in default case for letters: Email address defaults to initial capital - which is weird and led to me having a discrepancy. Postcode does not default to All Capitals, which is a bore.

Don't know if there's anything we can do about that?

dracos commented 9 years ago

Doesn't matter what case they use for postcode; email is dupe of #256.

zarino commented 9 years ago

I think we can make the postcode input look like it's all in capitals by giving it:

input#pc {
    text-transform: uppercase;
}

In reality, the contents of the text input will still be lowercase, but they'll look to the user like they're uppercase.

dracos commented 9 years ago

Thanks for the idea, @zarino!