##// END OF EJS Templates
Tweaking of the CSS for the gravatars. #1776...
Eric Davis -
r1968:3bc2a5cf2fc9
parent child
Show More
@@ -1,10 +1,10
1 1 <% reply_links = authorize_for('issues', 'edit') -%>
2 2 <% for journal in journals %>
3 3 <div id="change-<%= journal.id %>" class="journal">
4 <%= gravatar(journal.user.mail.blank? ? "" : journal.user.mail, :size => "32") %>
5 4 <h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div>
6 5 <%= content_tag('a', '', :name => "note-#{journal.indice}")%>
7 6 <%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>
7 <%= gravatar(journal.user.mail.blank? ? "" : journal.user.mail, :size => "32") %>
8 8 <ul>
9 9 <% for detail in journal.details %>
10 10 <li><%= show_detail(detail) %></li>
@@ -10,7 +10,7
10 10 <h2><%= @issue.tracker.name %> #<%= @issue.id %></h2>
11 11
12 12 <div class="issue <%= "status-#{@issue.status.position} priority-#{@issue.priority.position}" %>">
13 <%= gravatar(@issue.author.mail, :size => "64") rescue nil %>
13 <%= gravatar(@issue.author.mail, :size => "14") rescue nil %>
14 14 <h3><%=h @issue.subject %></h3>
15 15 <p class="author">
16 16 <%= authoring @issue.created_on, @issue.author %>.
@@ -628,8 +628,8 div.issue img.gravatar {
628 628 }
629 629
630 630 div.issue table img.gravatar {
631 height: 24px;
632 width: 24px;
631 height: 16px;
632 width: 16px;
633 633 padding: 2px;
634 634 float: left;
635 635 margin: 0 1em 0 0;
@@ -637,7 +637,7 div.issue table img.gravatar {
637 637
638 638 #history img.gravatar {
639 639 padding: 3px;
640 margin: 0 1em 1em 0;
640 margin: 0 1.5em 1em 0;
641 641 float: left;
642 642 }
643 643
General Comments 0
You need to be logged in to leave comments. Login now