diff options
author | Mike L <cl.jeremy@qq.com> | 2021-03-13 14:37:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-13 15:37:09 +0200 |
commit | e256a62257df85c9fdb53426cc5b28bf422d91af (patch) | |
tree | 54a8f4b31e1512249ca3865138f0194725e5aec1 | |
parent | cc6470425c720a05abc55b21f65e3d8179618900 (diff) | |
download | gitea-e256a62257df85c9fdb53426cc5b28bf422d91af.tar.gz gitea-e256a62257df85c9fdb53426cc5b28bf422d91af.zip |
Fix spacing of issue/pulls list review status icons (#14985)
-rw-r--r-- | templates/shared/issuelist.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/shared/issuelist.tmpl b/templates/shared/issuelist.tmpl index dcaa2474fb..1b4f21b400 100644 --- a/templates/shared/issuelist.tmpl +++ b/templates/shared/issuelist.tmpl @@ -92,7 +92,7 @@ {{$waitingOfficial := call $approvalCounts .ID "waiting"}} {{if gt $approveOfficial 0}} <span class="approvals df ac"> - {{svg "octicon-check" 14 "mr-2"}} + {{svg "octicon-check" 14 "mr-1"}} {{$.i18n.Tr (TrN $.i18n.Lang $approveOfficial "repo.pulls.approve_count_1" "repo.pulls.approve_count_n") $approveOfficial}} </span> {{end}} @@ -104,7 +104,7 @@ {{end}} {{if gt $waitingOfficial 0}} <span class="waiting df ac"> - {{svg "octicon-eye" 14}} + {{svg "octicon-eye" 14 "mr-2"}} {{$.i18n.Tr (TrN $.i18n.Lang $waitingOfficial "repo.pulls.waiting_count_1" "repo.pulls.waiting_count_n") $waitingOfficial}} </span> {{end}} |