diff options
author | Jef van Schendel <mail@jefvanschendel.nl> | 2012-01-01 18:11:39 +0100 |
---|---|---|
committer | Jef van Schendel <mail@jefvanschendel.nl> | 2012-01-01 18:11:39 +0100 |
commit | 7fc782bb6d63cef234ff1a4dad29175afb6d8be5 (patch) | |
tree | 56e7d94775a5c52361e6bad67d120c0ccac78d3b | |
parent | 4601c30c2e80734cf3a18472c2e29a7f920b9604 (diff) | |
download | mediagoblin-7fc782bb6d63cef234ff1a4dad29175afb6d8be5.tar.lz mediagoblin-7fc782bb6d63cef234ff1a4dad29175afb6d8be5.tar.xz mediagoblin-7fc782bb6d63cef234ff1a4dad29175afb6d8be5.zip |
Disable horizontal resize for text areas.
-rw-r--r-- | mediagoblin/static/css/base.css | 7 |
1 files changed, 6 insertions, 1 deletions
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 +} |