From 1a6595aa17919afc34c47d2529f56dff40037261 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Thu, 30 Oct 2008 02:58:23 +0000 Subject: [PATCH] Reduced the size of the gravatar on the issue history git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@1965 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issues/_history.rhtml | 2 +- public/stylesheets/application.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/issues/_history.rhtml b/app/views/issues/_history.rhtml index 896e28027..f12c4ec83 100644 --- a/app/views/issues/_history.rhtml +++ b/app/views/issues/_history.rhtml @@ -1,7 +1,7 @@ <% reply_links = authorize_for('issues', 'edit') -%> <% for journal in journals %>
- <%= gravatar(journal.user.mail.blank? ? "" : journal.user.mail, :size => "48") %> + <%= gravatar(journal.user.mail.blank? ? "" : journal.user.mail, :size => "32") %>

<%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %>
<%= content_tag('a', '', :name => "note-#{journal.indice}")%> <%= format_time(journal.created_on) %> - <%= journal.user.name %>

diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index e223bd5af..48926645a 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -637,7 +637,7 @@ div.issue table img.gravatar { #history img.gravatar { padding: 3px; - margin: 0 2em 1em 0; + margin: 0 1em 1em 0; float: left; } -- 2.39.5