Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-26 12:08:46 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-26 12:08:46 +0400
commitc57180367c8a9e55beb378fc7d0fd3c1cc1497e5 (patch)
treea7c7ca9cb01467405caf53296dd16204dbf637da /app
parent02d8c0032377f0771153893cb41a604935ea73a5 (diff)
Fix overflow on project home page for long names
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app')
-rw-r--r--app/views/projects/show.html.haml4
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