Commit 5c492a7089f72c50dc7ee26181dda99b5af529b3
1 parent
29c41e9a
Exists in
master
and in
4 other branches
make issue, commit row title color lighter
Showing
4 changed files
with
7 additions
and
5 deletions
Show diff stats
app/assets/stylesheets/common.scss
app/views/commits/_commit.html.haml
... | ... | @@ -8,7 +8,7 @@ |
8 | 8 | %strong.cgray= commit.author_name |
9 | 9 | – |
10 | 10 | = image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16 |
11 | - %strong= truncate(commit.safe_message, :length => 50) rescue "--broken encoding" | |
11 | + %span.row_title= truncate(commit.safe_message, :length => 50) rescue "--broken encoding" | |
12 | 12 | |
13 | 13 | %span.right.cgray |
14 | 14 | = time_ago_in_words(commit.committed_date) | ... | ... |
app/views/issues/_show.html.haml
app/views/merge_requests/_merge_request.html.haml
... | ... | @@ -10,5 +10,4 @@ |
10 | 10 | → |
11 | 11 | %span.label= merge_request.target_branch |
12 | 12 | = link_to project_merge_request_path(merge_request.project, merge_request) do |
13 | - %p | |
14 | - %strong= truncate(merge_request.title, :length => 60) | |
13 | + %p.row_title= truncate(merge_request.title, :length => 60) | ... | ... |