Commit af82b6773b9b81cdac83afb702565207c00bad87
1 parent
fb17234b
Exists in
master
and in
4 other branches
btn padded class
Showing
3 changed files
with
6 additions
and
3 deletions
Show diff stats
app/assets/stylesheets/common.scss
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 | ... | ... |