diff options
author | Dimitrie Hoekstra <dimitrie@gitlab.com> | 2018-08-13 15:49:27 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-08-13 15:49:27 +0000 |
commit | 994cc25b61909825de09a04ff24feac11d1ff333 (patch) | |
tree | c74b55b674723ffc62fcd1d664f6f42ba70036d9 /app/assets | |
parent | 72f7312416e2006d9d5472a0e5e0c38da966aa80 (diff) | |
download | gitlab-ce-994cc25b61909825de09a04ff24feac11d1ff333.tar.gz |
Improve visuals of language bar on projects
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/pages/projects.scss | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/projects.scss b/app/assets/stylesheets/pages/projects.scss index 6eaa0523387..6d9f415e869 100644 --- a/app/assets/stylesheets/pages/projects.scss +++ b/app/assets/stylesheets/pages/projects.scss @@ -754,8 +754,19 @@ } .repository-languages-bar { - height: 6px; - margin-bottom: 8px; + height: 8px; + margin-bottom: $gl-padding-8; + background-color: $white-light; + border-radius: $border-radius-default; + + .progress-bar { + margin-right: 2px; + padding: 0 $gl-padding-4; + + &:last-child { + margin-right: 0; + } + } } pre.light-well { |