Commit 71819dc344a032eb4a7d001c25d096fa959180e6

Authored by Dmitriy Zaporozhets
1 parent ae565d24

logo changed for header

app/assets/images/logo_text.png 0 → 100644

4.49 KB

app/assets/stylesheets/ui_basic.scss
... ... @@ -50,7 +50,9 @@
50 50 float:left;
51 51  
52 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 56 float:left;
55 57 margin-left:5px;
56 58 font-size:20px;
... ... @@ -59,9 +61,17 @@
59 61 color:#aaa;
60 62 text-shadow: 0 1px 1px #FFF;
61 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 76 .container {
67 77 .top_panel_content {
... ...
app/views/layouts/_head_panel.html.haml
... ... @@ -6,6 +6,7 @@
6 6 = link_to root_path, :class => "home", :title => "Home" do
7 7 %h1
8 8 GITLAB
  9 + %span.separator
9 10 %h1.project_name= title
10 11 .search
11 12 = form_tag search_path, :method => :get do |f|
... ...