all repos

mugit @ cd1222a

🐮 git server that your cow will love
2 files changed, 9 insertions(+), 5 deletions(-)
ui: style tag message
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-02-20 21:47:28 +0200
Change ID: rmzllkznyxvlskqqlttyrmqqoutltplk
Parent: c56a6bd
M web/static/style.css

@@ -234,9 +234,7 @@ vertical-align: top;

} /* tree */ -.tree, -.log, -.repo-index { +.tree, .log, .repo-index { margin-bottom: 2em; }

@@ -361,6 +359,12 @@ }

.refs strong { padding-right: 1em; +} + +.tag-message { margin-left: 0.5rem; } +.tag-message summary { + cursor: pointer; + color: var(--gray); } /* readme */
M web/templates/repo_refs.html

@@ -29,8 +29,8 @@ <a class="link" href="/{{ $repo }}/tree/{{ .Name }}/">browse</a>

<a class="link" href="/{{ $repo }}/log/{{ .Name }}">log</a> <a class="link" href="/{{ $repo }}/archive/{{ .Name }}">tar.gz</a> {{ if .Message }} - <details> - <summary>message</summary> + <details class="tag-message"> + <summary>{{ .Name }} message </summary> <pre>{{ .Message }}</pre> </details> {{ end }}