mirror of
				https://github.com/lutinglt/gitea-github-theme.git
				synced 2025-10-31 09:00:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			323 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			323 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { css } from "src/types/vars";
 | |
| import { activeItemAfterStyle } from "styles/public/menu";
 | |
| 
 | |
| // 新建仓库页面下拉菜单
 | |
| export const newRepo = css`
 | |
|   .page-content.repository.new-repo {
 | |
|     .ui.dropdown .menu {
 | |
|       .item:hover:after {
 | |
|         content: "";
 | |
|         ${activeItemAfterStyle}
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| `;
 | 
