summaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/milestones.tmpl
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-09-02 20:04:18 -0400
committerUnknwon <u@gogs.io>2015-09-02 20:04:18 -0400
commit5c5ccddb02113027f0b1a24e836ee61eebd56729 (patch)
tree6fad32def077dcddc0c72dda96cedc96b5a504a4 /templates/repo/issue/milestones.tmpl
parentc0a899b15182fc717207dadb33a0d55024dce109 (diff)
downloadgitea-5c5ccddb02113027f0b1a24e836ee61eebd56729.tar.gz
gitea-5c5ccddb02113027f0b1a24e836ee61eebd56729.zip
fix buttons style
Diffstat (limited to 'templates/repo/issue/milestones.tmpl')
-rw-r--r--templates/repo/issue/milestones.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/issue/milestones.tmpl b/templates/repo/issue/milestones.tmpl
index fe1210c181..248b81e242 100644
--- a/templates/repo/issue/milestones.tmpl
+++ b/templates/repo/issue/milestones.tmpl
@@ -12,12 +12,12 @@
</div>
<div class="ui divider"></div>
{{template "base/alert" .}}
- <div class="ui tiny buttons">
- <a class="ui green basic button {{if not .IsShowClosed}}active{{end}}" href="{{.RepoLink}}/milestones?state=open">
+ <div class="ui tiny basic buttons">
+ <a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{.RepoLink}}/milestones?state=open">
<i class="octicon octicon-milestone"></i>
{{.i18n.Tr "repo.milestones.open_tab" .OpenCount}}
</a>
- <a class="ui red basic button {{if .IsShowClosed}}active{{end}}" href="{{.RepoLink}}/milestones?state=closed">
+ <a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{.RepoLink}}/milestones?state=closed">
<i class="octicon octicon-milestone"></i>
{{.i18n.Tr "repo.milestones.close_tab" .ClosedCount}}
</a>