diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2008-10-30 02:58:23 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2008-10-30 02:58:23 +0000 |
commit | 1a6595aa17919afc34c47d2529f56dff40037261 (patch) | |
tree | 3a20de29cd48e2c44dd94e025ec700eb516802da | |
parent | 9373f429d093b25fc7dabbeb8acdd11603c37023 (diff) | |
download | redmine-1a6595aa17919afc34c47d2529f56dff40037261.tar.gz redmine-1a6595aa17919afc34c47d2529f56dff40037261.zip |
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
-rw-r--r-- | app/views/issues/_history.rhtml | 2 | ||||
-rw-r--r-- | 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 %> <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> <%= content_tag('a', '', :name => "note-#{journal.indice}")%> <%= format_time(journal.created_on) %> - <%= journal.user.name %></h4> 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; } |