 abdebd2641
			
		
	
	
	
	
	abdebd2641* Rework repo buttons - Replace "New PR" and "Go to File" button with Icon Button - Move all "Add File" actions into a dropdown button - Remove most custom styling of clone buttons - Margin and wiki tweaks Buttons are now all equal height, mobile layout wraps gracefully. Fixes: https://github.com/go-gitea/gitea/issues/13671 Replaces: https://github.com/go-gitea/gitea/pull/20375 Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			591 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			591 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{template "base/head" .}}
 | |
| <div class="page-content repository commits">
 | |
| 	{{template "repo/header" .}}
 | |
| 	<div class="ui container">
 | |
| 		{{template "repo/sub_menu" .}}
 | |
| 		<div class="repo-button-row df ac sb fw mb-4 mt-3">
 | |
| 			<div class="df ac">
 | |
| 				{{template "repo/branch_dropdown" dict "root" .}}
 | |
| 				<a href="{{.RepoLink}}/graph" class="ui basic small compact button">
 | |
| 					<span class="text">
 | |
| 						{{svg "octicon-git-branch"}}
 | |
| 					</span>
 | |
| 					{{.locale.Tr "repo.commit_graph"}}
 | |
| 				</a>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 		{{template "repo/commits_table" .}}
 | |
| 	</div>
 | |
| </div>
 | |
| {{template "base/footer" .}}
 |