diff options
author | Gary Wang <wzc782970009@gmail.com> | 2020-07-30 00:30:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-29 12:30:37 -0400 |
commit | f2a6cd6401d3d04c7b6c769d39d68262abbdaae1 (patch) | |
tree | 3720eade308b7202fb89bdd8d15bead5d7f0ae64 /templates/repo/wiki | |
parent | f220286c007badb86ee3e7e81d70149ae3c23c4c (diff) | |
download | gitea-f2a6cd6401d3d04c7b6c769d39d68262abbdaae1.tar.gz gitea-f2a6cd6401d3d04c7b6c769d39d68262abbdaae1.zip |
Fix clone panel in wiki position not always align right (#12326)
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates/repo/wiki')
-rw-r--r-- | templates/repo/wiki/view.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/wiki/view.tmpl b/templates/repo/wiki/view.tmpl index 138a84bbb4..d83f6fe6f7 100644 --- a/templates/repo/wiki/view.tmpl +++ b/templates/repo/wiki/view.tmpl @@ -3,8 +3,8 @@ {{template "repo/header" .}} {{ $title := .title}} <div class="ui container"> - <div class="ui stackable grid"> - <div class="ui ten wide column"> + <div class="ui stackable secondary menu mobile--margin-between-items mobile--no-negative-margins"> + <div class="fitted item"> <div class="choose page"> <div class="ui floating filter dropdown" data-no-results="{{.i18n.Tr "repo.pulls.no_results"}}"> <div class="ui basic small button"> @@ -28,7 +28,7 @@ </div> </div> </div> - <div class="ui six wide column"> + <div class="right fitted item"> <div class="ui action small input" id="clone-panel"> {{if not $.DisableHTTP}} <button class="ui basic clone button" id="repo-clone-https" data-link="{{.WikiCloneLink.HTTPS}}"> |