Commit 341b4414ea0e0b289089f1895e61e0c14051f4d9
1 parent
2ec12c9b
Exists in
master
and in
4 other branches
styled title block for mr, issue, commit
Showing
4 changed files
with
12 additions
and
5 deletions
Show diff stats
app/assets/stylesheets/common.scss
app/views/commits/show.html.haml
app/views/issues/show.html.haml
app/views/merge_requests/show.html.haml
1 | 1 | %h3 |
2 | 2 | = "Merge Request ##{@merge_request.id}:" |
3 | 3 | |
4 | - %span.label= @merge_request.source_branch | |
4 | + %span.pretty_label.branch= @merge_request.source_branch | |
5 | 5 | → |
6 | - %span.label= @merge_request.target_branch | |
6 | + %span.pretty_label.branch= @merge_request.target_branch | |
7 | 7 | |
8 | 8 | %small |
9 | 9 | created at |
... | ... | @@ -46,7 +46,7 @@ |
46 | 46 | |
47 | 47 | = render "merge_requests/how_to_merge" |
48 | 48 | |
49 | -%div.well | |
49 | +%div.well.prettyprint | |
50 | 50 | %div |
51 | 51 | %cite.cgray Created by |
52 | 52 | = image_tag gravatar_icon(@merge_request.author_email), :width => 16, :class => "lil_av" | ... | ... |