From 7a4851eb219717a94a40c52d33ccb93bcad263a9 Mon Sep 17 00:00:00 2001 From: lutinglt Date: Wed, 3 Dec 2025 10:56:46 +0800 Subject: [PATCH] optimize action view --- styles/components/actions.ts | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/styles/components/actions.ts b/styles/components/actions.ts index 16a095a..ba4e47b 100644 --- a/styles/components/actions.ts +++ b/styles/components/actions.ts @@ -139,13 +139,21 @@ export const runWorkflow = css` export const actionViewHeader = css` .action-view-header { .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}; + border-radius: ${otherThemeVars.border.radius}; color: ${themeVars.github.fgColor.accent}; - font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace); - font-weight: 400; > a { + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace; + font-weight: 400; opacity: 1; } }