From 6aed0b933e89ec86c093698e0f7e859f1d551239 Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Wed, 22 Jul 2026 00:06:43 +0200 Subject: [PATCH] feat(ui): new background for commit cards --- src/app.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app.css b/src/app.css index 5db8a70..bd9a1ff 100644 --- a/src/app.css +++ b/src/app.css @@ -5319,10 +5319,13 @@ input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 3px color-mix(in s .history-panel, .file-history-panel { min-height: 0; } .graph-list { background: var(--color-surface-solid); } .graph-gutter { background: var(--color-surface-dim); } -.commit-body { border-radius: var(--ui-radius-sm); background: transparent; box-shadow: none; } +.commit-body { + border-radius: var(--ui-radius-sm); + background: color-mix(in srgb, var(--color-primary) 7%, var(--color-surface-solid)); + box-shadow: none; +} .graph-row + .graph-row .commit-body { border-top: 1px solid var(--color-border-subtle); } .graph-row:hover .commit-body { background: var(--color-surface-hover); } -.graph-row.tip-row .commit-body { background: color-mix(in srgb, var(--color-primary) 7%, var(--color-surface-solid)); } .commit-avatar { border-radius: 50%; } .commit-kind, .commit-branch-chip, .ref-chip { border-radius: 4px !important; } .file-history-row { margin: 0; border: 0; border-bottom: 1px solid var(--color-border-subtle); border-radius: 0; background: transparent; }