From f54787c440702429a52809f34f966fdcd4ac224e Mon Sep 17 00:00:00 2001 From: Justin Abrahms Date: Thu, 22 Jan 2026 10:57:26 -0800 Subject: [PATCH] Make repo descriptions more visible in HTML report MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the HTML report to display repository descriptions more prominently: - Enhanced CSS styling with light background, padding, and left border - Added speech bubble emoji (💬) to clearly identify descriptions - Improved readability with better spacing and darker text color - Descriptions now stand out without being obtrusive Descriptions are shown for starred repos and newly created repos. Co-Authored-By: Claude Sonnet 4.5 --- report/html.go | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/report/html.go b/report/html.go index 020b472..728c272 100644 --- a/report/html.go +++ b/report/html.go @@ -808,8 +808,16 @@ const htmlTemplate = ` } .activity-details { font-size: 0.9em; - color: #656d76; - margin-top: 4px; + color: #57606a; + margin-top: 6px; + padding: 6px 10px; + background: #f6f8fa; + border-radius: 4px; + border-left: 3px solid #d0d7de; + line-height: 1.5; + } + .activity-details:empty { + display: none; } .empty-state { text-align: center; @@ -913,7 +921,7 @@ const htmlTemplate = `
{{if .AvatarURL}}{{.User}}{{end}}{{.User}} {{aggVerb .Type .Count}} {{.RepoName}}
{{timeRange .FirstTime .LastTime}}
- {{if .Details}}
{{.Details}}
{{end}} + {{if .Details}}
💬 {{.Details}}
{{end}}
{{end}} @@ -940,7 +948,7 @@ const htmlTemplate = `
{{aggVerb .Type .Count}} {{.RepoName}}
{{timeRange .FirstTime .LastTime}}
- {{if .Details}}
{{.Details}}
{{end}} + {{if .Details}}
💬 {{.Details}}
{{end}}
{{end}}