mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-27 12:31:02 +00:00 
			
		
		
		
	Numerous small UI fixes: - Fix double border in collaborator list - Fix system notice table background - Mute links in repo and org lists - Downsize projects edit buttons - Improve milestones and project list rendering - Condense milestone list entry to a single line of "metas" - Mute ".." button in repo files list
		
			
				
	
	
		
			62 lines
		
	
	
	
		
			971 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
	
		
			971 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .milestone-list {
 | |
|   list-style: none;
 | |
| }
 | |
| 
 | |
| .milestone-card {
 | |
|   width: 100%;
 | |
|   padding-top: 10px;
 | |
|   padding-bottom: 10px;
 | |
| }
 | |
| 
 | |
| .milestone-card + .milestone-card {
 | |
|   border-top: 1px solid var(--color-secondary);
 | |
| }
 | |
| 
 | |
| .milestone-card .content {
 | |
|   padding-top: 10px;
 | |
| }
 | |
| 
 | |
| .milestone-header progress {
 | |
|   width: 200px;
 | |
|   height: 16px;
 | |
| }
 | |
| 
 | |
| .milestone-header {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   margin: 0;
 | |
|   flex-wrap: wrap;
 | |
|   justify-content: space-between;
 | |
| }
 | |
| 
 | |
| .milestone-toolbar {
 | |
|   padding-top: 5px;
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   gap: 8px;
 | |
|   justify-content: space-between;
 | |
| }
 | |
| 
 | |
| .milestone-toolbar .group {
 | |
|   color: var(--color-text-light-2);
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   gap: 8px;
 | |
| }
 | |
| 
 | |
| .milestone-toolbar .group > a {
 | |
|   font-size: 15px;
 | |
|   color: var(--color-text-light-2);
 | |
| }
 | |
| 
 | |
| .milestone-toolbar .group > a:hover {
 | |
|   color: var(--color-text);
 | |
| }
 | |
| 
 | |
| @media (max-width: 767.98px) {
 | |
|   .milestone-card {
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
|     gap: 8px;
 | |
|   }
 | |
| }
 |