diff options
author | Gusted <williamzijl7@hotmail.com> | 2022-10-19 14:48:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-19 15:48:29 +0100 |
commit | 6b712465a815d0da51ca7d33289610eaef0887ad (patch) | |
tree | fadad13ba8922df47199ada8144a259fba6ef890 /templates | |
parent | c3b2e44392e7f6c9a77a46664788c0bb9a6f33cb (diff) | |
download | gitea-6b712465a815d0da51ca7d33289610eaef0887ad.tar.gz gitea-6b712465a815d0da51ca7d33289610eaef0887ad.zip |
Revert increased width on pull pages (#21470)
- Revert a behavior from #21012, which liberally added `fluid padded` to
non-split style pull pages, this caused it to take up the whole
screen(such in split-style pull pages) on pull pages where the diff was
shown.
- Resolves #21460
### Before
![image](https://user-images.githubusercontent.com/25481501/196005545-bb8370c1-330d-4d47-be52-6d0c93e61583.png)
![image](https://user-images.githubusercontent.com/25481501/196005546-0022198e-6ef7-45d1-958c-77a042e5f80b.png)
### After
![image](https://user-images.githubusercontent.com/25481501/196005572-76a38309-9a41-412a-854f-24eae2b9ae4f.png)
![image](https://user-images.githubusercontent.com/25481501/196005551-2495b93d-ad08-4f59-abba-c327dadcc915.png)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/commit_page.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/diff/compare.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/pulls/files.tmpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/commit_page.tmpl b/templates/repo/commit_page.tmpl index da37aaa9b3..8ece768832 100644 --- a/templates/repo/commit_page.tmpl +++ b/templates/repo/commit_page.tmpl @@ -1,7 +1,7 @@ {{template "base/head" .}} <div class="page-content repository diff"> {{template "repo/header" .}} - <div class="ui container fluid padded"> + <div class="ui container {{if .IsSplitStyle}}fluid padded{{end}}"> {{$class := ""}} {{if .Commit.Signature}} {{$class = (printf "%s%s" $class " isSigned")}} diff --git a/templates/repo/diff/compare.tmpl b/templates/repo/diff/compare.tmpl index e0e6837203..029e7717a4 100644 --- a/templates/repo/diff/compare.tmpl +++ b/templates/repo/diff/compare.tmpl @@ -1,7 +1,7 @@ {{template "base/head" .}} <div class="page-content repository diff {{if .PageIsComparePull}}compare pull{{end}}"> {{template "repo/header" .}} - <div class="ui container fluid padded"> + <div class="ui container {{if .IsSplitStyle}}fluid padded{{end}}"> <h2 class="ui header"> {{if and $.PageIsComparePull $.IsSigned (not .Repository.IsArchived)}} diff --git a/templates/repo/pulls/files.tmpl b/templates/repo/pulls/files.tmpl index 7b72f7f815..9b24000002 100644 --- a/templates/repo/pulls/files.tmpl +++ b/templates/repo/pulls/files.tmpl @@ -5,7 +5,7 @@ <div class="page-content repository view issue pull files diff"> {{template "repo/header" .}} - <div class="ui container fluid padded"> + <div class="ui container {{if .IsSplitStyle}}fluid padded{{end}}"> <div class="navbar"> {{template "repo/issue/navbar" .}} <div class="ui right"> |