diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2008-10-31 00:19:48 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2008-10-31 00:19:48 +0000 |
commit | 048fa5bd7773c38ad5fada2b52167be1fd33e4e8 (patch) | |
tree | 750416f46930c8d9648236e3200d268e73797b55 /app/views/issues | |
parent | 3bc2a5cf2fc99764b8cfc1aba4b414f8f6dbc966 (diff) | |
download | redmine-048fa5bd7773c38ad5fada2b52167be1fd33e4e8.tar.gz redmine-048fa5bd7773c38ad5fada2b52167be1fd33e4e8.zip |
Tighened up the gravator CSS in the issue div
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@1971 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/show.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index bb2dea6fa..05996f2fa 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -10,7 +10,7 @@ <h2><%= @issue.tracker.name %> #<%= @issue.id %></h2> <div class="issue <%= "status-#{@issue.status.position} priority-#{@issue.priority.position}" %>"> - <%= gravatar(@issue.author.mail, :size => "14") rescue nil %> + <%= gravatar(@issue.author.mail, :size => "64") rescue nil %> <h3><%=h @issue.subject %></h3> <p class="author"> <%= authoring @issue.created_on, @issue.author %>. @@ -27,7 +27,7 @@ <td class="due-date"><b><%=l(:field_due_date)%>:</b></td><td class="due-date"><%= format_date(@issue.due_date) %></td> </tr> <tr> - <td class="assigned-to"><b><%=l(:field_assigned_to)%>:</b></td><td><%= gravatar(@issue.assigned_to.mail, :size => "24") unless @issue.assigned_to.blank?%><%= @issue.assigned_to ? link_to_user(@issue.assigned_to) : "-" %></td> + <td class="assigned-to"><b><%=l(:field_assigned_to)%>:</b></td><td><%= gravatar(@issue.assigned_to.mail, :size => "14") unless @issue.assigned_to.blank?%><%= @issue.assigned_to ? link_to_user(@issue.assigned_to) : "-" %></td> <td class="progress"><b><%=l(:field_done_ratio)%>:</b></td><td class="progress"><%= progress_bar @issue.done_ratio, :width => '80px', :legend => "#{@issue.done_ratio}%" %></td> </tr> <tr> |