Commit 3bc2a5cf authored by Eric Davis's avatar Eric Davis

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
parent 41dba2db
<% 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>
......
......@@ -10,7 +10,7 @@
<h2><%= @issue.tracker.name %> #<%= @issue.id %></h2>
<div class="issue <%= "status-#{@issue.status.position} priority-#{@issue.priority.position}" %>">
<%= gravatar(@issue.author.mail, :size => "64") rescue nil %>
<%= gravatar(@issue.author.mail, :size => "14") rescue nil %>
<h3><%=h @issue.subject %></h3>
<p class="author">
<%= authoring @issue.created_on, @issue.author %>.
......
......@@ -628,8 +628,8 @@ div.issue img.gravatar {
}
div.issue table img.gravatar {
height: 24px;
width: 24px;
height: 16px;
width: 16px;
padding: 2px;
float: left;
margin: 0 1em 0 0;
......@@ -637,7 +637,7 @@ div.issue table img.gravatar {
#history img.gravatar {
padding: 3px;
margin: 0 1em 1em 0;
margin: 0 1.5em 1em 0;
float: left;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment