mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	There is a known issue where scrolling to the bottom of the page is
affected by unknown elements in the footer area:
24145f8110/templates/base/footer.tmpl (L11-L18)

			
			
This commit is contained in:
		@@ -17,7 +17,7 @@
 | 
				
			|||||||
		{{template "repo/code/recently_pushed_new_branches" .}}
 | 
							{{template "repo/code/recently_pushed_new_branches" .}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		<div class="repo-view-container">
 | 
							<div class="repo-view-container">
 | 
				
			||||||
			<div class="repo-view-file-tree-container not-mobile {{if not .UserSettingCodeViewShowFileTree}}tw-hidden{{end}}" {{if .IsSigned}}data-user-is-signed-in{{end}}>
 | 
								<div class="tw-flex tw-flex-col repo-view-file-tree-container not-mobile {{if not .UserSettingCodeViewShowFileTree}}tw-hidden{{end}}" {{if .IsSigned}}data-user-is-signed-in{{end}}>
 | 
				
			||||||
				{{template "repo/view_file_tree" .}}
 | 
									{{template "repo/view_file_tree" .}}
 | 
				
			||||||
			</div>
 | 
								</div>
 | 
				
			||||||
			<div class="repo-view-content">
 | 
								<div class="repo-view-content">
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -58,6 +58,11 @@
 | 
				
			|||||||
  flex: 0 0 15%;
 | 
					  flex: 0 0 15%;
 | 
				
			||||||
  min-width: 0;
 | 
					  min-width: 0;
 | 
				
			||||||
  max-height: 100vh;
 | 
					  max-height: 100vh;
 | 
				
			||||||
 | 
					  position: sticky;
 | 
				
			||||||
 | 
					  top: 0;
 | 
				
			||||||
 | 
					  bottom: 0;
 | 
				
			||||||
 | 
					  height: 100%;
 | 
				
			||||||
 | 
					  overflow-y: hidden;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.repo-view-content {
 | 
					.repo-view-content {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user