diff options
author | silverwind <me@silverwind.io> | 2019-07-23 04:12:09 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-07-23 04:12:09 +0200 |
commit | bcbc9f33d73393c47b27793ac91b8f9faf98d349 (patch) | |
tree | 16dcf3e3e4ea8b2373c8b96415ff58649e7896a1 /templates/repo/blame.tmpl | |
parent | Fixes #7564 - Malformed URLs in API git/commits response (#7565) (diff) | |
download | forgejo-bcbc9f33d73393c47b27793ac91b8f9faf98d349.tar.xz forgejo-bcbc9f33d73393c47b27793ac91b8f9faf98d349.zip |
Fix file header overflow in file and blame views (#7562)
Diffstat (limited to 'templates/repo/blame.tmpl')
-rw-r--r-- | templates/repo/blame.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/blame.tmpl b/templates/repo/blame.tmpl index 012f630203..e42366fd6e 100644 --- a/templates/repo/blame.tmpl +++ b/templates/repo/blame.tmpl @@ -2,11 +2,11 @@ <h4 class="ui top attached header" id="repo-read-file"> <div class="ui stackable grid"> - <div class="ten wide column"> + <div class="eight wide column"> <i class="file text outline icon ui left"></i> <strong>{{.FileName}}</strong> <span class="text grey normal">{{FileSize .FileSize}}{{if .IsLFSFile}} ({{.i18n.Tr "repo.stored_lfs"}}){{end}}</span> </div> - <div class="six wide right aligned column"> + <div class="eight wide right aligned column"> <div class="ui right file-actions"> <div class="ui buttons"> {{if not .IsViewCommit}} @@ -48,4 +48,4 @@ </div> -</div>
\ No newline at end of file +</div> |