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
This commit is contained in:
Eric Davis 2008-10-30 02:58:23 +00:00
parent 9373f429d0
commit 1a6595aa17
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<% reply_links = authorize_for('issues', 'edit') -%> <% reply_links = authorize_for('issues', 'edit') -%>
<% for journal in journals %> <% for journal in journals %>
<div id="change-<%= journal.id %>" class="journal"> <div id="change-<%= journal.id %>" class="journal">
<%= gravatar(journal.user.mail.blank? ? "" : journal.user.mail, :size => "48") %> <%= gravatar(journal.user.mail.blank? ? "" : journal.user.mail, :size => "32") %>
<h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div> <h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div>
<%= content_tag('a', '', :name => "note-#{journal.indice}")%> <%= content_tag('a', '', :name => "note-#{journal.indice}")%>
<%= format_time(journal.created_on) %> - <%= journal.user.name %></h4> <%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>

View File

@ -637,7 +637,7 @@ div.issue table img.gravatar {
#history img.gravatar { #history img.gravatar {
padding: 3px; padding: 3px;
margin: 0 2em 1em 0; margin: 0 1em 1em 0;
float: left; float: left;
} }