summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2022-02-11 15:29:58 +0000
committerGitHub <noreply@github.com>2022-02-11 23:29:58 +0800
commitc86ecaebae5d4db60edaf3ffdc0ee8ce40707e67 (patch)
tree0080bf3dae85c9fce5f8b20517591727821ca6d5
parent832ce406aefed0cceb30d42d1435f425a9aba279 (diff)
downloadgitea-c86ecaebae5d4db60edaf3ffdc0ee8ce40707e67.tar.gz
gitea-c86ecaebae5d4db60edaf3ffdc0ee8ce40707e67.zip
Separate the details links of commit-statuses in headers (#18661)
-rw-r--r--templates/repo/commit_statuses.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/commit_statuses.tmpl b/templates/repo/commit_statuses.tmpl
index d2e9f0bd16..f33635abff 100644
--- a/templates/repo/commit_statuses.tmpl
+++ b/templates/repo/commit_statuses.tmpl
@@ -2,11 +2,11 @@
<div class="ui popup very wide fixed basic commit-statuses">
<div class="ui relaxed list divided">
{{range .Statuses}}
- <div class="ui item singular-status">
+ <div class="ui item singular-status df">
<span>{{template "repo/commit_status" .}}</span>
- <span class="ui">{{.Context}} <span class="text grey">{{.Description}}</span></span>
+ <span class="ui f1">{{.Context}} <span class="text grey">{{.Description}}</span></span>
{{if .TargetURL}}
- <div class="ui right"><a href="{{.TargetURL}}" target="_blank" rel="noopener noreferrer">{{$.root.i18n.Tr "repo.pulls.status_checks_details"}}</a></div>
+ <div class="ui"><a href="{{.TargetURL}}" target="_blank" rel="noopener noreferrer">{{$.root.i18n.Tr "repo.pulls.status_checks_details"}}</a></div>
{{end}}
</div>
{{end}}