all repos

mugit @ 43a8458

馃惍 git server that your cow will love
2 files changed, 3 insertions(+), 3 deletions(-)
ui: fix line number color
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-03-12 14:05:57 +0200
Authored at: 2026-03-12 14:04:16 +0200
Change ID: nsoxloktmrovutmtkvnosvooxkkrlttt
Parent: afcfaf3
M web/static/style.css
路路路
        218
        218
         .line-number {

      
        219
        219
           width: 1%;

      
        220
        220
           user-select: none;

      
        
        221
        +  text-align: right;

      
        221
        222
           -webkit-user-select: none;

      
        222
        223
           -moz-user-select: none;

      
        223
        224
           -khtml-user-select: none;

      
        224
        225
           -o-user-select: none;

      
        225
        
        -  text-align: right;

      
        226
        
        -  color: var(--gray);

      
        227
        226
         }

      
        228
        227
         

      
        229
        228
         .line-number a:hover { border-bottom: none; }

      
        230
        229
         .line-number a {

      
        
        230
        +  color: var(--gray);

      
        231
        231
           display: block;

      
        232
        232
           padding: 0 1rem;

      
        233
        233
           text-decoration: none;

      
M web/templates/repo_file.html
路路路
        33
        33
                   <tbody>

      
        34
        34
                     {{- range $i, $l := .P.Lines }}

      
        35
        35
                     <tr class="line">

      
        36
        
        -              <td class="line-number">

      
        
        36
        +              <td class="line-number mono">

      
        37
        37
                         <a id="L{{ inc $i }}" href="#L{{ inc $i }}" aria>{{ inc $i }}</a>

      
        38
        38
                       </td>

      
        39
        39
                       <td><pre>{{ $l }}</pre></td>