aboutsummaryrefslogtreecommitdiffstats
path: root/templates/org
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2024-01-12 22:43:40 +0800
committerGitHub <noreply@github.com>2024-01-12 14:43:40 +0000
commitad0b637d46709085cae7ed54ef8c47dec5a1446a (patch)
tree5c55f0e4efda8668bdee0c3e4364f6feee165fbe /templates/org
parent34a0684397a58c585e35307ae0d9f4362919fbac (diff)
downloadgitea-ad0b637d46709085cae7ed54ef8c47dec5a1446a.tar.gz
gitea-ad0b637d46709085cae7ed54ef8c47dec5a1446a.zip
Fix button size in "attached header right" (#28770)
Before: <details> ![image](https://github.com/go-gitea/gitea/assets/2114189/c82f8615-04d4-408f-95bf-689c227a8814) ![image](https://github.com/go-gitea/gitea/assets/2114189/d01d05a7-09ca-48f3-a0e7-fec48119b426) </details> After: ![image](https://github.com/go-gitea/gitea/assets/2114189/e560398e-2fa4-4f46-9229-f6acc70e32ab) ![image](https://github.com/go-gitea/gitea/assets/2114189/bd18961d-0636-4584-b893-c465daaf40af)
Diffstat (limited to 'templates/org')
-rw-r--r--templates/org/team/teams.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/org/team/teams.tmpl b/templates/org/team/teams.tmpl
index 830fc8a33e..f4ceada2a7 100644
--- a/templates/org/team/teams.tmpl
+++ b/templates/org/team/teams.tmpl
@@ -26,7 +26,7 @@
{{else if $.IsOrganizationOwner}}
<form method="post" action="{{$.OrgLink}}/teams/{{.LowerName | PathEscape}}/action/join">
{{$.CsrfTokenHtml}}
- <button type="submit" class="ui primary small button" name="uid" value="{{$.SignedUser.ID}}">{{ctx.Locale.Tr "org.teams.join"}}</button>
+ <button type="submit" class="ui primary tiny button" name="uid" value="{{$.SignedUser.ID}}">{{ctx.Locale.Tr "org.teams.join"}}</button>
</form>
{{end}}
</div>