File tree Expand file tree Collapse file tree 3 files changed +25
-8
lines changed Expand file tree Collapse file tree 3 files changed +25
-8
lines changed Original file line number Diff line number Diff line change 9
9
</h4>
10
10
11
11
<div class="ui attached table segment">
12
- <table class="ui very basic striped fixed table single line unstackable table">
12
+ <table class="ui very basic striped fixed single line unstackable table">
13
13
<tbody>
14
14
<tr>
15
15
<td class="six wide">
Original file line number Diff line number Diff line change 18
18
{{if .User.FullName}}
19
19
{{$userName = .User.FullName}}
20
20
{{end}}
21
- {{avatar .User 28 "mr-2 "}}<a href="{{AppSubUrl}}/{{.User.Name}}">{{$userName}}</a>
21
+ {{avatar .User 28 "mr-3 "}}<a href="{{AppSubUrl}}/{{.User.Name}}">{{$userName}}</a>
22
22
{{else}}
23
- {{avatarByEmail .Author.Email .Author.Name 28 "mr-2 "}}
23
+ {{avatarByEmail .Author.Email .Author.Name 28 "mr-3 "}}
24
24
{{$userName}}
25
25
{{end}}
26
26
</td>
65
65
{{ $commitLink:= printf "%s/%s/%s/commit/%s" AppSubUrl $.Username $.Reponame .ID }}
66
66
<span class="commit-summary {{if gt .ParentCount 1}} grey text{{end}}" title="{{.Summary}}">{{RenderCommitMessageLinkSubject .Message $.RepoLink $commitLink $.Repository.ComposeMetas}}</span>
67
67
{{end}}
68
- </span>
69
68
{{if IsMultilineCommitMessage .Message}}
70
69
<button class="basic compact mini ui icon button commit-button"><i class="ellipsis horizontal icon"></i></button>
71
70
{{end}}
75
74
{{if IsMultilineCommitMessage .Message}}
76
75
<pre class="commit-body" style="display: none;">{{RenderCommitBody .Message $.RepoLink $.Repository.ComposeMetas}}</pre>
77
76
{{end}}
77
+ </span>
78
78
</td>
79
79
<td class="text right age">{{TimeSince .Author.When $.Lang}}</td>
80
80
</tr>
Original file line number Diff line number Diff line change @@ -2714,10 +2714,27 @@ tbody.commit-list {
2714
2714
}
2715
2715
2716
2716
.message-wrapper {
2717
- overflow : hidden ;
2718
- text-overflow : ellipsis ;
2719
- max-width : calc (100% - 21px );
2720
- display : block ;
2717
+ display : flex ;
2718
+ flex-wrap : wrap ;
2719
+ align-items : center ;
2720
+
2721
+ .commit-summary {
2722
+ overflow : hidden ;
2723
+ text-overflow : ellipsis ;
2724
+ display : block ;
2725
+ flex : 1 ;
2726
+ max-width : max-content ;
2727
+ min-width : .5em ;
2728
+ }
2729
+
2730
+ .commit-button {
2731
+ margin-right : 0 ;
2732
+ margin-left : .25rem ;
2733
+ }
2734
+
2735
+ .commit-statuses-trigger {
2736
+ flex : 100% ;
2737
+ }
2721
2738
}
2722
2739
2723
2740
@media (max-width : 480px ) {
You can’t perform that action at this time.
0 commit comments