We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Now that input[type="tel"] fields are becoming more common, ideally they would be styled the same as similar fields (namely in height & padding).
input[type="tel"]
This can be achieved with adding a line to /grappelli_safe/static/grappelli/css/forms.css:
/grappelli_safe/static/grappelli/css/forms.css
/* Text inputs ................................................... */ input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], /* Add this line */ input[type="number"] { padding: 5px 3px 4px; height: 14px; }
The text was updated successfully, but these errors were encountered:
Thanks! Would you like to submit the change as a PR?
Sorry, something went wrong.
Style tel input fields the same as text/email/etc.
0339aee
stephenmcd#99
Successfully merging a pull request may close this issue.
Now that
input[type="tel"]
fields are becoming more common, ideally they would be styled the same as similar fields (namely in height & padding).This can be achieved with adding a line to
/grappelli_safe/static/grappelli/css/forms.css
:The text was updated successfully, but these errors were encountered: