mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
b4f8da533e
* Search and Diff CSS enhancements - Use flexbox for language stats - Improve labels and code boxes on repo and code search - Use flexbox on diff header and improve suppressed diff text - Add dedicated color for diff expander * more diff tweaks, less vertical padding on header * more minor tweaks * always show fold icon, image diff improvments * remove margin Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
13 lines
467 B
Handlebars
13 lines
467 B
Handlebars
<div class="ui bottom attached table segment df ac sb">
|
|
<div class="df ac ml-4">
|
|
{{if .result.Language}}
|
|
<i class="color-icon mr-3" style="background-color: {{.result.Color}}"></i>{{.result.Language}}
|
|
{{end}}
|
|
</div>
|
|
<div class="mr-4">
|
|
{{if not .result.UpdatedUnix.IsZero}}
|
|
<span class="ui grey text">{{.root.i18n.Tr "explore.code_last_indexed_at" (TimeSinceUnix .result.UpdatedUnix .root.i18n.Lang) | Safe}}</span>
|
|
{{end}}
|
|
</div>
|
|
</div>
|