Pull Requests: add color to approved/reject icon in pull requests list

Makes it easier to scan the list of pull requests and see the status.
This commit is contained in:
Brecht Van Lommel 2023-01-18 05:13:04 +01:00 committed by techknowlogick
parent b8eb282327
commit 86c6b0de06
1 changed files with 2 additions and 2 deletions

View File

@ -118,13 +118,13 @@
{{$rejectOfficial := call $approvalCounts .ID "reject"}}
{{$waitingOfficial := call $approvalCounts .ID "waiting"}}
{{if gt $approveOfficial 0}}
<span class="approvals df ac">
<span class="approvals df ac green">
{{svg "octicon-check" 14 "mr-1"}}
{{$.locale.TrN $approveOfficial "repo.pulls.approve_count_1" "repo.pulls.approve_count_n" $approveOfficial}}
</span>
{{end}}
{{if gt $rejectOfficial 0}}
<span class="rejects df ac">
<span class="rejects df ac red">
{{svg "octicon-diff" 14 "mr-2"}}
{{$.locale.TrN $rejectOfficial "repo.pulls.reject_count_1" "repo.pulls.reject_count_n" $rejectOfficial}}
</span>