Commit 2a37db4c9ee8353d2d576a9a7d0edf57e988634e

Authored by Dmitriy Zaporozhets
1 parent 403638b8

remove unnecessary %br and title

app/assets/stylesheets/gitlab_bootstrap/mixins.scss
... ... @@ -84,7 +84,7 @@
84 84 }
85 85  
86 86 @mixin page-title {
87   - color: #456;
  87 + color: $style_color;
88 88 font-size: 20px;
89 89 font-weight: normal;
90 90 line-height: 1.5;
... ...
app/views/projects/labels/index.html.haml
1 1 = render "projects/issues/head"
2 2  
3   -%h3.page-title
4   - Labels
5   -%br
6   -
7 3 - if @labels.present?
8 4 %ul.bordered-list.labels-table
9 5 - @labels.each do |label|
... ...
app/views/projects/milestones/index.html.haml
... ... @@ -6,7 +6,6 @@
6 6 = link_to new_project_milestone_path(@project), class: "pull-right btn btn-primary", title: "New Milestone" do
7 7 %i.icon-plus
8 8 New Milestone
9   - %br
10 9  
11 10 .row
12 11 .span3
... ...
app/views/projects/wikis/show.html.haml
... ... @@ -2,7 +2,6 @@
2 2 %h3.page-title
3 3 = @wiki.title.titleize
4 4 = render 'main_links'
5   -%br
6 5 - if @wiki.historical?
7 6 .warning_message
8 7 This is an old version of this page.
... ...