同步 PR 的合并提交头像样式

This commit is contained in:
lutinglt
2025-07-11 22:50:14 +08:00
parent efe5e6ecbb
commit 4fa1d4ff18
3 changed files with 25 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import { css, themeVars } from "src/types/vars";
import { css, otherThemeVars, themeVars } from "src/types/vars";
import { activeItemAfterStyle } from "styles/public/menu";
export const button = css`
@@ -121,3 +121,23 @@ export const dropdown = css`
}
}
`;
// PR 界面的 PR 操作评论头像
export const prMerge = css`
.repository.view.issue .comment-list .timeline-item.pull-merge-box {
.timeline-avatar {
background-color: ${themeVars.github.bgColor.success.emphasis};
color: ${themeVars.color.text.self} !important;
border-radius: ${otherThemeVars.border.radius};
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
svg {
width: 24px;
height: 24px;
}
}
}
`;