File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
{{if eq .State "pending"}}
2
- <i class=" commit-status circle icon yellow"></i>
2
+ {{svg "octicon-dot-fill" 18 " commit-status icon text yellow"}}
3
3
{{end}}
4
4
{{if eq .State "success"}}
5
- <i class=" commit-status check icon green"></i>
5
+ {{svg "octicon-check" 18 " commit-status icon text green"}}
6
6
{{end}}
7
7
{{if eq .State "error"}}
8
- <i class=" commit-status warning icon red"></i>
8
+ {{svg "octicon-x" 18 " commit-status icon text red"}}
9
9
{{end}}
10
10
{{if eq .State "failure"}}
11
- <i class=" commit-status remove icon red"></i>
11
+ {{svg "octicon-x" 18 " commit-status icon text red"}}
12
12
{{end}}
13
13
{{if eq .State "warning"}}
14
- <i class=" commit-status warning sign icon yellow"></i>
14
+ {{svg "octicon-alert" 18 " commit-status icon text yellow"}}
15
15
{{end}}
Original file line number Diff line number Diff line change 4
4
{{range .Statuses}}
5
5
<div class="ui item singular-status df">
6
6
<span>{{template "repo/commit_status" .}}</span>
7
- <span class="ui f1">{{.Context}} <span class="text grey">{{.Description}}</span></span>
7
+ <span class="ui ml-2 f1">{{.Context}} <span class="text grey">{{.Description}}</span></span>
8
8
{{if .TargetURL}}
9
- <div class="ui"><a href="{{.TargetURL}}" target="_blank" rel="noopener noreferrer">{{$.root.locale.Tr "repo.pulls.status_checks_details"}}</a></div >
9
+ <a class="ml-3" href="{{.TargetURL}}" target="_blank" rel="noopener noreferrer">{{$.root.locale.Tr "repo.pulls.status_checks_details"}}</a>
10
10
{{end}}
11
11
</div>
12
12
{{end}}
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export function initCommitStatuses() {
62
62
63
63
createTippy ( this , {
64
64
trigger : 'click' ,
65
- content : this . nextSibling ,
65
+ content : this . nextElementSibling ,
66
66
placement : positionRight ? 'right' : 'left' ,
67
67
interactive : true ,
68
68
} ) ;
You can’t perform that action at this time.
0 commit comments