diff options
author | silverwind <me@silverwind.io> | 2024-02-10 19:18:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-10 20:18:46 +0200 |
commit | 9063fa096386362f9ae602fdf8a39ae8c972b8e0 (patch) | |
tree | 5c4380bc4752050dc26c21b8b3cf5dfffcb11a53 | |
parent | 5f5b5ba6e3e50ba5385e6cbf5957d4b73805769b (diff) | |
download | gitea-9063fa096386362f9ae602fdf8a39ae8c972b8e0.tar.gz gitea-9063fa096386362f9ae602fdf8a39ae8c972b8e0.zip |
Remove obsolete border-radius on comment content (#29128)
This border-radius is obsolete since we changed the comment rendering a
few months ago and it caused incorrect display on blockquotes.
Before:
<img width="160" alt="Screenshot 2024-02-10 at 18 42 48"
src="https://github.com/go-gitea/gitea/assets/115237/ccbf4660-acf9-4268-aad9-1ad49d317a67">
After:
<img width="135" alt="Screenshot 2024-02-10 at 18 42 40"
src="https://github.com/go-gitea/gitea/assets/115237/6f588e02-3b2a-49ee-b459-81d8068b2f4e">
-rw-r--r-- | web_src/css/repo.css | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/web_src/css/repo.css b/web_src/css/repo.css index 55c6ec4817..610c3fcb55 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -2289,10 +2289,6 @@ padding: 1em; } -.comment-body .markup { - border-radius: 0 0 var(--border-radius) var(--border-radius); /* don't render outside box */ -} - .edit-label.modal .form .column, .new-label.modal .form .column { padding-right: 0; |