diff options
author | Unknwon <u@gogs.io> | 2015-09-02 20:04:18 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-09-02 20:04:18 -0400 |
commit | 5c5ccddb02113027f0b1a24e836ee61eebd56729 (patch) | |
tree | 6fad32def077dcddc0c72dda96cedc96b5a504a4 /templates/user/dashboard/issues.tmpl | |
parent | c0a899b15182fc717207dadb33a0d55024dce109 (diff) | |
download | gitea-5c5ccddb02113027f0b1a24e836ee61eebd56729.tar.gz gitea-5c5ccddb02113027f0b1a24e836ee61eebd56729.zip |
fix buttons style
Diffstat (limited to 'templates/user/dashboard/issues.tmpl')
-rw-r--r-- | templates/user/dashboard/issues.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/user/dashboard/issues.tmpl b/templates/user/dashboard/issues.tmpl index a1cde27f91..82b0fd80ce 100644 --- a/templates/user/dashboard/issues.tmpl +++ b/templates/user/dashboard/issues.tmpl @@ -26,12 +26,12 @@ </div> </div> <div class="twelve wide column content"> - <div class="ui tiny tabs buttons"> - <a class="ui green basic button {{if not .IsShowClosed}}active{{end}}" href="{{.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&state=open"> + <div class="ui tiny basic buttons"> + <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&state=open"> <i class="octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} </a> - <a class="ui red basic button {{if .IsShowClosed}}active{{end}}" href="{{.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&state=closed"> + <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{.Link}}?type={{$.ViewType}}&repo={{.RepoID}}&state=closed"> <i class="octicon octicon-issue-closed"></i> {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} </a> |