mirror of
				https://github.com/lutinglt/gitea-github-theme.git
				synced 2025-10-31 09:00:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			959 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			959 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { css, themeVars } from "src/types/vars";
 | |
| 
 | |
| export const diff = css`
 | |
|   /* 折叠行多余的颜色 */
 | |
|   .tag-code {
 | |
|     background-color: unset;
 | |
|     /* 折叠行文本 */
 | |
|     .code-inner {
 | |
|       color: ${themeVars.color.text.light.num1};
 | |
|     }
 | |
|   }
 | |
|   /* 增加/删除行多余的颜色 */
 | |
|   .code-diff-unified {
 | |
|     .del-code,
 | |
|     .add-code {
 | |
|       background: unset;
 | |
|       border-color: unset;
 | |
|     }
 | |
|   }
 | |
|   /* 增加/删除相关代码背景色圆角 */
 | |
|   .added-code,
 | |
|   .removed-code {
 | |
|     border-radius: 0.1875rem;
 | |
|     color: ${themeVars.color.text.self};
 | |
|     /* 覆盖掉 chroma 的颜色 */
 | |
|     * {
 | |
|       color: ${themeVars.color.text.self} !important;
 | |
|     }
 | |
|   }
 | |
|   /* 展开/收缩按钮 */
 | |
|   .code-expander-button {
 | |
|     height: 28px !important;
 | |
| 
 | |
|     &:hover {
 | |
|       background: ${themeVars.github.bgColor.accent.emphasis};
 | |
|       color: ${themeVars.color.white}
 | |
|     }
 | |
|   }
 | |
|   /* 行号居中 */
 | |
|   .lines-num {
 | |
|     text-align: center !important;
 | |
|   }
 | |
| `;
 | 
