From d4de84eddc85a66612df307885c24b6a25a4454a Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 4 May 2018 18:46:16 +0200 Subject: [PATCH] css: allow textarea fields to grow horizontally fixes #299 --- public/css/module.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/css/module.less b/public/css/module.less index 5c36a9b8..590ef670 100644 --- a/public/css/module.less +++ b/public/css/module.less @@ -354,6 +354,10 @@ input[type=text], input[type=password], textarea, select { } } +textarea { + max-width: 100%; +} + select[multiple] { height: auto; }