diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml
index bb2dea6..05996f2 100644
--- a/app/views/issues/show.rhtml
+++ b/app/views/issues/show.rhtml
@@ -10,7 +10,7 @@
">
- <%= gravatar(@issue.author.mail, :size => "14") rescue nil %>
+ <%= gravatar(@issue.author.mail, :size => "64") rescue nil %>
<%=h @issue.subject %>
<%= authoring @issue.created_on, @issue.author %>.
@@ -27,7 +27,7 @@
<%=l(:field_due_date)%>: | <%= format_date(@issue.due_date) %> |
- <%=l(:field_assigned_to)%>: | <%= gravatar(@issue.assigned_to.mail, :size => "24") unless @issue.assigned_to.blank?%><%= @issue.assigned_to ? link_to_user(@issue.assigned_to) : "-" %> |
+ <%=l(:field_assigned_to)%>: | <%= gravatar(@issue.assigned_to.mail, :size => "14") unless @issue.assigned_to.blank?%><%= @issue.assigned_to ? link_to_user(@issue.assigned_to) : "-" %> |
<%=l(:field_done_ratio)%>: | <%= progress_bar @issue.done_ratio, :width => '80px', :legend => "#{@issue.done_ratio}%" %> |
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 4e86493..acd0715 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -623,16 +623,16 @@ img.gravatar {
div.issue img.gravatar {
float: right;
- margin: 0 0 1em 1em;
+ margin: 0 0 0 1em;
padding: 5px;
}
div.issue table img.gravatar {
- height: 16px;
- width: 16px;
+ height: 14px;
+ width: 14px;
padding: 2px;
float: left;
- margin: 0 1em 0 0;
+ margin: 0 0.5em 0 0;
}
#history img.gravatar {