Browse Source

Better styling for code review comment form (#11413)

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
for-closed-social
Cirno the Strongest 4 years ago
committed by GitHub
parent
commit
c483419184
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 5 deletions
  1. +1
    -2
      templates/repo/diff/section_unified.tmpl
  2. +1
    -1
      web_src/js/index.js
  3. +6
    -2
      web_src/less/_review.less

+ 1
- 2
templates/repo/diff/section_unified.tmpl View File

@ -28,8 +28,7 @@
{{$isNotPending := (not (eq (index $line.Comments 0).Review.Type 0))}} {{$isNotPending := (not (eq (index $line.Comments 0).Review.Type 0))}}
<tr> <tr>
<td colspan="2" class="lines-num"></td> <td colspan="2" class="lines-num"></td>
<td class="lines-type-marker"></td>
<td class="add-comment-left add-comment-right">
<td class="add-comment-left add-comment-right" colspan="2">
{{if $resolved}} {{if $resolved}}
<div class = "ui attached header"> <div class = "ui attached header">
<span class="ui grey text left"><b>{{$resolveDoer.Name}}</b> {{$.root.i18n.Tr "repo.issues.review.resolved_by"}}</span> <span class="ui grey text left"><b>{{$resolveDoer.Name}}</b> {{$.root.i18n.Tr "repo.issues.review.resolved_by"}}</span>

+ 1
- 1
web_src/js/index.js View File

@ -1242,7 +1242,7 @@ function initPullRequestReview() {
if (!ntr.hasClass('add-comment')) { if (!ntr.hasClass('add-comment')) {
ntr = $(`<tr class="add-comment">${ ntr = $(`<tr class="add-comment">${
isSplit ? '<td class="lines-num"></td><td class="lines-type-marker"></td><td class="add-comment-left"></td><td class="lines-num"></td><td class="lines-type-marker"></td><td class="add-comment-right"></td>' : isSplit ? '<td class="lines-num"></td><td class="lines-type-marker"></td><td class="add-comment-left"></td><td class="lines-num"></td><td class="lines-type-marker"></td><td class="add-comment-right"></td>' :
'<td class="lines-num"></td><td class="lines-num"></td><td class="lines-type-marker"></td><td class="add-comment-left add-comment-right"></td>'
'<td class="lines-num"></td><td class="lines-num"></td><td class="add-comment-left add-comment-right" colspan="2"></td>'
}</tr>`); }</tr>`);
tr.after(ntr); tr.after(ntr);
} }

+ 6
- 2
web_src/less/_review.less View File

@ -74,9 +74,13 @@
margin-top: 0; margin-top: 0;
} }
.comment-list {
padding-bottom: 10px;
}
.footer { .footer {
border-top: 1px solid #f1f1f1; border-top: 1px solid #f1f1f1;
margin-top: 10px;
padding: 10px 0 10px 0;
.markdown-info { .markdown-info {
display: inline-block; display: inline-block;
@ -101,7 +105,7 @@
} }
form.comment-form-reply { form.comment-form-reply {
margin: 0 0 0 4em;
margin: 0 0 0 1em;
} }
} }

Loading…
Cancel
Save