mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	Backport #27451 by @puni9869 Followup of #27115 Finally closes #25237 ## Screenshots ### Issue Sidebar <img width="513" alt="image" src="https://github.com/go-gitea/gitea/assets/80308335/9f7fda2f-5a03-4684-8619-fd3498a95b41"> ### PR sidebar <img width="367" alt="image" src="https://github.com/go-gitea/gitea/assets/80308335/53db9b64-faec-4a67-91d6-76945596a469"> ### PR sidebar with archived labels shown <img width="352" alt="image" src="https://github.com/go-gitea/gitea/assets/80308335/9dc5050f-4e69-4f76-bb83-582480a2281e"> Signed-off-by: puni9869 <punitinani1@hotmail.com> Co-authored-by: puni9869 <80308335+puni9869@users.noreply.github.com> Co-authored-by: silverwind <me@silverwind.io>
		
			
				
	
	
		
			52 lines
		
	
	
	
		
			786 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			786 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .issue-label-list {
 | |
|   list-style: none;
 | |
|   padding: 0;
 | |
|   margin: 0;
 | |
| }
 | |
| 
 | |
| .issue-label-list .item {
 | |
|   border-bottom: 1px solid var(--color-secondary);
 | |
|   display: flex;
 | |
|   padding: 1em 0;
 | |
|   margin: 0;
 | |
| }
 | |
| 
 | |
| .issue-label-list .item:first-child {
 | |
|   padding-top: 0;
 | |
| }
 | |
| 
 | |
| .issue-label-list .item:last-child {
 | |
|   border-bottom: none;
 | |
|   padding-bottom: 0;
 | |
| }
 | |
| 
 | |
| .issue-label-list .item .label-title {
 | |
|   width: 33%;
 | |
| }
 | |
| 
 | |
| .issue-label-list .item .label-issues {
 | |
|   width: 33%;
 | |
| }
 | |
| 
 | |
| .issue-label-list .item .label-operation {
 | |
|   width: 33%;
 | |
| }
 | |
| 
 | |
| .issue-label-list .item a {
 | |
|   font-size: 12px;
 | |
|   padding-right: 10px;
 | |
|   color: var(--color-text-light);
 | |
| }
 | |
| 
 | |
| .issue-label-list .item.org-label {
 | |
|   opacity: 0.7;
 | |
| }
 | |
| 
 | |
| .label-operation .label {
 | |
|   height: fit-content;
 | |
| }
 | |
| 
 | |
| .archived-label-hint {
 | |
|   float: right;
 | |
|   margin: -12px;
 | |
| }
 |