已合并颜色

This commit is contained in:
lutinglt
2025-07-16 00:59:13 +08:00
parent a1dd096ef5
commit 4544218701

View File

@@ -123,8 +123,7 @@ export const dropdown = css`
export const prMerge = css` export const prMerge = css`
.repository.view.issue .comment-list .timeline-item.pull-merge-box { .repository.view.issue .comment-list .timeline-item.pull-merge-box {
// 头像 // 头像
.timeline-avatar.green { .timeline-avatar {
background-color: ${themeVars.github.bgColor.success.emphasis};
color: ${themeVars.color.text.self} !important; color: ${themeVars.color.text.self} !important;
border-radius: ${otherThemeVars.border.radius}; border-radius: ${otherThemeVars.border.radius};
width: 40px; width: 40px;
@@ -136,6 +135,10 @@ export const prMerge = css`
width: 24px; width: 24px;
height: 24px; height: 24px;
} }
// 可以合并
&.green {
background-color: ${themeVars.github.bgColor.success.emphasis};
// 操作评论边框色
+ .content > .ui.attached.segment { + .content > .ui.attached.segment {
border-left-color: ${themeVars.github.bgColor.success.emphasis}; border-left-color: ${themeVars.github.bgColor.success.emphasis};
border-right-color: ${themeVars.github.bgColor.success.emphasis}; border-right-color: ${themeVars.github.bgColor.success.emphasis};
@@ -147,6 +150,21 @@ export const prMerge = css`
} }
} }
} }
// 已合并
&.purple {
background-color: ${themeVars.github.bgColor.done.emphasis};
+ .content > .ui.attached.segment {
border-left-color: ${themeVars.github.bgColor.done.emphasis};
border-right-color: ${themeVars.github.bgColor.done.emphasis};
&:first-child {
border-top-color: ${themeVars.github.bgColor.done.emphasis};
}
&:last-child {
border-bottom-color: ${themeVars.github.bgColor.done.emphasis};
}
}
}
}
// 检查状态 // 检查状态
.commit-status-panel { .commit-status-panel {
.commit-status-header { .commit-status-header {