Disable horizontal resize for text areas.

This commit is contained in:
Jef van Schendel 2012-01-01 18:11:39 +01:00
parent 4601c30c2e
commit 7fc782bb6d

View File

@ -193,6 +193,7 @@ text-align: center;
} }
textarea#comment_content { textarea#comment_content {
resize: vertical;
width: 634px; width: 634px;
height: 90px; height: 90px;
border: none; border: none;
@ -256,6 +257,10 @@ textarea#comment_content {
width: 20px; width: 20px;
} }
textarea#description {
resize: vertical;
}
/* comments */ /* comments */
.comment_author { .comment_author {
@ -413,4 +418,4 @@ table.media_panel th {
.ascii-wrapper pre { .ascii-wrapper pre {
font-family: Inconsolata, monospace; font-family: Inconsolata, monospace;
line-height: 1em; line-height: 1em;
} }