all repos

mugit @ 9c82bda763b9950c5e2e7fa83ba5f1505c220a7e

馃惍 git server that your cow will love
3 files changed, 4 insertions(+), 5 deletions(-)
ui: hint links more clearly
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-02-11 01:09:03 +0200
Authored at: 2026-02-10 21:11:23 +0200
Change ID: nsmtlqttzvuwqooxopnnsqqzqzyurpqu
Parent: 7e01897
M web/static/style.css
路路路
        60
        60
           border-bottom: 0;

      
        61
        61
         }

      
        62
        62
         

      
        63
        
        -a:hover {

      
        64
        
        -  border-bottom: 1.5px solid var(--gray);

      
        65
        
        -}

      
        
        63
        +a:hover { border-bottom: 1.5px solid var(--gray); }

      
        
        64
        +.link { border-bottom: 1.5px solid var(--medium-gray); }

      
        66
        65
         

      
        67
        66
         pre {

      
        68
        67
           font-family: var(--mono-font);

      
M web/templates/repo_commit.html
路路路
        35
        35
                     <strong>Parent:</strong>

      
        36
        36
                     {{ range $i, $p := .parents -}}

      
        37
        37
                     {{ if $i }}, {{ end -}}

      
        38
        
        -            <a href="/{{ $.name }}/commit/{{ $p }}">{{ $p }}</a>

      
        
        38
        +            <a class="link" href="/{{ $.name }}/commit/{{ $p }}">{{ $p }}</a>

      
        39
        39
                     {{- end }}

      
        40
        40
                   </div>

      
        41
        41
                 </div>

      
M web/templates/repo_index.html
路路路
        18
        18
                   {{ range .commits }}

      
        19
        19
                   <div class="box">

      
        20
        20
                     <div>

      
        21
        
        -              <a href="/{{ $repo }}/commit/{{ .Hash }}" class="commit-hash">{{ .HashShort }}</a>

      
        
        21
        +              <a href="/{{ $repo }}/commit/{{ .Hash }}" class="commit-hash link">{{ .HashShort }}</a>

      
        22
        22
                       &mdash; {{ .AuthorName }}

      
        23
        23
                       <span class="commit-date commit-info age">

      
        24
        24
                         {{ .Committed.Format "Mon, 02 Jan 2006" }}