From 2b9b2bdb1fb9a6c94859025ac1588faf4a5fbcdb Mon Sep 17 00:00:00 2001 From: Anirudh Oppiliappan Date: Mon, 19 Dec 2022 17:49:32 +0530 Subject: [PATCH] css: add bg to readme/file content --- static/style.css | 8 +++++--- templates/commit.html | 7 +++++-- templates/file.html | 1 + 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/static/style.css b/static/style.css index cc54e18..64ff978 100644 --- a/static/style.css +++ b/static/style.css @@ -9,7 +9,7 @@ --sans-font: "InterVar", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif; --display-font: "InterDisplay", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif; - --mono-font: "SF Mono", "Roboto Mono", monospace; + --mono-font: -apple-system, "SF Mono", "Roboto Mono", monospace; } html { @@ -149,8 +149,8 @@ a:hover { } .readme { - padding-bottom: 2rem; - border-bottom: 1.5px solid var(--medium-gray); + background: var(--light-gray); + padding: 0.5rem; } .diff { @@ -230,6 +230,8 @@ a:hover { grid-template-columns: 1rem minmax(0, 1fr); gap: 1rem; overflow: scroll; + padding: 0.5rem; + background: var(--light-gray); } .commit-info { diff --git a/templates/commit.html b/templates/commit.html index b1b3cbc..65803b7 100644 --- a/templates/commit.html +++ b/templates/commit.html @@ -49,8 +49,11 @@
{{ if .Name.Old }} - {{ .Name.Old }} → - {{ .Name.New }} + {{ .Name.Old }} + {{ if .Name.New }} + → + {{ .Name.New }} + {{ end }} {{ else }} {{ .Name.New }} {{- end -}} diff --git a/templates/file.html b/templates/file.html index a4485f3..f231969 100644 --- a/templates/file.html +++ b/templates/file.html @@ -7,6 +7,7 @@ {{ template "nav" . }}
+

{{ .path }}

{{- range .linecount }}