mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 04:52:40 +00:00
Remove monospaced font for revision messages
This commit is contained in:
parent
91bff38f43
commit
0e0e92b88f
1 changed files with 5 additions and 5 deletions
10
templates/pages/revisions.html
vendored
10
templates/pages/revisions.html
vendored
|
@ -41,15 +41,15 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="code overflow-auto">
|
<div class="overflow-auto">
|
||||||
{{ if $file.Truncated }}
|
{{ if $file.Truncated }}
|
||||||
<p class="m-2 ml-4 text-xs">Diff truncated because its too large to be shown</p>
|
<p class="m-2 ml-4 text-sm">Diff truncated because its too large to be shown</p>
|
||||||
{{ else if and (eq $file.Content "") (ne $file.OldFilename "") }}
|
{{ else if and (eq $file.Content "") (ne $file.OldFilename "") }}
|
||||||
<p class="m-2 ml-4 text-xs">File renamed without changes</p>
|
<p class="m-2 ml-4 text-sm">File renamed without changes</p>
|
||||||
{{ else if eq $file.Content "" }}
|
{{ else if eq $file.Content "" }}
|
||||||
<p class="m-2 ml-4 text-xs">Empty file</p>
|
<p class="m-2 ml-4 text-sm">Empty file</p>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<table class="table-code w-full whitespace-pre" data-filename="{{ $file.Filename }}" style="font-size: 0.8em; border-spacing: 0">
|
<table class="code table-code w-full whitespace-pre" data-filename="{{ $file.Filename }}" style="font-size: 0.8em; border-spacing: 0">
|
||||||
<tbody>
|
<tbody>
|
||||||
{{ $left := 0 }}
|
{{ $left := 0 }}
|
||||||
{{ $right := 0 }}
|
{{ $right := 0 }}
|
||||||
|
|
Loading…
Reference in a new issue