diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2008-10-31 00:09:36 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2008-10-31 00:09:36 +0000 |
commit | 3bc2a5cf2fc99764b8cfc1aba4b414f8f6dbc966 (patch) | |
tree | 929ded616f32294d7cdc55b7b3c18ec1a0a157f3 /app/views/issues/_history.rhtml | |
parent | 41dba2db8611d7f328e62f808fc5c3ea8fb7947f (diff) | |
download | redmine-3bc2a5cf2fc99764b8cfc1aba4b414f8f6dbc966.tar.gz redmine-3bc2a5cf2fc99764b8cfc1aba4b414f8f6dbc966.zip |
Tweaking of the CSS for the gravatars. #1776
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@1970 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/_history.rhtml')
-rw-r--r-- | app/views/issues/_history.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_history.rhtml b/app/views/issues/_history.rhtml index f12c4ec83..65b34d7c5 100644 --- a/app/views/issues/_history.rhtml +++ b/app/views/issues/_history.rhtml @@ -1,10 +1,10 @@ <% 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 => "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> + <%= gravatar(journal.user.mail.blank? ? "" : journal.user.mail, :size => "32") %> <ul> <% for detail in journal.details %> <li><%= show_detail(detail) %></li> |