优化按钮和菜单下的图标颜色

This commit is contained in:
lutinglt
2025-07-08 19:08:54 +08:00
parent f9755704ec
commit b9b12e7ed2
6 changed files with 18 additions and 16 deletions

View File

@@ -18,6 +18,9 @@ export const baseButton = css`
min-height: 30px;
font-weight: 500;
padding: 9px 16px;
svg {
color: ${themeVars.color.text.light.num1};
}
}
.ui.primary.button {
@@ -25,6 +28,9 @@ export const baseButton = css`
&:hover {
${primaryHoverStyle}
}
svg {
color: ${themeVars.color.text.self};
}
}
// 主色调基本按钮和普通按钮一样
// 作者的关注按钮
@@ -76,14 +82,6 @@ export const redButton = css`
}
`;
// 分支菜单按钮
export const branchDropdownButton = css`
.ui.button.branch-dropdown-button {
padding: 3px 12px;
min-height: 30px;
}
`;
// 修复按钮高度
export const fixButtonHeight = css`
.ui.small.buttons .button,