forked from gitea/gitea
		
	 2ac112d84e
			
		
	
	
		2ac112d84e
		
			
		
	
	
	
	
		
			
			* Comment box tweaks and SVG dropdown triangles - Change all dropdown triangles to SVG - Bring inline review comment box closer to regular comment boxes - Enhance arc-green checkbox contrast - Minor reaction tweaks - Flexbox the diff file header * remove a border * fix type marker in arc-green * add small code padding * fix position regression and remove useless rules Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			71 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| <div class="dashboard-navbar">
 | |
| 	<div class="ui secondary stackable menu">
 | |
| 		<div class="item">
 | |
| 			<div class="ui floating dropdown link jump">
 | |
| 				<span class="text">
 | |
| 					<img class="ui avatar image" src="{{.ContextUser.RelAvatarLink}}" title="{{.ContextUser.Name}}" width="28" height="28">
 | |
| 					{{.ContextUser.ShortName 20}}
 | |
| 					{{if .ContextUser.IsOrganization}}
 | |
| 						<span class="org-visibility">
 | |
| 							{{if .ContextUser.Visibility.IsLimited}}<div class="ui orange tiny horizontal label">{{.i18n.Tr "org.settings.visibility.limited_shortname"}}</div>{{end}}
 | |
| 							{{if .ContextUser.Visibility.IsPrivate}}<div class="ui red tiny horizontal label">{{.i18n.Tr "org.settings.visibility.private_shortname"}}</div>{{end}}
 | |
| 						</span>
 | |
| 					{{end}}
 | |
| 					{{svg "octicon-triangle-down" 14 "dropdown icon"}}
 | |
| 				</span>
 | |
| 				<div class="context user overflow menu" tabindex="-1">
 | |
| 					<div class="ui header">
 | |
| 						{{.i18n.Tr "home.switch_dashboard_context"}}
 | |
| 					</div>
 | |
| 					<div class="scrolling menu items">
 | |
| 						<a class="{{if eq .ContextUser.ID .SignedUser.ID}}active selected{{end}} item" href="{{AppSubUrl}}/{{if .PageIsIssues}}issues{{else if .PageIsPulls}}pulls{{else if .PageIsMilestonesDashboard}}milestones{{end}}">
 | |
| 							<img class="ui avatar image" src="{{.SignedUser.RelAvatarLink}}" width="28" height="28">
 | |
| 							{{.SignedUser.Name}}
 | |
| 						</a>
 | |
| 						{{range .Orgs}}
 | |
| 							<a class="{{if eq $.ContextUser.ID .ID}}active selected{{end}} item" title="{{.Name}}" href="{{AppSubUrl}}/org/{{.Name}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else if $.PageIsMilestonesDashboard}}milestones{{else}}dashboard{{end}}">
 | |
| 								<img class="ui avatar image" src="{{.RelAvatarLink}}" width="28" height="28">
 | |
| 								{{.ShortName 20}}
 | |
| 								<span class="org-visibility">
 | |
| 									{{if .Visibility.IsLimited}}<div class="ui orange tiny horizontal label">{{$.i18n.Tr "org.settings.visibility.limited_shortname"}}</div>{{end}}
 | |
| 									{{if .Visibility.IsPrivate}}<div class="ui red tiny horizontal label">{{$.i18n.Tr "org.settings.visibility.private_shortname"}}</div>{{end}}
 | |
| 								</span>
 | |
| 							</a>
 | |
| 						{{end}}
 | |
| 					</div>
 | |
| 					{{if .SignedUser.CanCreateOrganization}}
 | |
| 					<a class="item" href="{{AppSubUrl}}/org/create">
 | |
| 						{{svg "octicon-plus"}}   {{.i18n.Tr "new_org"}}
 | |
| 					</a>
 | |
| 					{{end}}
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 
 | |
| 		{{if .ContextUser.IsOrganization}}
 | |
| 			<div class="right stackable menu">
 | |
| 				<a class="{{if .PageIsNews}}active{{end}} item" style="margin-left: auto" href="{{AppSubUrl}}/org/{{.ContextUser.Name}}/dashboard">
 | |
| 					{{svg "octicon-rss"}} {{.i18n.Tr "activities"}}
 | |
| 				</a>
 | |
| 				<a class="{{if .PageIsIssues}}active{{end}} item" href="{{AppSubUrl}}/org/{{.ContextUser.Name}}/issues">
 | |
| 					{{svg "octicon-issue-opened"}} {{.i18n.Tr "issues"}}
 | |
| 				</a>
 | |
| 				<a class="{{if .PageIsPulls}}active{{end}} item" href="{{AppSubUrl}}/org/{{.ContextUser.Name}}/pulls">
 | |
| 					{{svg "octicon-git-pull-request"}} {{.i18n.Tr "pull_requests"}}
 | |
| 				</a>
 | |
| 				{{if .ShowMilestonesDashboardPage}}
 | |
| 					<a class="{{if .PageIsMilestonesDashboard}}active{{end}} item" href="{{AppSubUrl}}/org/{{.ContextUser.Name}}/milestones">
 | |
| 						{{svg "octicon-milestone"}} {{.i18n.Tr "milestones"}}
 | |
| 					</a>
 | |
| 				{{end}}
 | |
| 				<div class="item">
 | |
| 					<a class="ui blue basic button" href="{{.ContextUser.HomeLink}}" title='{{.i18n.Tr "home.view_home" .ContextUser.Name}}'>
 | |
| 						{{.i18n.Tr "home.view_home" (.ContextUser.ShortName 10)}}
 | |
| 					</a>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		{{end}}
 | |
| 	</div>
 | |
| </div>
 | |
| <div class="ui divider"></div>
 |