mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04:00
226a82a939
Enable us to use tailwind's [`font-family`](https://tailwindcss.com/docs/font-family) classes as well as remove `gt-mono` in favor of `tw-font-mono`. I also merged the "compensation" to one selector, previously this was two different values 0.9em and 0.95em. I did not declare a `serif` font because I don't think there will ever be a use case for those. Command ran: ```sh perl -p -i -e 's#gt-mono#tw-font-mono#g' web_src/js/**/* templates/**/*
49 lines
1.2 KiB
Handlebars
49 lines
1.2 KiB
Handlebars
<div class="file-info text grey normal tw-font-mono">
|
|
{{if .FileIsSymlink}}
|
|
<div class="file-info-entry">
|
|
{{ctx.Locale.Tr "repo.symbolic_link"}}
|
|
</div>
|
|
{{end}}
|
|
{{if .NumLinesSet}}{{/* Explicit attribute needed to show 0 line changes */}}
|
|
<div class="file-info-entry">
|
|
{{.NumLines}} {{ctx.Locale.TrN .NumLines "repo.line" "repo.lines"}}
|
|
</div>
|
|
{{end}}
|
|
{{if .FileSize}}
|
|
<div class="file-info-entry">
|
|
{{FileSize .FileSize}}{{if .IsLFSFile}} ({{ctx.Locale.Tr "repo.stored_lfs"}}){{end}}
|
|
</div>
|
|
{{end}}
|
|
{{if .LFSLock}}
|
|
<div class="file-info-entry ui" data-tooltip-content="{{.LFSLockHint}}">
|
|
{{svg "octicon-lock" 16 "tw-mr-1"}}
|
|
<a href="{{.LFSLockOwnerHomeLink}}">{{.LFSLockOwner}}</a>
|
|
</div>
|
|
{{end}}
|
|
{{if .LexerName}}
|
|
<div class="file-info-entry">
|
|
{{.LexerName}}
|
|
</div>
|
|
{{end}}
|
|
{{if .IsExecutable}}
|
|
<div class="file-info-entry">
|
|
{{ctx.Locale.Tr "repo.executable_file"}}
|
|
</div>
|
|
{{end}}
|
|
{{if .IsVendored}}
|
|
<div class="file-info-entry">
|
|
{{ctx.Locale.Tr "repo.vendored"}}
|
|
</div>
|
|
{{end}}
|
|
{{if .IsGenerated}}
|
|
<div class="file-info-entry">
|
|
{{ctx.Locale.Tr "repo.generated"}}
|
|
</div>
|
|
{{end}}
|
|
{{if .ImageSize}}
|
|
<div class="file-info-entry">
|
|
{{.ImageSize}}
|
|
</div>
|
|
{{end}}
|
|
</div>
|