optimize action view

This commit is contained in:
lutinglt
2025-12-03 10:56:46 +08:00
parent a0b51b863d
commit 7a4851eb21

View File

@@ -139,13 +139,21 @@ export const runWorkflow = css`
export const actionViewHeader = css` export const actionViewHeader = css`
.action-view-header { .action-view-header {
.action-commit-summary { .action-commit-summary {
a:hover {
text-decoration: inherit;
}
// 提前哈希
> a.muted:first-of-type {
text-decoration: underline;
}
// 分支标签按钮 // 分支标签按钮
.ui.label { .ui.ui.ui.label {
background-color: ${themeVars.github.bgColor.accent.muted}; background-color: ${themeVars.github.bgColor.accent.muted};
border-radius: ${otherThemeVars.border.radius};
color: ${themeVars.github.fgColor.accent}; color: ${themeVars.github.fgColor.accent};
font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace);
font-weight: 400;
> a { > a {
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
font-weight: 400;
opacity: 1; opacity: 1;
} }
} }