aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/less
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2022-03-05 04:57:26 +0800
committerGitHub <noreply@github.com>2022-03-04 20:57:26 +0000
commit997deecbfa77fe00d8260da2921073a0565dc735 (patch)
tree81ba7e651977f250797bbebb6f995a206333f673 /web_src/less
parent95c8d53d280307568a4637db1eb3ccf28c8dc0a9 (diff)
downloadgitea-997deecbfa77fe00d8260da2921073a0565dc735.tar.gz
gitea-997deecbfa77fe00d8260da2921073a0565dc735.zip
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 <img width="1138" alt="image" src="https://user-images.githubusercontent.com/2114189/156811831-93d4d31a-1b0a-4c4c-a7b4-fafc706133d6.png"> ### Max-height <img width="1126" alt="image" src="https://user-images.githubusercontent.com/2114189/156811889-10ae41de-c63b-45e7-9d89-21a1ed29e58b.png">
Diffstat (limited to 'web_src/less')
-rw-r--r--web_src/less/_review.less7
1 files changed, 7 insertions, 0 deletions
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 {