Commit 71819dc344a032eb4a7d001c25d096fa959180e6
1 parent
ae565d24
Exists in
master
and in
4 other branches
logo changed for header
Showing
3 changed files
with
13 additions
and
2 deletions
Show diff stats
4.49 KB
app/assets/stylesheets/ui_basic.scss
@@ -50,7 +50,9 @@ | @@ -50,7 +50,9 @@ | ||
50 | float:left; | 50 | float:left; |
51 | 51 | ||
52 | h1 { | 52 | h1 { |
53 | - background: url('logo_basic.png') no-repeat -3px -4px; | 53 | + text-indent:-9999px; |
54 | + width:102px; | ||
55 | + background: url('logo_text.png') no-repeat 0px -3px; | ||
54 | float:left; | 56 | float:left; |
55 | margin-left:5px; | 57 | margin-left:5px; |
56 | font-size:20px; | 58 | font-size:20px; |
@@ -59,9 +61,17 @@ | @@ -59,9 +61,17 @@ | ||
59 | color:#aaa; | 61 | color:#aaa; |
60 | text-shadow: 0 1px 1px #FFF; | 62 | text-shadow: 0 1px 1px #FFF; |
61 | padding-left:50px; | 63 | padding-left:50px; |
62 | - padding-top:5px; | ||
63 | } | 64 | } |
64 | } | 65 | } |
66 | + .separator { | ||
67 | + margin-left:20px; | ||
68 | + float: left; | ||
69 | + height: 60px; | ||
70 | + width: 1px; | ||
71 | + background: white; | ||
72 | + border-left: 1px solid #DDD; | ||
73 | + margin-top: -10px; | ||
74 | + } | ||
65 | } | 75 | } |
66 | .container { | 76 | .container { |
67 | .top_panel_content { | 77 | .top_panel_content { |
app/views/layouts/_head_panel.html.haml
@@ -6,6 +6,7 @@ | @@ -6,6 +6,7 @@ | ||
6 | = link_to root_path, :class => "home", :title => "Home" do | 6 | = link_to root_path, :class => "home", :title => "Home" do |
7 | %h1 | 7 | %h1 |
8 | GITLAB | 8 | GITLAB |
9 | + %span.separator | ||
9 | %h1.project_name= title | 10 | %h1.project_name= title |
10 | .search | 11 | .search |
11 | = form_tag search_path, :method => :get do |f| | 12 | = form_tag search_path, :method => :get do |f| |