aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorKN4CK3R <admin@oldschoolhack.me>2023-05-02 09:59:31 +0200
committerGitHub <noreply@github.com>2023-05-02 09:59:31 +0200
commitdf00ccacc9a4840fe86bed75a77841f8801d11d2 (patch)
treee6cbca26ebac5a020d9d1e356d784d65e4653070 /templates
parentda65b7ad47e8d0d82f47cb24ee9ac2a0ec50dc25 (diff)
downloadgitea-df00ccacc9a4840fe86bed75a77841f8801d11d2.tar.gz
gitea-df00ccacc9a4840fe86bed75a77841f8801d11d2.zip
Fix invite display (#24447)
Regression of #23901 Before ![grafik](https://user-images.githubusercontent.com/1666336/235371271-f4d06df5-97a0-43bc-b905-5fcdc5666b29.png) After ![grafik](https://user-images.githubusercontent.com/1666336/235371311-5c03003e-b628-4721-93a6-4e2b1ada4d87.png) --------- Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'templates')
-rw-r--r--templates/org/team/members.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/org/team/members.tmpl b/templates/org/team/members.tmpl
index 308083fdb7..f1ccbc0124 100644
--- a/templates/org/team/members.tmpl
+++ b/templates/org/team/members.tmpl
@@ -49,12 +49,12 @@
<h4 class="ui top attached header">{{$.locale.Tr "org.teams.invite_team_member.list"}}</h4>
<div class="ui bottom attached table segment members">
{{range .Invites}}
- <div class="item">
- {{.Email}}
+ <div class="item gt-df gt-ac gt-fw">
+ <span class="gt-f1">{{.Email}}</span>
<form action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/remove_invite" method="post">
{{$.CsrfTokenHtml}}
<input type="hidden" name="iid" value="{{.ID}}">
- <button class="ui red button gt-float-right">{{$.locale.Tr "org.members.remove"}}</button>
+ <button class="ui red button">{{$.locale.Tr "org.members.remove"}}</button>
</form>
</div>
{{end}}