mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	Fix issue filters on mobile view (#25368)
Fix #24846 applying the solution proposed by @silverwind <details> <summary>Screenshots</summary>       </details> Replaces #25335
This commit is contained in:
		| @@ -1,6 +1,7 @@ | ||||
| .issue-list-toolbar { | ||||
|   display: flex; | ||||
|   flex-wrap: wrap; | ||||
|   justify-content: space-between; | ||||
|   align-items: flex-start; | ||||
|   gap: 1rem; | ||||
|   margin-top: 1rem; | ||||
| @@ -10,17 +11,19 @@ | ||||
|   display: flex; | ||||
| } | ||||
|  | ||||
| .issue-list-toolbar-right { | ||||
|   margin-left: auto; | ||||
| .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 { | ||||
|     margin-right: auto; | ||||
|     width: 100%; | ||||
|   .issue-list-toolbar-right .dropdown .menu { | ||||
|     left: auto !important; | ||||
|     right: auto !important; | ||||
|   } | ||||
|   .issue-list-navbar { | ||||
|     order: 0; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user