diff options
author | Lauris BH <lauris@nix.lv> | 2018-08-07 21:36:21 +0300 |
---|---|---|
committer | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-08-07 14:36:21 -0400 |
commit | 5ae840872530e8d667dee611abe5307ee93e4dd4 (patch) | |
tree | 61044cf635b4a7b368c1b226f748b9c545718910 | |
parent | a42900c17f68a4d13ef3e5e1ddd16c183e85c605 (diff) | |
download | gitea-5ae840872530e8d667dee611abe5307ee93e4dd4.tar.gz gitea-5ae840872530e8d667dee611abe5307ee93e4dd4.zip |
Fix starring icon after semantic ui update (#4628)
-rw-r--r-- | templates/repo/header.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index a496b9b912..5312a49bec 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -24,7 +24,7 @@ </div> <div class="ui compact labeled button" tabindex="0"> <a class="ui compact button" href="{{$.RepoLink}}/action/{{if $.IsStaringRepo}}un{{end}}star?redirect_to={{$.Link}}"> - <i class="icon fa-star{{if not $.IsStaringRepo}}-o{{end}}"></i>{{if $.IsStaringRepo}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{$.i18n.Tr "repo.star"}}{{end}} + <i class="icon star{{if not $.IsStaringRepo}} outline{{end}}"></i>{{if $.IsStaringRepo}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{$.i18n.Tr "repo.star"}}{{end}} </a> <a class="ui basic label" href="{{.Link}}/stars"> {{.NumStars}} |