mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
ffa4949eaa
1. There is already `gt-ac`, so no need to introduce `flex-item-center` 2. The `flex-item-baseline` and `.flex-item-icon svg { margin-top: 1px }` seem to be a tricky patch, they don't resolve the root problem, and still cause misalignment in some cases. * The root problem is: the "icon" needs to align with the sibling "title" * So, make the "icon" and the "title" both have the same height 3. `flex-text-inline` could only be used if the element is really "inline", otherwise its `vertical-align` would make the box size change. In most cases, `flex-text-block` is good enough. ![image](https://github.com/go-gitea/gitea/assets/2114189/1b7acfc2-b1c7-4e9c-a983-2fa932026479) --------- Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Giteabot <teabot@gitea.io>
31 lines
1.1 KiB
Go HTML Template
31 lines
1.1 KiB
Go HTML Template
<div class="flex-list">
|
|
{{range .Users}}
|
|
<div class="flex-item gt-ac">
|
|
<div class="flex-item-leading">
|
|
{{ctx.AvatarUtils.Avatar . 48}}
|
|
</div>
|
|
<div class="flex-item-main">
|
|
<div class="flex-item-title">
|
|
{{template "shared/user/name" .}}
|
|
{{if .Visibility.IsPrivate}}
|
|
<span class="ui basic tiny label">{{ctx.Locale.Tr "repo.desc.private"}}</span>
|
|
{{end}}
|
|
</div>
|
|
<div class="flex-item-body">
|
|
{{if .Location}}
|
|
<span class="flex-text-inline">{{svg "octicon-location"}}{{.Location}}</span>
|
|
{{end}}
|
|
{{if and .Email (or (and $.ShowUserEmail $.IsSigned (not .KeepEmailPrivate)) $.PageIsAdminUsers)}}
|
|
<span class="flex-text-inline">
|
|
{{svg "octicon-mail"}}
|
|
<a href="mailto:{{.Email}}">{{.Email}}</a>
|
|
</span>
|
|
{{end}}
|
|
<span class="flex-text-inline">{{svg "octicon-calendar"}}{{ctx.Locale.Tr "user.joined_on" (DateTime "short" .CreatedUnix) | Safe}}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
<div class="flex-item">{{ctx.Locale.Tr "explore.user_no_results"}}</div>
|
|
{{end}}
|
|
</div>
|