Show language name on hover (#20923)

Each repo has a bar which shows the used programming languages. If you want to know, what language is behind a color, you need to click the bar. With this PR, you just need to hover over the color the view the name.
pull/21027/head
JakobDev 2 years ago committed by GitHub
parent b8818a1c68
commit 96a9e15dff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      templates/repo/sub_menu.tmpl
  2. 2
      web_src/js/modules/tippy.js

@ -39,7 +39,7 @@
</div>
<a class="ui segment language-stats">
{{range .LanguageStats}}
<div class="bar" style="width: {{.Percentage}}%; background-color: {{.Color}}">&nbsp;</div>
<div class="bar tooltip" style="width: {{.Percentage}}%; background-color: {{.Color}}" data-placement="top" data-content={{ .Language }}>&nbsp;</div>
{{end}}
</a>
{{end}}

@ -3,7 +3,7 @@ import tippy from 'tippy.js';
export function createTippy(target, opts = {}) {
const instance = tippy(target, {
appendTo: document.body,
placement: 'top-start',
placement: target.getAttribute('data-placement') || 'top-start',
animation: false,
allowHTML: false,
maxWidth: 500, // increase over default 350px

Loading…
Cancel
Save