Commit 5c492a7089f72c50dc7ee26181dda99b5af529b3

Authored by Dmitriy Zaporozhets
1 parent 29c41e9a

make issue, commit row title color lighter

app/assets/stylesheets/common.scss
... ... @@ -301,6 +301,10 @@ img.lil_av {
301 301 }
302 302 }
303 303  
  304 + .row_title {
  305 + font-weight:bold;
  306 + color:#444;
  307 + }
304 308  
305 309 li, .wll {
306 310 padding:10px;
... ...
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
... ... @@ -21,8 +21,7 @@
21 21  
22 22  
23 23 = link_to project_issue_path(issue.project, issue) do
24   - %p
25   - %strong= truncate(issue.title, :length => 60)
  24 + %p.row_title= truncate(issue.title, :length => 60)
26 25  
27 26  
28 27  
... ...
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)
... ...