mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 01:10:49 +01:00
89505ac650
* Fix commit status popover and switch to svg icons * margin tweak * fix integration, use warning sign for error to match previous * remove fix from here, will be a new pr * use top/bottom positioning * vertically center * use no-entry over alert oction * add exclamation icon * fix test selector * more test fixes
14 lines
608 B
Handlebars
14 lines
608 B
Handlebars
<a class="ui link commit-statuses-trigger vm">{{template "repo/commit_status" .Status}}</a>
|
|
<div class="ui commit-statuses-popup commit-statuses hide">
|
|
<div class="ui relaxed list divided">
|
|
{{range .Statuses}}
|
|
<div class="ui item singular-status df">
|
|
{{template "repo/commit_status" .}}
|
|
<span class="ui ml-3 f1">{{.Context}} <span class="text grey">{{.Description}}</span></span>
|
|
{{if .TargetURL}}
|
|
<a class="ml-3" href="{{.TargetURL}}" target="_blank" rel="noopener noreferrer">{{$.root.locale.Tr "repo.pulls.status_checks_details"}}</a>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|