3 files changed,
4 insertions(+),
5 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2026-02-11 01:09:03 +0200
Change ID:
nsmtlqttzvuwqooxopnnsqqzqzyurpqu
Parent:
7e01897
M
web/static/style.css
@@ -60,9 +60,8 @@ color: var(--darker);
border-bottom: 0; } -a:hover { - border-bottom: 1.5px solid var(--gray); -} +a:hover { border-bottom: 1.5px solid var(--gray); } +.link { border-bottom: 1.5px solid var(--medium-gray); } pre { font-family: var(--mono-font);
M
web/templates/repo_commit.html
@@ -35,7 +35,7 @@ <div>
<strong>Parent:</strong> {{ range $i, $p := .parents -}} {{ if $i }}, {{ end -}} - <a href="/{{ $.name }}/commit/{{ $p }}">{{ $p }}</a> + <a class="link" href="/{{ $.name }}/commit/{{ $p }}">{{ $p }}</a> {{- end }} </div> </div>
M
web/templates/repo_index.html
@@ -18,7 +18,7 @@ <div class="repo-index-main">
{{ range .commits }} <div class="box"> <div> - <a href="/{{ $repo }}/commit/{{ .Hash }}" class="commit-hash">{{ .HashShort }}</a> + <a href="/{{ $repo }}/commit/{{ .Hash }}" class="commit-hash link">{{ .HashShort }}</a> — {{ .AuthorName }} <span class="commit-date commit-info age"> {{ .Committed.Format "Mon, 02 Jan 2006" }}