修复标签颜色和样式

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 {

View File

@@ -8,6 +8,20 @@ export const label = css`
&.ui.ui.ui {
&.label {
border-radius: 25px;
// 多个标签的组合标签的圆角修复
&.scope-parent {
.scope-left {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.scope-middle {
border-radius: 0;
}
.scope-right {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
/* 主色调标签 */
&.primary {
background-color: unset;

View File

@@ -158,6 +158,9 @@ export const secondaryMenu = css`
margin-bottom: 0.5rem !important;
}
}
.item {
font-weight: 400; // 二级导航栏不需要加粗
}
.active.item,
.dropdown.item,
.link.item,