From acde12a8a276cd3c0bb6186571b5da2f1f98757c Mon Sep 17 00:00:00 2001 From: HesterG Date: Sat, 20 May 2023 00:02:34 +0800 Subject: [PATCH] Fix max width and margin of comment box on conversation page (#24809) Fix regression from #23937 The changes should only be limited to `.conversation-holder .comment-code-cloud`, otherwise it will affect the `.comment-code-cloud` in conversation tab Before: Screen Shot 2023-05-19 at 18 22 25 After: Screen Shot 2023-05-19 at 18 35 01 --------- Co-authored-by: Giteabot --- web_src/css/review.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web_src/css/review.css b/web_src/css/review.css index 14668eb245..d57fcc85df 100644 --- a/web_src/css/review.css +++ b/web_src/css/review.css @@ -61,6 +61,9 @@ .comment-code-cloud { padding: 0.5rem 1rem !important; position: relative; +} + +.conversation-holder .comment-code-cloud { max-width: 820px; }