From 997deecbfa77fe00d8260da2921073a0565dc735 Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Sat, 5 Mar 2022 04:57:26 +0800 Subject: Fix the editor height in review box (#19003) Fix the height problem in https://github.com/go-gitea/gitea/pull/18862#issuecomment-1059329539 I have tested this fix. # Screenshots ### Min-height image ### Max-height image --- web_src/less/_review.less | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'web_src/less') diff --git a/web_src/less/_review.less b/web_src/less/_review.less index 1070ad7dde..ac9f57cfbe 100644 --- a/web_src/less/_review.less +++ b/web_src/less/_review.less @@ -197,6 +197,13 @@ a.blob-excerpt:hover { color: #fff; } +// See the comment of createCommentEasyMDE() for the review editor +// EasyMDE's options can not handle minHeight & maxHeight together correctly, we have to set minHeight in JS code +#review-box .CodeMirror-scroll { + min-height: 80px; + max-height: calc(100vh - 360px); +} + @media @mediaSm { #review-box > .menu { > .ui.segment { -- cgit v1.2.3