@@ -10,7 +10,7 | |||||
10 | <h2><%= @issue.tracker.name %> #<%= @issue.id %></h2> |
|
10 | <h2><%= @issue.tracker.name %> #<%= @issue.id %></h2> | |
11 |
|
11 | |||
12 | <div class="issue <%= "status-#{@issue.status.position} priority-#{@issue.priority.position}" %>"> |
|
12 | <div class="issue <%= "status-#{@issue.status.position} priority-#{@issue.priority.position}" %>"> | |
13 |
<%= gravatar(@issue.author.mail, :size => " |
|
13 | <%= gravatar(@issue.author.mail, :size => "64") rescue nil %> | |
14 | <h3><%=h @issue.subject %></h3> |
|
14 | <h3><%=h @issue.subject %></h3> | |
15 | <p class="author"> |
|
15 | <p class="author"> | |
16 | <%= authoring @issue.created_on, @issue.author %>. |
|
16 | <%= authoring @issue.created_on, @issue.author %>. | |
@@ -27,7 +27,7 | |||||
27 | <td class="due-date"><b><%=l(:field_due_date)%>:</b></td><td class="due-date"><%= format_date(@issue.due_date) %></td> |
|
27 | <td class="due-date"><b><%=l(:field_due_date)%>:</b></td><td class="due-date"><%= format_date(@issue.due_date) %></td> | |
28 | </tr> |
|
28 | </tr> | |
29 | <tr> |
|
29 | <tr> | |
30 |
<td class="assigned-to"><b><%=l(:field_assigned_to)%>:</b></td><td><%= gravatar(@issue.assigned_to.mail, :size => " |
|
30 | <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> | |
31 | <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> |
|
31 | <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> | |
32 | </tr> |
|
32 | </tr> | |
33 | <tr> |
|
33 | <tr> |
@@ -623,16 +623,16 img.gravatar { | |||||
623 |
|
623 | |||
624 | div.issue img.gravatar { |
|
624 | div.issue img.gravatar { | |
625 | float: right; |
|
625 | float: right; | |
626 |
margin: 0 0 |
|
626 | margin: 0 0 0 1em; | |
627 | padding: 5px; |
|
627 | padding: 5px; | |
628 | } |
|
628 | } | |
629 |
|
629 | |||
630 | div.issue table img.gravatar { |
|
630 | div.issue table img.gravatar { | |
631 |
height: 1 |
|
631 | height: 14px; | |
632 |
width: 1 |
|
632 | width: 14px; | |
633 | padding: 2px; |
|
633 | padding: 2px; | |
634 | float: left; |
|
634 | float: left; | |
635 |
margin: 0 |
|
635 | margin: 0 0.5em 0 0; | |
636 | } |
|
636 | } | |
637 |
|
637 | |||
638 | #history img.gravatar { |
|
638 | #history img.gravatar { |
General Comments 0
You need to be logged in to leave comments.
Login now