Fix text fields so they don't look so dorky
Now using <input type="number" pattern="\d*" step="1"> so that the text field will pop up the numeric keyboard on both iOS and Android. However this makes the "size=<blah>" no longer function. So we set a fixed size for all <input type="number"> text fields using CSS. Kinda hackish, but it works.
This commit is contained in:
parent
c07d35921a
commit
84d80ef4db
2 changed files with 13 additions and 9 deletions
|
@ -21,3 +21,7 @@ strong {
|
|||
table {
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
input[type=number]{
|
||||
width: 80px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue