From b2f10764c965e166daa73c2a001891b43ff356b3 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Sun, 2 Aug 2015 13:28:19 +0200 Subject: [PATCH] css/module.less: allow form elements to grow --- public/css/module.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/css/module.less b/public/css/module.less index e663a858..a675e36e 100644 --- a/public/css/module.less +++ b/public/css/module.less @@ -22,6 +22,12 @@ input, textarea { padding-left: 0.5em; } +input[type=text], textarea, select { + max-width: 36em; + min-width: 20em; + width: 63%; +} + select:hover, input:hover, textarea:hover, select:focus, input:focus, textarea:focus { border: 1px solid #666; }