Merge branch '#51457-Show-percentage-of-language-detection-on-the-language-bar' into 'master'

Show percentage of language detection on the language bar

Closes #51457

See merge request https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/22056
This commit is contained in:
Rémy Coutable 2018-10-04 10:26:44 +00:00
commit 1fd648fab3
3 changed files with 15 additions and 1 deletions

View File

@ -830,6 +830,14 @@
}
}
.repository-language-bar-tooltip-language {
font-weight: $gl-font-weight-bold;
}
.repository-language-bar-tooltip-share {
color: $theme-gray-400;
}
pre.light-well {
border-color: $well-light-border;
}

View File

@ -13,6 +13,7 @@ module RepositoryLanguagesHelper
content_tag :div, nil,
class: "progress-bar has-tooltip",
style: "width: #{lang.share}%; background-color:#{lang.color}",
title: lang.name
data: { html: true },
title: "<span class=\"repository-language-bar-tooltip-language\">#{escape_javascript(lang.name)}</span>&nbsp;<span class=\"repository-language-bar-tooltip-share\">#{lang.share.round(1)}%</span>"
end
end

View File

@ -0,0 +1,5 @@
---
title: Show percentage of language detection on the language bar
merge_request: 22056
author: Johann Hubert Sonntagbauer
type: added