Commit 065c200c33f68c2bb781e35a43f9dc8138a893b5

Authored by Dmitriy Zaporozhets
1 parent 1e8b111b

removed unnecessary hr tags & titles

app/assets/stylesheets/common.scss
... ... @@ -42,7 +42,7 @@ a {
42 42 float:left;
43 43 }
44 44 .right {
45   - float:right;
  45 + float:right !important;
46 46 }
47 47 .width-50p{
48 48 width:50%;
... ...
app/views/commits/_head.html.haml
... ... @@ -21,6 +21,12 @@
21 21 %span.number= @project.repo.tags.count
22 22  
23 23  
  24 + - if current_page?(project_commits_path(@project)) && current_user.private_token
  25 + %li.right
  26 + %span
  27 + = link_to project_commits_path(@project, :atom, { :private_token => current_user.private_token, :ref => @ref }), :class => "btn" do
  28 + feed
  29 + = image_tag "Rss-UI.PNG", :width => 14, :title => "feed"
24 30  
25 31  
26 32 :javascript
... ...
app/views/commits/index.html.haml
1 1 = render "head"
2   -%h3
3   - Commits
4   - - if current_user.private_token
5   - %span.rss-icon
6   - = link_to project_commits_path(@project, :atom, { :private_token => current_user.private_token, :ref => @ref }) do
7   - = image_tag "Rss-UI.PNG", :width => 22, :title => "feed"
8   -%hr
9 2  
10 3 - if params[:path]
11 4 %ul.breadcrumb
... ...
app/views/issues/index.html.haml
... ... @@ -8,7 +8,7 @@
8 8 - if can? current_user, :write_issue, @project
9 9 = link_to new_project_issue_path(@project), :class => "right btn small", :title => "New Issue", :remote => true do
10 10 New Issue
11   - %hr
  11 + %br
12 12 %div#issues-table-holder.ui-box
13 13 .title
14 14 .row
... ...
app/views/merge_requests/index.html.haml
... ... @@ -4,7 +4,7 @@
4 4 = link_to new_project_merge_request_path(@project), :class => "right btn small", :title => "New Merge Request" do
5 5 New Merge Request
6 6  
7   -%hr
  7 +%br
8 8  
9 9 .ui-box
10 10 .title
... ...
app/views/notes/_form.html.haml
... ... @@ -21,7 +21,7 @@
21 21 = label_tag :notify_author do
22 22 = check_box_tag :notify_author, 1 , @note.noteable_type == "Commit"
23 23 %span Commit author
24   - .span4.right
  24 + .span4
25 25 %h5 Attachment:
26 26 .clearfix
27 27 = f.label :attachment, "Any file, < 10 MB"
... ...
app/views/projects/graph.html.haml
1 1 %h3 Network Graph
2   -%hr
  2 +%br
3 3 #holder.graph.well
4 4  
5 5 :javascript
... ...
app/views/projects/show.html.haml
... ... @@ -6,7 +6,7 @@
6 6 .back_link
7 7 = link_to projects_path do
8 8 &larr; To projects list
9   -%hr
  9 +%br
10 10 .alert-message.block-message.warning
11 11 .input
12 12 .input-prepend
... ...