diff options
author | Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> | 2020-06-22 01:18:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 02:18:42 +0300 |
commit | c1a2887c028703dcd8516f7e90444aae7a381d80 (patch) | |
tree | 90dd9ccc887113e495e8f8313d4ade4491326651 /templates | |
parent | 3b685e1f0d2978df4a057bfe0ad8a40cb7dbc96c (diff) | |
download | gitea-c1a2887c028703dcd8516f7e90444aae7a381d80.tar.gz gitea-c1a2887c028703dcd8516f7e90444aae7a381d80.zip |
Use octicons for all repo header buttons (#11890)
* Use octicons for all repo header buttons
* ensure margin isn't set on any other svg outside repo buttons
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/header.tmpl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index 76102529df..713968dc21 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -25,7 +25,7 @@ {{$.CsrfTokenHtml}} <div class="ui labeled button" tabindex="0"> <button type="submit" class="ui compact basic button"> - <i class="icon fa-eye{{if not $.IsWatchingRepo}}-slash{{end}}"></i>{{if $.IsWatchingRepo}}{{$.i18n.Tr "repo.unwatch"}}{{else}}{{$.i18n.Tr "repo.watch"}}{{end}} + {{if $.IsWatchingRepo}}{{svg "octicon-eye-closed" 16}}{{$.i18n.Tr "repo.unwatch"}}{{else}}{{svg "octicon-eye" 16}}{{$.i18n.Tr "repo.watch"}}{{end}} </button> <a class="ui basic label" href="{{.Link}}/watchers"> {{.NumWatches}} @@ -36,7 +36,8 @@ {{$.CsrfTokenHtml}} <div class="ui labeled button" tabindex="0"> <button type="submit" class="ui compact basic button"> - <i class="icon star{{if not $.IsStaringRepo}} outline{{end}}"></i>{{if $.IsStaringRepo}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{$.i18n.Tr "repo.star"}}{{end}} + <!-- TODO use star-filled once octicons v2 are in place */ --> + {{if $.IsStaringRepo}}{{svg "octicon-star" 16}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{svg "octicon-star" 16}}{{$.i18n.Tr "repo.star"}}{{end}} </button> <a class="ui basic label" href="{{.Link}}/stars"> {{.NumStars}} @@ -46,7 +47,7 @@ {{if and (not .IsEmpty) ($.Permission.CanRead $.UnitTypeCode)}} <div class="ui labeled button {{if and ($.IsSigned) (not $.CanSignedUserFork)}}disabled-repo-button{{end}}" tabindex="0"> <a class="ui compact basic button {{if or (not $.IsSigned) (not $.CanSignedUserFork)}}poping up{{end}}" {{if $.CanSignedUserFork}}href="{{AppSubUrl}}/repo/fork/{{.ID}}"{{else if $.IsSigned}} data-content="{{$.i18n.Tr "repo.fork_from_self"}}" {{ else }} data-content="{{$.i18n.Tr "repo.fork_guest_user" }}" rel="nofollow" href="{{AppSubUrl}}/user/login?redirect_to={{AppSubUrl}}/repo/fork/{{.ID}}" {{end}} data-position="top center" data-variation="tiny"> - {{svg "octicon-repo-forked" 15}}{{$.i18n.Tr "repo.fork"}} + {{svg "octicon-repo-forked" 16}}{{$.i18n.Tr "repo.fork"}} </a> <a class="ui basic label" href="{{.Link}}/forks"> {{.NumForks}} |