From 7422167935421536a64ead2f7ab7bc984ee88daa Mon Sep 17 00:00:00 2001 From: Lightforger Date: Thu, 21 Mar 2013 21:27:38 +0100 Subject: [PATCH 1/2] textarea 100% -> 70%, closes #1023 --- app/assets/stylesheets/common/simple_form.css.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/common/simple_form.css.scss b/app/assets/stylesheets/common/simple_form.css.scss index 6fe88bd8e..f88843afd 100644 --- a/app/assets/stylesheets/common/simple_form.css.scss +++ b/app/assets/stylesheets/common/simple_form.css.scss @@ -17,7 +17,7 @@ form.simple_form { } textarea { - width: 100%; + width: 70%; font-size: 1.2em; } From a4262a898d6adb72c2bb9872c75bccaeaa27b8f5 Mon Sep 17 00:00:00 2001 From: Lightforger Date: Thu, 21 Mar 2013 21:29:29 +0100 Subject: [PATCH 2/2] textarea 100% -> 70% Any reason this is the only textarea on the site that is not in a div.input ? --- app/assets/stylesheets/specific/posts.css.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/specific/posts.css.scss b/app/assets/stylesheets/specific/posts.css.scss index cd21c83e1..2cec1df78 100644 --- a/app/assets/stylesheets/specific/posts.css.scss +++ b/app/assets/stylesheets/specific/posts.css.scss @@ -275,7 +275,7 @@ div#c-posts { div#quick-edit-div { textarea { - width: 100%; + width: 70%; height: 4em; display: block; }