Disable horizontal resize for text areas.
authorJef van Schendel <mail@jefvanschendel.nl>
Sun, 1 Jan 2012 17:11:39 +0000 (18:11 +0100)
committerJef van Schendel <mail@jefvanschendel.nl>
Sun, 1 Jan 2012 17:11:39 +0000 (18:11 +0100)
mediagoblin/static/css/base.css

index 382ba88a34d0030127f7cc048fe6bf67cee1572a..98b779678e2b63208bf226455d7101509ef48217 100644 (file)
@@ -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
+}