diff options
author | Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> | 2020-05-17 17:35:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-17 18:35:07 +0300 |
commit | 17f652a91cf0857bdb3ae0abaed7d2e630952cb8 (patch) | |
tree | f77647da0a95f6a38023f38f3038e64af6203b83 /templates/repo/commit_page.tmpl | |
parent | 580f73ad794496410e56e9dcc2d0e2725372beda (diff) | |
download | gitea-17f652a91cf0857bdb3ae0abaed7d2e630952cb8.tar.gz gitea-17f652a91cf0857bdb3ae0abaed7d2e630952cb8.zip |
Increase width for authors on commit view (#11441)
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'templates/repo/commit_page.tmpl')
-rw-r--r-- | templates/repo/commit_page.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/commit_page.tmpl b/templates/repo/commit_page.tmpl index f19292fd99..f884bee7be 100644 --- a/templates/repo/commit_page.tmpl +++ b/templates/repo/commit_page.tmpl @@ -31,7 +31,7 @@ </div> <div class="ui attached info segment {{$class}}"> <div class="ui stackable grid"> - <div class="nine wide column"> + <div class="ten wide column"> {{if .Author}} <img class="ui avatar image" src="{{.Author.RelAvatarLink}}" /> {{if .Author.FullName}} @@ -47,7 +47,7 @@ <span> </span> {{if ne .Verification.CommittingUser.ID 0}} <img class="ui avatar image" src="{{.Verification.CommittingUser.RelAvatarLink}}" /> - <a href="{{.Verification.CommittingUser.HomeLink}}"><strong>{{.Commit.Committer.Name}}</strong> <{{.Commit.Committer.Email}}></a> + <a href="{{.Verification.CommittingUser.HomeLink}}"><strong>{{.Commit.Committer.Name}}</strong> <{{.Commit.Committer.Email}}></a> {{else}} <img class="ui avatar image" src="{{AvatarLink .Commit.Committer.Email}}" /> <strong>{{.Commit.Committer.Name}}</strong> @@ -55,7 +55,7 @@ {{end}} <span class="text grey" id="authored-time">{{TimeSince .Commit.Author.When $.Lang}}</span> </div> - <div class="seven wide right aligned column"> + <div class="six wide right aligned column"> <div class="ui horizontal list"> {{if .Parents}} <div class="item"> |