summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2008-10-30 02:58:23 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2008-10-30 02:58:23 +0000
commit1a6595aa17919afc34c47d2529f56dff40037261 (patch)
tree3a20de29cd48e2c44dd94e025ec700eb516802da
parent9373f429d093b25fc7dabbeb8acdd11603c37023 (diff)
downloadredmine-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.rhtml2
-rw-r--r--public/stylesheets/application.css2
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;
}