From b18f79aefe603a563ceab76310ef66395d96eba8 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Sun, 27 Jul 2025 21:09:42 +0200 Subject: [PATCH] Add override for maximum height of textareas in new issues --- templates/custom/header.tmpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/custom/header.tmpl b/templates/custom/header.tmpl index 70ff301..0d7d750 100644 --- a/templates/custom/header.tmpl +++ b/templates/custom/header.tmpl @@ -206,6 +206,9 @@ --min-height-textarea: 300px; } + form[action="/blender/blender/issues/new"] .combo-markdown-editor textarea.markdown-text-editor { + max-height: calc(100vh - 132px) !important; + }