changeset 7022:4c5073955784

less: textareas should be at least 100px high and 400px wide Smaller textareas look odd.
author domruf <dominikruf@gmail.com>
date Sun, 29 Oct 2017 12:16:09 +0100
parents 900c99095c62
children 311e881d1a56
files kallithea/public/css/style.css kallithea/public/less/style.less
diffstat 2 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;
 }
--- 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;
 }