File tree Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 33
33
{{range $commit.Refs}}
34
34
{{$refGroup := .RefGroup}}
35
35
{{if eq $refGroup "pull"}}
36
- {{if $.HidePRRefs}}
37
- {{if (containGeneric $.SelectedBranches .Name) }}
38
- <a class="ui labelled icon button basic tiny" href="{{$.RepoLink}}/issues/{{.ShortName|PathEscape}}">
39
- {{svg "octicon-git-pull-request" 16 "mr-2"}}#{{.ShortName}}
40
- </a>
41
- {{end}}
42
- {{else}}
43
- <a class="ui labelled icon button basic tiny" href="{{$.RepoLink}}/issues/{{.ShortName|PathEscape}}">
36
+ {{if or (not $.HidePRRefs) (containGeneric $.SelectedBranches .Name)}}
37
+ <a class="ui labelled icon button basic tiny" href="{{$.RepoLink}}/pulls/{{.ShortName|PathEscape}}">
44
38
{{svg "octicon-git-pull-request" 16 "mr-2"}}#{{.ShortName}}
45
39
</a>
46
40
{{end}}
Original file line number Diff line number Diff line change 2
2
{{ $approvalCounts := .ApprovalCounts}}
3
3
{{range .Issues}}
4
4
<li class="item df py-3">
5
- <div class="issue-item-left df py-1 ">
5
+ <div class="issue-item-left df">
6
6
{{if $.CanWriteIssuesOrPulls}}
7
7
<div class="ui checkbox issue-checkbox">
8
8
<input type="checkbox" data-issue-id={{.ID}}></input>
Original file line number Diff line number Diff line change 13
13
14
14
.issue-item-icon svg {
15
15
margin-right : .75rem ;
16
+ margin-top : 1px ;
16
17
}
17
18
18
19
.issue-item-icons-right > * + * {
29
30
font-size : 16px ;
30
31
min-width : 0 ;
31
32
font-weight : 600 ;
33
+ }
32
34
33
- > * {
34
- vertical-align : middle ;
35
- }
35
+ .labels-list {
36
+ position : relative ;
37
+ top : -1.5 px ;
36
38
}
37
39
38
40
.issue-item-bottom-row {
You can’t perform that action at this time.
0 commit comments