Commit a767a967 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:lipstick: fix(css): make number fields thinner

Input fields of type number were too wide
Now they are thinner, but can still store up to 6 digits

closes #5695
Showing with 4 additions and 0 deletions
+4 -0
......@@ -6,6 +6,10 @@ input[type=text], input[type=password], select {
padding: 2px;
}
input[type=number] {
width: 80px;
}
input[disabled] {
color: #888;
background-color: #ddd;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment