From a767a9676f13a5838610388f614debb248b8beda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be> Date: Tue, 26 Sep 2017 11:01:06 +0200 Subject: [PATCH] :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 --- html/themes/breezy/form.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/html/themes/breezy/form.css b/html/themes/breezy/form.css index 994288440..ffd1c8f2b 100644 --- a/html/themes/breezy/form.css +++ b/html/themes/breezy/form.css @@ -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; -- GitLab