diff options
author | Kerwin Bryant <kerwin612@qq.com> | 2024-06-07 07:49:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-06 23:49:53 +0000 |
commit | ab1948d4a30aee919ba1ffc2402a2a9a7222e68c (patch) | |
tree | 2e34bf88bd2a34aaddc241777f439bea1b7c3285 | |
parent | 8e337467464ea1d3cedcdf50c9e8419e53add097 (diff) | |
download | gitea-ab1948d4a30aee919ba1ffc2402a2a9a7222e68c.tar.gz gitea-ab1948d4a30aee919ba1ffc2402a2a9a7222e68c.zip |
fixed the dropdown menu for the top New button to expand to the left (#31273)
before:

after:

-rw-r--r-- | templates/base/head_navbar.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base/head_navbar.tmpl b/templates/base/head_navbar.tmpl index 7a3e663c49..2b52247303 100644 --- a/templates/base/head_navbar.tmpl +++ b/templates/base/head_navbar.tmpl @@ -104,7 +104,7 @@ <span class="not-mobile">{{svg "octicon-triangle-down"}}</span> <span class="only-mobile">{{ctx.Locale.Tr "create_new"}}</span> </span> - <div class="menu"> + <div class="menu left"> <a class="item" href="{{AppSubUrl}}/repo/create"> {{svg "octicon-plus"}} {{ctx.Locale.Tr "new_repo"}} </a> |