diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-26 10:08:46 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-26 10:08:46 +0200 |
commit | c57180367c8a9e55beb378fc7d0fd3c1cc1497e5 (patch) | |
tree | a7c7ca9cb01467405caf53296dd16204dbf637da | |
parent | 02d8c0032377f0771153893cb41a604935ea73a5 (diff) | |
download | gitlab-ce-c57180367c8a9e55beb378fc7d0fd3c1cc1497e5.tar.gz |
Fix overflow on project home page for long names
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r-- | app/views/projects/show.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/show.html.haml b/app/views/projects/show.html.haml index 5e5b316d722..1f4b5839175 100644 --- a/app/views/projects/show.html.haml +++ b/app/views/projects/show.html.haml @@ -1,6 +1,6 @@ .project-home-panel .row - .span4 + .span5 %h4.project-home-title = @project.name_with_namespace - if @project.public @@ -8,7 +8,7 @@ - else %span.public-label Private - .span8 + .span7 .project-home-dropdown = render "dropdown" .form-horizontal |