# HG changeset patch # User domruf # Date 1509275769 -3600 # Node ID 4c50739557844a86be119ca5532c8455ac57ec07 # Parent 900c99095c625dc9b55e708901a1106a004de450 less: textareas should be at least 100px high and 400px wide Smaller textareas look odd. diff -r 900c99095c62 -r 4c5073955784 kallithea/public/css/style.css --- a/kallithea/public/css/style.css Sun Oct 29 11:21:34 2017 +0100 +++ b/kallithea/public/css/style.css Sun Oct 29 12:16:09 2017 +0100 @@ -119,6 +119,11 @@ table.changesets .comments { white-space: nowrap; } +/* textareas should be at least 100px high and 400px wide */ +textarea.form-control { + min-height: 100px; + min-width: 400px; +} .form-group > label { float: left; } diff -r 900c99095c62 -r 4c5073955784 kallithea/public/less/style.less --- a/kallithea/public/less/style.less Sun Oct 29 11:21:34 2017 +0100 +++ b/kallithea/public/less/style.less Sun Oct 29 12:16:09 2017 +0100 @@ -135,6 +135,12 @@ } } +/* textareas should be at least 100px high and 400px wide */ +textarea.form-control { + min-height: 100px; + min-width: 400px; +} + .form-group > label { float: left; }