mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	Fix #24846 applying the solution proposed by @silverwind <details> <summary>Screenshots</summary>       </details> Replaces #25335
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			667 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			667 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .issue-list-toolbar {
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   justify-content: space-between;
 | |
|   align-items: flex-start;
 | |
|   gap: 1rem;
 | |
|   margin-top: 1rem;
 | |
| }
 | |
| 
 | |
| .issue-list-toolbar-left {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .issue-list-toolbar-right .filter.menu {
 | |
|   flex-direction: row;
 | |
|   flex-wrap: wrap;
 | |
|   gap: 8px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 767.98px) {
 | |
|   .issue-list-toolbar {
 | |
|     flex-direction: column-reverse;
 | |
|   }
 | |
|   .issue-list-toolbar-right .dropdown .menu {
 | |
|     left: auto !important;
 | |
|     right: auto !important;
 | |
|   }
 | |
|   .issue-list-navbar {
 | |
|     order: 0;
 | |
|   }
 | |
|   .issue-list-new {
 | |
|     order: 1;
 | |
|     margin-left: auto !important;
 | |
|   }
 | |
|   .issue-list-search {
 | |
|     order: 2 !important;
 | |
|   }
 | |
| }
 |