一些颜色修复

This commit is contained in:
lutinglt
2025-07-06 20:11:27 +08:00
parent 3b0f481be7
commit dc6605d780
7 changed files with 68 additions and 100 deletions

View File

@@ -2,9 +2,14 @@ import { css } from "src/types/vars";
export const dashboard = css`
.page-content.dashboard {
// 动态的右侧 svg 图标
.flex-item .flex-item-trailing svg {
height: 20px;
width: 20px;
}
// 仓库列表的仓库/组织切换按钮
.ui.two.item.menu {
background-color: unset;
}
}
`;

View File

@@ -93,6 +93,18 @@ export const comment = css`
box-shadow: 0 0 0 1px ${themeVars.color.primary.self} !important;
}
}
.comment-header-right {
.context-dropdown {
// 评论菜单的删除按钮
.menu .item.delete-comment {
color: ${themeVars.color.red.self};
&:hover {
background-color: ${themeVars.color.red.badge.bg} !important;
color: ${themeVars.color.red.light};
}
}
}
}
}
`;