导航栏右侧按钮和头像样式同步

This commit is contained in:
lutinglt
2025-07-07 13:50:03 +08:00
parent 15076d2996
commit 5116ca5cae
12 changed files with 171 additions and 89 deletions

View File

@@ -54,19 +54,52 @@ export const repoHeader = css`
}
`;
export const repoTopic = css`
#repo-topics {
.ui.label.repo-topic {
border-radius: 25px;
font-size: 12px;
padding: 5px 10px;
margin: 0px 1.5px 3.5px 0px;
background-color: ${themeVars.github.bgColor.accent.muted};
color: ${themeVars.github.fgColor.accent};
&:hover {
background-color: ${themeVars.github.bgColor.accent.emphasis};
color: ${themeVars.color.text.self};
// 顶部提交, 标签, 分支统计
export const repoMenu = css`
.page-content.repository {
.repository-summary .repository-menu {
background-color: ${themeVars.color.box.header};
.item {
color: ${themeVars.color.text.light.num1};
height: 31px; // 文件列表下与右侧输入框对齐
b {
color: ${themeVars.color.text.self};
margin: 0 2px;
}
&.active {
background-color: ${themeVars.color.active};
color: ${themeVars.color.text.self};
font-weight: 500;
svg {
color: ${themeVars.color.text.light.num1};
}
}
}
}
}
`;
export const repoTopic = css`
// 理应只能覆盖探索/组织/用户下仓库的 topic 标签
.label-list .ui.label,
// 仓库文件列表下的 topic 标签
#repo-topics .ui.label.repo-topic {
border-radius: 25px;
font-size: 12px;
padding: 5px 10px;
margin: 0px 1.5px 3.5px 0px;
background-color: ${themeVars.github.bgColor.accent.muted};
color: ${themeVars.github.fgColor.accent};
&:hover {
background-color: ${themeVars.github.bgColor.accent.emphasis};
color: ${themeVars.color.text.self};
}
}
`;
// 仓库动态页面关闭工单状态条颜色
export const closedIssueTableCell = css`
.stats-table .table-cell.tw-bg-red[href="#closed-issues"] {
background-color: ${themeVars.color.purple.self} !important;
}
`;