mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Make labels list use consistent gap --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
		
			
				
	
	
		
			59 lines
		
	
	
		
			919 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			919 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%;
 | 
						|
  padding-right: 1em;
 | 
						|
}
 | 
						|
 | 
						|
.issue-label-list > .item .label-issues {
 | 
						|
  width: 33%;
 | 
						|
  padding-right: 1em;
 | 
						|
}
 | 
						|
 | 
						|
.issue-label-list > .item .label-operation {
 | 
						|
  width: 33%;
 | 
						|
  display: flex;
 | 
						|
  flex-wrap: wrap;
 | 
						|
  gap: 0.5em;
 | 
						|
  justify-content: end;
 | 
						|
  align-items: center;
 | 
						|
}
 | 
						|
 | 
						|
.issue-label-list > .item .label-operation a {
 | 
						|
  font-size: 12px;
 | 
						|
}
 | 
						|
 | 
						|
.issue-label-list > .item.org-label {
 | 
						|
  opacity: 0.7;
 | 
						|
}
 | 
						|
 | 
						|
.label-operation .label {
 | 
						|
  height: fit-content;
 | 
						|
}
 | 
						|
 | 
						|
.archived-label-hint {
 | 
						|
  position: absolute;
 | 
						|
  top: 10px;
 | 
						|
  right: 5px;
 | 
						|
}
 |