mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	UI: Better support for long repo names (#5932)
* UI: Make long repo names wrap less often * also adjust news feed column widths
This commit is contained in:
		@@ -2,7 +2,7 @@
 | 
				
			|||||||
{{with .Repository}}
 | 
					{{with .Repository}}
 | 
				
			||||||
	<div class="ui container">
 | 
						<div class="ui container">
 | 
				
			||||||
		<div class="ui stackable grid header-grid">
 | 
							<div class="ui stackable grid header-grid">
 | 
				
			||||||
			<div class="seven wide column">
 | 
								<div class="nine wide column">
 | 
				
			||||||
				<div class="ui huge breadcrumb">
 | 
									<div class="ui huge breadcrumb">
 | 
				
			||||||
					<i class="mega-octicon octicon-{{if .IsPrivate}}lock{{else if .IsMirror}}repo-clone{{else if .IsFork}}repo-forked{{else}}repo{{end}}"></i>
 | 
										<i class="mega-octicon octicon-{{if .IsPrivate}}lock{{else if .IsMirror}}repo-clone{{else if .IsFork}}repo-forked{{else}}repo{{end}}"></i>
 | 
				
			||||||
					<a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
 | 
										<a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
 | 
				
			||||||
@@ -14,7 +14,7 @@
 | 
				
			|||||||
				</div>
 | 
									</div>
 | 
				
			||||||
			</div>
 | 
								</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			<div class="ui nine wide right aligned column">
 | 
								<div class="ui seven wide right aligned column">
 | 
				
			||||||
				<div class="ui compact labeled button" tabindex="0">
 | 
									<div class="ui compact labeled button" tabindex="0">
 | 
				
			||||||
					<a class="ui compact button" href="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch?redirect_to={{$.Link}}">
 | 
										<a class="ui compact button" href="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch?redirect_to={{$.Link}}">
 | 
				
			||||||
						<i class="icon fa-eye{{if not $.IsWatchingRepo}}-slash{{end}}"></i>{{if $.IsWatchingRepo}}{{$.i18n.Tr "repo.unwatch"}}{{else}}{{$.i18n.Tr "repo.watch"}}{{end}}
 | 
											<i class="icon fa-eye{{if not $.IsWatchingRepo}}-slash{{end}}"></i>{{if $.IsWatchingRepo}}{{$.i18n.Tr "repo.unwatch"}}{{else}}{{$.i18n.Tr "repo.watch"}}{{end}}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,7 +4,7 @@
 | 
				
			|||||||
			<img class="ui avatar image" src="{{.GetActAvatar}}" alt="">
 | 
								<img class="ui avatar image" src="{{.GetActAvatar}}" alt="">
 | 
				
			||||||
		</div>
 | 
							</div>
 | 
				
			||||||
		<div class="ui grid">
 | 
							<div class="ui grid">
 | 
				
			||||||
			<div class="ui thirteen wide column">
 | 
								<div class="ui fourteen wide column">
 | 
				
			||||||
				<div class="{{if or (eq .GetOpType 5) (eq .GetOpType 18)}}push news{{end}}">
 | 
									<div class="{{if or (eq .GetOpType 5) (eq .GetOpType 18)}}push news{{end}}">
 | 
				
			||||||
					<p>
 | 
										<p>
 | 
				
			||||||
						<a href="{{AppSubUrl}}/{{.GetActUserName}}" title="{{.GetActFullName}}">{{.ShortActUserName}}</a>
 | 
											<a href="{{AppSubUrl}}/{{.GetActUserName}}" title="{{.GetActFullName}}">{{.ShortActUserName}}</a>
 | 
				
			||||||
@@ -87,7 +87,7 @@
 | 
				
			|||||||
					<p class="text italic light grey">{{TimeSince .GetCreate $.i18n.Lang}}</p>
 | 
										<p class="text italic light grey">{{TimeSince .GetCreate $.i18n.Lang}}</p>
 | 
				
			||||||
				</div>
 | 
									</div>
 | 
				
			||||||
			</div>
 | 
								</div>
 | 
				
			||||||
			<div class="ui three wide right aligned column">
 | 
								<div class="ui two wide right aligned column">
 | 
				
			||||||
				<i class="text grey mega-octicon octicon-{{ActionIcon .GetOpType}}"></i>
 | 
									<i class="text grey mega-octicon octicon-{{ActionIcon .GetOpType}}"></i>
 | 
				
			||||||
			</div>
 | 
								</div>
 | 
				
			||||||
		</div>
 | 
							</div>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user