Changes input fields to correct HTML5 types

This commit is contained in:
leosw
2021-05-28 21:11:07 +02:00
parent 072ef1d43e
commit 59303dc737
6 changed files with 16 additions and 8 deletions

View File

@@ -74,10 +74,18 @@ form.form h1 {
margin-right: 0 !important;
}
.flex_line input[type=text] {
.flex_line input[type=number], .flex_line input[type=text] {
flex: 1;
margin: 10px 5px 0 5px;
}
.noarrow::-webkit-inner-spin-button,
.noarrow::-webkit-outer-spin-button,
.noarrow {
-webkit-appearance: none;
-moz-appearance: textfield;
appearance: textfield;
margin: 0;
}
form.form input[type=submit] {
width: auto;