Commit b3a0ee8e631c3e272c8ce3b60929192d3f7f1f22

Authored by Dmitriy Zaporozhets
1 parent 15a03e1d

Fix MR tab width

app/assets/stylesheets/nav.scss
... ... @@ -79,6 +79,11 @@ nav.main_menu {
79 79 border-left:none;
80 80 }
81 81 }
  82 +
  83 + &.wide {
  84 + width:185px;
  85 + @media (min-width: 1080px) and (max-width: 1200px) { width:160px; }
  86 + }
82 87 }
83 88 }
84 89 /*
... ...
app/views/layouts/_project_menu.html.haml
... ... @@ -12,7 +12,7 @@
12 12 Issues
13 13 %span.count= @project.issues.opened.count
14 14 - if @project.merge_requests_enabled
15   - = link_to project_merge_requests_path(@project), :class => (controller.controller_name == "merge_requests") ? "current" : nil do
  15 + = link_to project_merge_requests_path(@project), :class => (controller.controller_name == "merge_requests") ? "current wide" : "wide" do
16 16 Merge Requests
17 17 %span.count= @project.merge_requests.opened.count
18 18  
... ...