diff options
-rw-r--r-- | conf/locale/locale_en-US.ini | 1 | ||||
-rw-r--r-- | public/css/gogs.css | 4 | ||||
-rw-r--r-- | public/less/_repository.less | 4 | ||||
-rw-r--r-- | templates/repo/header.tmpl | 6 | ||||
-rw-r--r-- | templates/repo/release/list.tmpl | 6 |
5 files changed, 9 insertions, 12 deletions
diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 77f2df63..1a86e810 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -812,7 +812,6 @@ release.releases = Releases release.new_release = New Release release.draft = Draft release.prerelease = Pre-Release -release.stable = Stable release.edit = edit release.ahead = <strong>%d</strong> commits to %s since this release release.source_code = Source Code diff --git a/public/css/gogs.css b/public/css/gogs.css index 16705753..b0b3d45b 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2183,11 +2183,11 @@ footer .ui.language .menu { } .repository.release #release-list > li .meta .tag:not(.icon) { display: block; - margin-top: 15px; + margin-top: 6px; } .repository.release #release-list > li .meta .commit { display: block; - margin-top: 10px; + margin-top: 6px; } .repository.release #release-list > li .detail { border-left: 1px solid #DDD; diff --git a/public/less/_repository.less b/public/less/_repository.less index ebe1d609..4101e0d6 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -1146,11 +1146,11 @@ .tag:not(.icon) { display: block; - margin-top: 15px; + margin-top: 6px; } .commit { display: block; - margin-top: 10px; + margin-top: 6px; } } .detail { diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index 5ad5139c..08197d79 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -15,7 +15,7 @@ <div class="ui right"> <div class="ui labeled button" tabindex="0"> - <a class="ui button" href="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch?redirect_to={{$.Link}}"> + <a class="ui basic button" href="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch?redirect_to={{$.Link}}"> <i class="icon fa-eye{{if not $.IsWatchingRepo}}-slash{{end}}"></i>{{if $.IsWatchingRepo}}{{$.i18n.Tr "repo.unwatch"}}{{else}}{{$.i18n.Tr "repo.watch"}}{{end}} </a> <a class="ui basic label" href="{{.Link}}/watchers"> @@ -23,7 +23,7 @@ </a> </div> <div class="ui labeled button" tabindex="0"> - <a class="ui button" href="{{$.RepoLink}}/action/{{if $.IsStaringRepo}}un{{end}}star?redirect_to={{$.Link}}"> + <a class="ui basic 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}} </a> <a class="ui basic label" href="{{.Link}}/stars"> @@ -32,7 +32,7 @@ </div> {{if .CanBeForked}} <div class="ui labeled button" tabindex="0"> - <a class="ui button {{if eq .OwnerID $.SignedUserID}}poping up{{end}}" href="{{AppSubUrl}}/repo/fork/{{.ID}}"> + <a class="ui basic button {{if eq .OwnerID $.SignedUserID}}poping up{{end}}" href="{{AppSubUrl}}/repo/fork/{{.ID}}"> <i class="octicon octicon-repo-forked"></i>{{$.i18n.Tr "repo.fork"}} </a> <a class="ui basic label" href="{{.Link}}/forks"> diff --git a/templates/repo/release/list.tmpl b/templates/repo/release/list.tmpl index 429ca820..284035d1 100644 --- a/templates/repo/release/list.tmpl +++ b/templates/repo/release/list.tmpl @@ -19,11 +19,9 @@ <div class="ui four wide column meta"> {{if .PublisherID}} {{if .IsDraft}} - <span class="ui yellow label">{{$.i18n.Tr "repo.release.draft"}}</span> + <span class="ui yellow basic label">{{$.i18n.Tr "repo.release.draft"}}</span> {{else if .IsPrerelease}} - <span class="ui orange label">{{$.i18n.Tr "repo.release.prerelease"}}</span> - {{else}} - <span class="ui green label">{{$.i18n.Tr "repo.release.stable"}}</span> + <span class="ui orange basic label">{{$.i18n.Tr "repo.release.prerelease"}}</span> {{end}} <span class="tag text blue"> <a href="{{$.RepoLink}}/src/{{.TagName}}" rel="nofollow"><i class="tag icon"></i> {{.TagName}}</a> |