summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-02-20 21:50:11 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-02-20 21:50:11 +0200
commit5c492a7089f72c50dc7ee26181dda99b5af529b3 (patch)
tree5bc8dcc7c26a04a457422e0eb84fb783272e6568
parent29c41e9a0e4407ecd009f4527c5a81c6275a8328 (diff)
downloadgitlab-ce-5c492a7089f72c50dc7ee26181dda99b5af529b3.tar.gz
make issue, commit row title color lighter
-rw-r--r--app/assets/stylesheets/common.scss4
-rw-r--r--app/views/commits/_commit.html.haml2
-rw-r--r--app/views/issues/_show.html.haml3
-rw-r--r--app/views/merge_requests/_merge_request.html.haml3
4 files changed, 7 insertions, 5 deletions
diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss
index d86b7dad0c0..a7612169218 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 5f6561f87be..a579cca96bb 100644
--- a/app/views/commits/_commit.html.haml
+++ b/app/views/commits/_commit.html.haml
@@ -8,7 +8,7 @@
%strong.cgray= commit.author_name
&ndash;
= 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 8ff063dafa6..3229aa5c91b 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 88e7d2b148a..583cc44099c 100644
--- a/app/views/merge_requests/_merge_request.html.haml
+++ b/app/views/merge_requests/_merge_request.html.haml
@@ -10,5 +10,4 @@
&rarr;
%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)