Commit c57180367c8a9e55beb378fc7d0fd3c1cc1497e5
1 parent
02d8c003
Exists in
master
and in
4 other branches
Fix overflow on project home page for long names
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/views/projects/show.html.haml
1 | 1 | .project-home-panel |
2 | 2 | .row |
3 | - .span4 | |
3 | + .span5 | |
4 | 4 | %h4.project-home-title |
5 | 5 | = @project.name_with_namespace |
6 | 6 | - if @project.public |
... | ... | @@ -8,7 +8,7 @@ |
8 | 8 | - else |
9 | 9 | %span.public-label Private |
10 | 10 | |
11 | - .span8 | |
11 | + .span7 | |
12 | 12 | .project-home-dropdown |
13 | 13 | = render "dropdown" |
14 | 14 | .form-horizontal | ... | ... |