mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	Since 2015/2016, there is a global pollution: ".ui.left" / ".ui.right". Fomantic UI doesn't work this way, it just conflicts with many Fomantic definitions. This PR starts the cleaning work of such techinical debts. And, the "label list" page has been quite messy for long time, for example, why "li" appears in "div" ...... And fix #24296 <details>      </details>
		
			
				
	
	
		
			44 lines
		
	
	
	
		
			696 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			696 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%;
 | |
|   text-align: right;
 | |
| }
 | |
| 
 | |
| .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;
 | |
| }
 |