diff options
author | silverwind <me@silverwind.io> | 2023-05-01 19:25:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-01 13:25:54 -0400 |
commit | fa506cd5712996b9fac3ab9615ec0ac90fa6a339 (patch) | |
tree | ce7a5a36eeb63d704a83c2dea4d586834da022f4 /templates/repo/actions/list.tmpl | |
parent | 3e7101dd64e4cd5d9ecfd4dbe0c991aacf99bf87 (diff) | |
download | gitea-fa506cd5712996b9fac3ab9615ec0ac90fa6a339.tar.gz gitea-fa506cd5712996b9fac3ab9615ec0ac90fa6a339.zip |
Remove `font-awesome` and fomantic `icon` module (#24471)
Fixes https://github.com/go-gitea/gitea/issues/10410.
This PR removes around 120kB of CSS.
Diffstat (limited to 'templates/repo/actions/list.tmpl')
-rw-r--r-- | templates/repo/actions/list.tmpl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/templates/repo/actions/list.tmpl b/templates/repo/actions/list.tmpl index c75e81948e..2885aa0fbf 100644 --- a/templates/repo/actions/list.tmpl +++ b/templates/repo/actions/list.tmpl @@ -1,7 +1,6 @@ {{template "base/head" .}} <div class="page-content repository"> {{template "repo/header" .}} - <div class="ui container"> <div class="ui stackable grid"> <div class="four wide column"> @@ -12,7 +11,7 @@ <a class="item{{if eq .Entry.Name $.CurWorkflow}} active{{end}}" href="{{$.Link}}?workflow={{.Entry.Name}}">{{.Entry.Name}} {{if .ErrMsg}} <span data-tooltip-content="{{.ErrMsg}}"> - <i class="warning icon red"></i> + {{svg "octicon-alert" 16 "text red"}} </span> {{end}} </a> |