mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Remove label color from global issue filters (#22660)
The use of ui colors (red, green, etc) should be limited to actionable or dismissable entries. Before this commit, a green/red label was used to display issues count on each repository. This did not add any meaningful information to the list. Removing the label reduces ambiguity and makes the list easier to scan visually.  --------- Co-authored-by: delvh <dev.lh@web.de>
This commit is contained in:
		
					parent
					
						
							
								36dc11869d
							
						
					
				
			
			
				commit
				
					
						c14d3e80e8
					
				
			
		
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -30,7 +30,7 @@
 | 
				
			||||||
					<div class="ui divider"></div>
 | 
										<div class="ui divider"></div>
 | 
				
			||||||
					<a class="{{if not $.RepoIDs}}ui basic primary button{{end}} repo name item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&q={{$.Keyword}}">
 | 
										<a class="{{if not $.RepoIDs}}ui basic primary button{{end}} repo name item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&q={{$.Keyword}}">
 | 
				
			||||||
						<span class="text truncate">All</span>
 | 
											<span class="text truncate">All</span>
 | 
				
			||||||
						<div class="ui {{if $.IsShowClosed}}red{{else}}green{{end}} label">{{CountFmt .TotalIssueCount}}</div>
 | 
											<span class="ui">{{CountFmt .TotalIssueCount}}</span>
 | 
				
			||||||
					</a>
 | 
										</a>
 | 
				
			||||||
					{{range .Repos}}
 | 
										{{range .Repos}}
 | 
				
			||||||
						{{with $Repo := .}}
 | 
											{{with $Repo := .}}
 | 
				
			||||||
| 
						 | 
					@ -49,7 +49,7 @@
 | 
				
			||||||
									{{- end -}}
 | 
														{{- end -}}
 | 
				
			||||||
									]&sort={{$.SortType}}&state={{$.State}}&q={{$.Keyword}}" title="{{.FullName}}">
 | 
														]&sort={{$.SortType}}&state={{$.State}}&q={{$.Keyword}}" title="{{.FullName}}">
 | 
				
			||||||
								<span class="text truncate">{{$Repo.FullName}}</span>
 | 
													<span class="text truncate">{{$Repo.FullName}}</span>
 | 
				
			||||||
								<div class="ui {{if $.IsShowClosed}}red{{else}}green{{end}} label">{{CountFmt (index $.Counts $Repo.ID)}}</div>
 | 
													<span class="ui">{{CountFmt (index $.Counts $Repo.ID)}}</span>
 | 
				
			||||||
							</a>
 | 
												</a>
 | 
				
			||||||
						{{end}}
 | 
											{{end}}
 | 
				
			||||||
					{{end}}
 | 
										{{end}}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue