diff options
author | Gusted <williamzijl7@hotmail.com> | 2022-04-26 20:31:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 16:31:58 -0400 |
commit | 89eec15dd90e50c36051eb3f6a2ed2616c513ad8 (patch) | |
tree | e07bb446bf9d80e9e17db2e526052e425d135a34 /templates/repo | |
parent | d71df01077fbd9366e38150e0b037008c3f808de (diff) | |
download | gitea-89eec15dd90e50c36051eb3f6a2ed2616c513ad8.tar.gz gitea-89eec15dd90e50c36051eb3f6a2ed2616c513ad8.zip |
By default force vertical tabs on mobile (#19486)
* By default force vertical tabs on mobile
- While experimenting with using vertical tabs instead of horizontal
tabs on gitea for a better mobile experience, I made a recent
PR(https://github.com/go-gitea/gitea/pull/19468) in order to see if
there was any objections to this new behavior for the repo headers(one
of the most annoying horizontal tabs). This PR had no objections and
even a user commenting that this change is brilliant.
- This PR now improves upon the previous PR by making this the de-facto
behavior for all menu's on mobile. The only exemption is the navbar
which also uses the menu but caught some layout errors with the changes.
* Fix organisation
* Fix repo/wiki buttons
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/header.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/home.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/wiki/view.tmpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index 588cfc7717..624eb17a5e 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -145,7 +145,7 @@ </div><!-- end grid --> </div><!-- end container --> {{end}} - <div class="ui tabs container repo-header-container"> + <div class="ui tabs container"> {{if not (or .Repository.IsBeingCreated .Repository.IsBroken)}} <div class="ui tabular stackable menu navbar"> {{if .Permission.CanRead $.UnitTypeCode}} diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index c146f474ee..afdb176bba 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -60,7 +60,7 @@ </div> {{end}} {{template "repo/sub_menu" .}} - <div class="ui stackable secondary menu mobile--margin-between-items mobile--no-negative-margins"> + <div class="ui stackable secondary menu mobile--margin-between-items mobile--no-negative-margins no-vertical-tabs"> {{template "repo/branch_dropdown" dict "root" .}} {{ $n := len .TreeNames}} {{ $l := Subtract $n 1}} diff --git a/templates/repo/wiki/view.tmpl b/templates/repo/wiki/view.tmpl index ce1b00b4f2..04faa90b9e 100644 --- a/templates/repo/wiki/view.tmpl +++ b/templates/repo/wiki/view.tmpl @@ -3,7 +3,7 @@ {{template "repo/header" .}} {{ $title := .title}} <div class="ui container"> - <div class="ui stackable secondary menu mobile--margin-between-items mobile--no-negative-margins"> + <div class="ui stackable secondary menu mobile--margin-between-items mobile--no-negative-margins no-vertical-tabs"> <div class="fitted item"> <div class="choose page"> <div class="ui floating filter dropdown" data-no-results="{{.i18n.Tr "repo.pulls.no_results"}}"> |