]> source.dussan.org Git - gitea.git/commitdiff
Remove 'primary' class from tab counter labels (#22687)
authorFrancesco Siddi <francesco@blender.org>
Fri, 3 Feb 2023 22:25:55 +0000 (23:25 +0100)
committerGitHub <noreply@github.com>
Fri, 3 Feb 2023 22:25:55 +0000 (17:25 -0500)
Using the primary color for each label counter makes the use of color
redundant, as well as suggesting this is a call to action. Use the base
grey color instead.

![grey_lables](https://user-images.githubusercontent.com/451841/215778889-0d5dddad-353f-4703-a48f-1540080dee26.jpg)

templates/repo/header.tmpl

index 0e50169486b24868f1f9aabb6754fbbaa59cc7d5..b860c1d26ce31fa851d06535e75e0c68d4da6608 100644 (file)
                                        <a class="{{if .PageIsIssueList}}active {{end}}item" href="{{.RepoLink}}/issues">
                                                {{svg "octicon-issue-opened"}} {{.locale.Tr "repo.issues"}}
                                                {{if .Repository.NumOpenIssues}}
-                                                       <span class="ui primary small label">{{CountFmt .Repository.NumOpenIssues}}</span>
+                                                       <span class="ui small label">{{CountFmt .Repository.NumOpenIssues}}</span>
                                                {{end}}
                                        </a>
                                {{end}}
                                        <a class="{{if .PageIsPullList}}active {{end}}item" href="{{.RepoLink}}/pulls">
                                                {{svg "octicon-git-pull-request"}} {{.locale.Tr "repo.pulls"}}
                                                {{if .Repository.NumOpenPulls}}
-                                                       <span class="ui primary small label">{{CountFmt .Repository.NumOpenPulls}}</span>
+                                                       <span class="ui small label">{{CountFmt .Repository.NumOpenPulls}}</span>
                                                {{end}}
                                        </a>
                                {{end}}
                                        <a class="{{if .PageIsActions}}active {{end}}item" href="{{.RepoLink}}/actions">
                                                {{svg "octicon-play"}} {{.locale.Tr "actions.actions"}}
                                                {{if .Repository.NumOpenActionRuns}}
-                                                       <span class="ui primary small label">{{CountFmt .Repository.NumOpenActionRuns}}</span>
+                                                       <span class="ui small label">{{CountFmt .Repository.NumOpenActionRuns}}</span>
                                                {{end}}
                                        </a>
                                {{end}}
                                        <a href="{{.RepoLink}}/projects" class="{{if .IsProjectsPage}}active {{end}}item">
                                                {{svg "octicon-project"}} {{.locale.Tr "repo.project_board"}}
                                                {{if .Repository.NumOpenProjects}}
-                                                       <span class="ui primary small label">{{CountFmt .Repository.NumOpenProjects}}</span>
+                                                       <span class="ui small label">{{CountFmt .Repository.NumOpenProjects}}</span>
                                                {{end}}
                                        </a>
                                {{end}}
                                <a class="{{if .PageIsReleaseList}}active {{end}}item" href="{{.RepoLink}}/releases">
                                        {{svg "octicon-tag"}} {{.locale.Tr "repo.releases"}}
                                        {{if .NumReleases}}
-                                               <span class="ui primary small label">{{CountFmt .NumReleases}}</span>
+                                               <span class="ui small label">{{CountFmt .NumReleases}}</span>
                                        {{end}}
                                </a>
                                {{end}}