From 3a4801d1958ce33c9b893433c096281aa5b9b1c5 Mon Sep 17 00:00:00 2001 From: vnkmpf <t.z@mail.com> Date: Tue, 9 Feb 2021 20:51:01 +0100 Subject: Truncated organisations name #14583 (#14615) - truncate to max length 40 - add CSS ellipsis --- templates/user/dashboard/navbar.tmpl | 8 ++++---- templates/user/project.tmpl | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'templates/user') diff --git a/templates/user/dashboard/navbar.tmpl b/templates/user/dashboard/navbar.tmpl index 70eb7cce7f..c83ffde40a 100644 --- a/templates/user/dashboard/navbar.tmpl +++ b/templates/user/dashboard/navbar.tmpl @@ -4,7 +4,7 @@ <div class="ui floating dropdown link jump"> <span class="text"> {{avatar .ContextUser}} - {{.ContextUser.ShortName 20}} + {{.ContextUser.ShortName 40}} {{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}} @@ -20,12 +20,12 @@ <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}}"> {{avatar .SignedUser}} - {{.SignedUser.ShortName 20}} + {{.SignedUser.ShortName 40}} </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}}"> {{avatar .}} - {{.ShortName 20}} + {{.ShortName 40}} <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}} @@ -94,7 +94,7 @@ {{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 20)}} + {{.i18n.Tr "home.view_home" (.ContextUser.ShortName 40)}} </a> </div> </div> diff --git a/templates/user/project.tmpl b/templates/user/project.tmpl index b444783dbb..eabed943fe 100644 --- a/templates/user/project.tmpl +++ b/templates/user/project.tmpl @@ -15,18 +15,18 @@ <input type="hidden" id="uid" name="uid" value="{{.ContextUser.ID}}" required> <span class="text" title="{{.ContextUser.Name}}"> {{avatar .ContextUser 28 "mini"}} - {{.ContextUser.ShortName 20}} + {{.ContextUser.ShortName 40}} </span> {{svg "octicon-triangle-down" 14 "dropdown icon"}} <div class="menu"> <div class="item" data-value="{{.SignedUser.ID}}" title="{{.SignedUser.Name}}"> {{avatar .SignedUser 28 "mini"}} - {{.SignedUser.ShortName 20}} + {{.SignedUser.ShortName 40}} </div> {{range .Orgs}} <div class="item" data-value="{{.ID}}" title="{{.Name}}"> {{avatar . 28 "mini"}} - {{.ShortName 20}} + {{.ShortName 40}} </div> {{end}} </div> -- cgit v1.2.3