From 62522b3856ac3fc544486bc1ef7ca0b73c4e6da6 Mon Sep 17 00:00:00 2001 From: wirelyre Date: Thu, 8 Jun 2023 20:51:11 -0400 Subject: [PATCH] Change textareas to resize vertically only This selector matches these elements directly: - "View Markdown" source on topics and comments - Filtered topic tags And these elements indirectly via `{{ markdown_textarea() }}`: - New topics and comments - Edits of topics and comments - Group wiki editing - Direct messages In all cases the width is already constrained by CSS. No other layout changes are necessary. --- tildes/scss/modules/_form.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tildes/scss/modules/_form.scss b/tildes/scss/modules/_form.scss index a247d42..e409b37 100644 --- a/tildes/scss/modules/_form.scss +++ b/tildes/scss/modules/_form.scss @@ -94,7 +94,7 @@ select.form-select:not([multiple]):not([size]) { textarea.form-input { height: 8rem; line-height: 1.5; - max-width: none; + resize: vertical; transition: none; }