loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ui(blame): remove broken padding (#4318)

This padding causes visual bug, because it only applies to the first line and not to the rest in case the line is broken into multiple.
I don't think it's actually needed here for good look, so I decided to remove it. In case decreased padding looks worse, the padding can be grown back via other element so it wouldn't cause this bug.

Preview: https://codeberg.org/attachments/56fd2ee8-4955-409d-998f-1feba987b9af

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4318
Reviewed-by: Gusted <gusted@noreply.codeberg.org>

0ko aa7657c5 4c4aaea2

+1 -1
+1 -1
templates/repo/blame.tmpl
··· 78 78 </td> 79 79 {{end}} 80 80 <td rel="L{{$row.RowNumber}}" class="lines-code blame-code chroma"> 81 - <code class="code-inner tw-pl-2">{{$row.Code}}</code> 81 + <code class="code-inner">{{$row.Code}}</code> 82 82 </td> 83 83 </tr> 84 84 {{end}}