diff options
-rw-r--r-- | lib/redmine/helpers/gantt.rb | 2 | ||||
-rw-r--r-- | public/stylesheets/application.css | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index 683d201a5..87e614a00 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -663,7 +663,7 @@ module Redmine assigned_string = l(:field_assigned_to) + ": " + issue.assigned_to.name s << view.avatar(issue.assigned_to, :class => 'gravatar icon-gravatar', - :size => 10, + :size => 13, :title => assigned_string).to_s.html_safe end s << view.link_to_issue(issue).html_safe diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index a0cfe28fe..5fa58d762 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -1085,6 +1085,10 @@ a.close-icon:hover {background-image:url('../images/close_hl.png');} .gantt_subjects { font-size: 0.8em; } .gantt_subjects div { line-height:16px;height:16px;overflow:hidden;white-space:nowrap;text-overflow: ellipsis; } +.gantt_subjects .issue-subject img.icon-gravatar { + margin: 2px 5px 0px 2px; +} + .task { position: absolute; height:8px; |