修复标签颜色和样式

This commit is contained in:
lutinglt
2025-07-07 14:31:39 +08:00
parent 5116ca5cae
commit 4b2916a75b
6 changed files with 57 additions and 3 deletions

View File

@@ -53,6 +53,22 @@ export const actions = css`
border-bottom-left-radius: ${otherThemeVars.border.radius};
border-bottom-right-radius: ${otherThemeVars.border.radius};
// 分支标签按钮
.run-list-ref {
background-color: ${themeVars.github.bgColor.accent.muted};
color: ${themeVars.github.fgColor.accent};
font-weight: 400;
&:hover {
background-color: ${themeVars.github.bgColor.accent.muted};
color: ${themeVars.github.fgColor.accent};
text-decoration-line: underline !important;
}
}
// 标签右侧任务信息
.run-list-item-right {
color: ${themeVars.color.text.light.num1};
}
.flex-item {
padding: 16px;
@@ -108,6 +124,23 @@ export const runWorkflow = css`
}
`;
// 工作流详情页标题
export const actionViewHeader = css`
.action-view-header {
.action-commit-summary {
// 分支标签按钮
.ui.label {
background-color: ${themeVars.github.bgColor.accent.muted};
color: ${themeVars.github.fgColor.accent};
font-weight: 400;
> a {
opacity: 1;
}
}
}
}
`;
// 工作流左侧作业列表
export const actionViewLeft = css`
.action-view-left {

View File

@@ -16,7 +16,6 @@ export const branchButton = css`
}
`;
// 仓库按钮
export const repoButton = css`
.page-content.repository.file.list {