mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-30 14:01:02 +00:00 
			
		
		
		
	- 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   ### After  
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			925 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			925 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{template "base/head" .}}
 | |
| 
 | |
| <input type="hidden" id="repolink" value="{{$.RepoRelPath}}">
 | |
| <input type="hidden" id="issueIndex" value="{{.Issue.Index}}"/>
 | |
| 
 | |
| <div class="page-content repository view issue pull files diff">
 | |
| 	{{template "repo/header" .}}
 | |
| 	<div class="ui container {{if .IsSplitStyle}}fluid padded{{end}}">
 | |
| 		<div class="navbar">
 | |
| 			{{template "repo/issue/navbar" .}}
 | |
| 			<div class="ui right">
 | |
| 				<a class="ui green button {{if not .PullRequestCtx.Allowed}}disabled{{end}}" href="{{.RepoLink}}/compare/{{.BranchName | PathEscapeSegments}}...{{.PullRequestCtx.HeadInfoSubURL}}">{{.locale.Tr "repo.pulls.new"}}</a>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 		<div class="ui divider"></div>
 | |
| 		{{template "repo/issue/view_title" .}}
 | |
| 		{{template "repo/pulls/tab_menu" .}}
 | |
| 		{{template "base/alert" .}}
 | |
| 		<div class="ui bottom attached tab pull active">
 | |
| 			{{template "repo/diff/box" .}}
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| {{template "base/footer" .}}
 |