mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Don't stack PR tab menu on small screens (#25789)
the stacking takes up screen space - display the tabs as the navigation bar. github uses the same layout. Screenshots (left before, right after):   Large screen: 
This commit is contained in:
		@@ -1,4 +1,5 @@
 | 
			
		||||
<div class="ui top attached pull tabular stackable menu">
 | 
			
		||||
<div class="ui pull tabs container">
 | 
			
		||||
	<div class="ui top attached pull tabular menu">
 | 
			
		||||
		<a class="item {{if .PageIsPullConversation}}active{{end}}" href="{{.Issue.Link}}">
 | 
			
		||||
			{{svg "octicon-comment-discussion"}}
 | 
			
		||||
			{{$.locale.Tr "repo.pulls.tab_conversation"}}
 | 
			
		||||
@@ -21,3 +22,5 @@
 | 
			
		||||
			</span>
 | 
			
		||||
		</span>
 | 
			
		||||
	</div>
 | 
			
		||||
	<div class="ui tabs divider"></div>
 | 
			
		||||
</div>
 | 
			
		||||
 
 | 
			
		||||
@@ -747,8 +747,15 @@
 | 
			
		||||
  right: 1px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.repository.view.issue .pull.tabs.container {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  max-width: 100%;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.repository.view.issue .pull.tabular.menu {
 | 
			
		||||
  margin-bottom: 1rem;
 | 
			
		||||
  margin-bottom: 0;
 | 
			
		||||
  overflow-x: auto;
 | 
			
		||||
  overflow-y: hidden;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.repository.view.issue .pull.tabular.menu .svg {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user