diff options
author | silverwind <me@silverwind.io> | 2022-08-09 23:55:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 23:55:29 +0200 |
commit | 89505ac650c8bce17554bc001a00673741e21528 (patch) | |
tree | 78b190f8b4ca1be67b54cd05dc2f238d98f527d1 /templates | |
parent | 7009eb9a24a800b7fb884b54f81885815ea4d286 (diff) | |
download | gitea-89505ac650c8bce17554bc001a00673741e21528.tar.gz gitea-89505ac650c8bce17554bc001a00673741e21528.zip |
Change commit status icons to SVG (#20736)
* Fix commit status popover and switch to svg icons
* margin tweak
* fix integration, use warning sign for error to match previous
* remove fix from here, will be a new pr
* use top/bottom positioning
* vertically center
* use no-entry over alert oction
* add exclamation icon
* fix test selector
* more test fixes
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/commit_status.tmpl | 10 | ||||
-rw-r--r-- | templates/repo/commit_statuses.tmpl | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/templates/repo/commit_status.tmpl b/templates/repo/commit_status.tmpl index 75ab6b4e1c..fbf064527d 100644 --- a/templates/repo/commit_status.tmpl +++ b/templates/repo/commit_status.tmpl @@ -1,15 +1,15 @@ {{if eq .State "pending"}} - <i class="commit-status circle icon yellow"></i> + {{svg "octicon-dot-fill" 18 "commit-status icon text yellow"}} {{end}} {{if eq .State "success"}} - <i class="commit-status check icon green"></i> + {{svg "octicon-check" 18 "commit-status icon text green"}} {{end}} {{if eq .State "error"}} - <i class="commit-status warning icon red"></i> + {{svg "gitea-exclamation" 18 "commit-status icon text red"}} {{end}} {{if eq .State "failure"}} - <i class="commit-status remove icon red"></i> + {{svg "octicon-x" 18 "commit-status icon text red"}} {{end}} {{if eq .State "warning"}} - <i class="commit-status warning sign icon yellow"></i> + {{svg "gitea-exclamation" 18 "commit-status icon text yellow"}} {{end}} diff --git a/templates/repo/commit_statuses.tmpl b/templates/repo/commit_statuses.tmpl index 893887736c..fe3598d755 100644 --- a/templates/repo/commit_statuses.tmpl +++ b/templates/repo/commit_statuses.tmpl @@ -1,12 +1,12 @@ -<a class="ui link commit-statuses-trigger">{{template "repo/commit_status" .Status}}</a> +<a class="ui link commit-statuses-trigger vm">{{template "repo/commit_status" .Status}}</a> <div class="ui commit-statuses-popup commit-statuses hide"> <div class="ui relaxed list divided"> {{range .Statuses}} <div class="ui item singular-status df"> - <span>{{template "repo/commit_status" .}}</span> - <span class="ui f1">{{.Context}} <span class="text grey">{{.Description}}</span></span> + {{template "repo/commit_status" .}} + <span class="ui ml-3 f1">{{.Context}} <span class="text grey">{{.Description}}</span></span> {{if .TargetURL}} - <div class="ui"><a href="{{.TargetURL}}" target="_blank" rel="noopener noreferrer">{{$.root.locale.Tr "repo.pulls.status_checks_details"}}</a></div> + <a class="ml-3" href="{{.TargetURL}}" target="_blank" rel="noopener noreferrer">{{$.root.locale.Tr "repo.pulls.status_checks_details"}}</a> {{end}} </div> {{end}} |