Commit af82b6773b9b81cdac83afb702565207c00bad87

Authored by Dmitriy Zaporozhets
1 parent fb17234b

btn padded class

app/assets/stylesheets/common.scss
... ... @@ -370,3 +370,7 @@ table a code {
370 370 .span12 hr{
371 371 margin-top: 5px;
372 372 }
  373 +
  374 +.btn.padded {
  375 + margin-right:3px;
  376 +}
... ...
app/views/widgets/_project_member.html.haml
... ... @@ -25,9 +25,8 @@
25 25 %br
26 26 %br
27 27 - if @project.merge_requests_enabled
28   - = link_to new_project_merge_request_path(@project), :title => "New Merge Request", :class => "btn small" do
  28 + = link_to new_project_merge_request_path(@project), :title => "New Merge Request", :class => "btn small padded" do
29 29 Merge Request
30   -  
31 30 - if @project.issues_enabled
32 31 = link_to new_project_issue_path(@project), :title => "New Issue", :class => "btn small" do
33 32 Issue
... ...
app/views/wikis/show.html.haml
... ... @@ -2,7 +2,7 @@
2 2 = @wiki.title
3 3 %span.right
4 4 - if can? current_user, :write_wiki, @project
5   - = link_to history_project_wiki_path(@project, @wiki), :class => "btn small" do
  5 + = link_to history_project_wiki_path(@project, @wiki), :class => "btn small padded" do
6 6 History
7 7 = link_to edit_project_wiki_path(@project, @wiki), :class => "btn small" do
8 8 Edit
... ...