diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index d86b7dad0c05faf28be484f45fa14756937a1328..a7612169218199635cd539a7f0411fb390af5fbb 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -301,6 +301,10 @@ img.lil_av { } } + .row_title { + font-weight:bold; + color:#444; + } li, .wll { padding:10px; diff --git a/app/views/commits/_commit.html.haml b/app/views/commits/_commit.html.haml index 5f6561f87be173cc99729e961817552aca7c8fe8..a579cca96bba1079e6ee85fafd0e46be48854617 100644 --- a/app/views/commits/_commit.html.haml +++ b/app/views/commits/_commit.html.haml @@ -8,7 +8,7 @@ %strong.cgray= commit.author_name – = image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16 - %strong= truncate(commit.safe_message, :length => 50) rescue "--broken encoding" + %span.row_title= truncate(commit.safe_message, :length => 50) rescue "--broken encoding" %span.right.cgray = time_ago_in_words(commit.committed_date) diff --git a/app/views/issues/_show.html.haml b/app/views/issues/_show.html.haml index 8ff063dafa6137427392c1364999f602f356daef..3229aa5c91b1d3e9f3a6d9553b461aaf8a233e96 100644 --- a/app/views/issues/_show.html.haml +++ b/app/views/issues/_show.html.haml @@ -21,8 +21,7 @@ = link_to project_issue_path(issue.project, issue) do - %p - %strong= truncate(issue.title, :length => 60) + %p.row_title= truncate(issue.title, :length => 60) diff --git a/app/views/merge_requests/_merge_request.html.haml b/app/views/merge_requests/_merge_request.html.haml index 88e7d2b148a9678570a0b7e41095f6cde217c5b9..583cc44099cce0e9ac99bb8708a4df159ba19ccc 100644 --- a/app/views/merge_requests/_merge_request.html.haml +++ b/app/views/merge_requests/_merge_request.html.haml @@ -10,5 +10,4 @@ → %span.label= merge_request.target_branch = link_to project_merge_request_path(merge_request.project, merge_request) do - %p - %strong= truncate(merge_request.title, :length => 60) + %p.row_title= truncate(merge_request.title, :length => 60)