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
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-04-22 17:01:59 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-04-22 17:01:59 +0400
commit71819dc344a032eb4a7d001c25d096fa959180e6 (patch)
tree36217c3c5c9b89e7694ac0da3bf78a6d06181d56
parentae565d24ee6c0d1f26bc47b3419ca2b58474d7a3 (diff)
logo changed for header
-rw-r--r--app/assets/images/logo_text.pngbin0 -> 4602 bytes
-rw-r--r--app/assets/stylesheets/ui_basic.scss14
-rw-r--r--app/views/layouts/_head_panel.html.haml1
3 files changed, 13 insertions, 2 deletions
diff --git a/app/assets/images/logo_text.png b/app/assets/images/logo_text.png
new file mode 100644
index 00000000000..c74663930e4
--- /dev/null
+++ b/app/assets/images/logo_text.png
Binary files differ
diff --git a/app/assets/stylesheets/ui_basic.scss b/app/assets/stylesheets/ui_basic.scss
index fc4a108c0f5..1666bcde37e 100644
--- a/app/assets/stylesheets/ui_basic.scss
+++ b/app/assets/stylesheets/ui_basic.scss
@@ -50,7 +50,9 @@
float:left;
h1 {
- background: url('logo_basic.png') no-repeat -3px -4px;
+ text-indent:-9999px;
+ width:102px;
+ background: url('logo_text.png') no-repeat 0px -3px;
float:left;
margin-left:5px;
font-size:20px;
@@ -59,9 +61,17 @@
color:#aaa;
text-shadow: 0 1px 1px #FFF;
padding-left:50px;
- padding-top:5px;
}
}
+ .separator {
+ margin-left:20px;
+ float: left;
+ height: 60px;
+ width: 1px;
+ background: white;
+ border-left: 1px solid #DDD;
+ margin-top: -10px;
+ }
}
.container {
.top_panel_content {
diff --git a/app/views/layouts/_head_panel.html.haml b/app/views/layouts/_head_panel.html.haml
index 362992adb3c..5d09b5bc7eb 100644
--- a/app/views/layouts/_head_panel.html.haml
+++ b/app/views/layouts/_head_panel.html.haml
@@ -6,6 +6,7 @@
= link_to root_path, :class => "home", :title => "Home" do
%h1
GITLAB
+ %span.separator
%h1.project_name= title
.search
= form_tag search_path, :method => :get do |f|