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 fixestokarchuk/v1.18
parent
7009eb9a24
commit
89505ac650
After Width: | Height: | Size: 230 B |
@ -1,15 +1,15 @@ |
|||||||
{{if eq .State "pending"}} |
{{if eq .State "pending"}} |
||||||
<i class="commit-status circle icon yellow"></i> |
{{svg "octicon-dot-fill" 18 "commit-status icon text yellow"}} |
||||||
{{end}} |
{{end}} |
||||||
{{if eq .State "success"}} |
{{if eq .State "success"}} |
||||||
<i class="commit-status check icon green"></i> |
{{svg "octicon-check" 18 "commit-status icon text green"}} |
||||||
{{end}} |
{{end}} |
||||||
{{if eq .State "error"}} |
{{if eq .State "error"}} |
||||||
<i class="commit-status warning icon red"></i> |
{{svg "gitea-exclamation" 18 "commit-status icon text red"}} |
||||||
{{end}} |
{{end}} |
||||||
{{if eq .State "failure"}} |
{{if eq .State "failure"}} |
||||||
<i class="commit-status remove icon red"></i> |
{{svg "octicon-x" 18 "commit-status icon text red"}} |
||||||
{{end}} |
{{end}} |
||||||
{{if eq .State "warning"}} |
{{if eq .State "warning"}} |
||||||
<i class="commit-status warning sign icon yellow"></i> |
{{svg "gitea-exclamation" 18 "commit-status icon text yellow"}} |
||||||
{{end}} |
{{end}} |
||||||
|
After Width: | Height: | Size: 216 B |
Loading…
Reference in new issue