From: Jef van Schendel Date: Sun, 1 Jan 2012 17:11:39 +0000 (+0100) Subject: Disable horizontal resize for text areas. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7fc782bb6d63cef234ff1a4dad29175afb6d8be5;p=mediagoblin.git Disable horizontal resize for text areas. --- diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css index 382ba88a..98b77967 100644 --- a/mediagoblin/static/css/base.css +++ b/mediagoblin/static/css/base.css @@ -193,6 +193,7 @@ text-align: center; } textarea#comment_content { + resize: vertical; width: 634px; height: 90px; border: none; @@ -256,6 +257,10 @@ textarea#comment_content { width: 20px; } +textarea#description { + resize: vertical; +} + /* comments */ .comment_author { @@ -413,4 +418,4 @@ table.media_panel th { .ascii-wrapper pre { font-family: Inconsolata, monospace; line-height: 1em; -} \ No newline at end of file +}