From 048fa5bd7773c38ad5fada2b52167be1fd33e4e8 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Fri, 31 Oct 2008 00:19:48 +0000 Subject: [PATCH] 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 --- app/views/issues/show.rhtml | 4 ++-- public/stylesheets/application.css | 8 ++++---- 2 files changed, 6 insertions(+), 6 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 @@

<%= @issue.tracker.name %> #<%= @issue.id %>

"> - <%= 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 4e8649349..acd07153b 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 { -- 2.39.5