diff --git a/app/helpers/journals_helper.rb b/app/helpers/journals_helper.rb
index 389d7fb..4f21b30 100644
--- a/app/helpers/journals_helper.rb
+++ b/app/helpers/journals_helper.rb
@@ -32,7 +32,6 @@ module JournalsHelper
content << textilizable(journal, :notes)
css_classes = "wiki"
css_classes << " editable" if editable
- css_classes << " gravatar-margin" if Setting.gravatar_enabled?
content_tag('div', content, :id => "journal-#{journal.id}-notes", :class => css_classes)
end
diff --git a/app/views/issues/_history.rhtml b/app/views/issues/_history.rhtml
index 267263b..ffbb293 100644
--- a/app/views/issues/_history.rhtml
+++ b/app/views/issues/_history.rhtml
@@ -2,9 +2,10 @@
<% for journal in journals %>
<%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %>
+ <%= avatar(journal.user, :size => "24") %>
<%= content_tag('a', '', :name => "note-#{journal.indice}")%>
<%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %>
- <%= avatar(journal.user, :size => "32") %>
+
<% for detail in journal.details %>
- <%= show_detail(detail) %>
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml
index 914e557..90a9d96 100644
--- a/app/views/issues/show.rhtml
+++ b/app/views/issues/show.rhtml
@@ -3,7 +3,7 @@
<%= @issue.tracker.name %> #<%= @issue.id %>
- <%= avatar(@issue.author, :size => "64") %>
+ <%= avatar(@issue.author, :size => "50") %>
<%=h @issue.subject %>
<%= authoring @issue.created_on, @issue.author %>.
diff --git a/app/views/messages/show.rhtml b/app/views/messages/show.rhtml
index 5ddc083..079b988 100644
--- a/app/views/messages/show.rhtml
+++ b/app/views/messages/show.rhtml
@@ -8,7 +8,7 @@
<%= link_to(l(:button_delete), {:action => 'destroy', :id => @topic}, :method => :post, :confirm => l(:text_are_you_sure), :class => 'icon icon-del') if @message.destroyable_by?(User.current) %>
-<%=h @topic.subject %>
+<%= avatar(@topic.author, :size => "24") %><%=h @topic.subject %>
<%= authoring @topic.created_on, @topic.author %>
@@ -29,6 +29,7 @@
<%= link_to(image_tag('delete.png'), {:action => 'destroy', :id => message}, :method => :post, :confirm => l(:text_are_you_sure), :title => l(:button_delete)) if message.destroyable_by?(User.current) %>
+ <%= avatar(message.author, :size => "24") %>
<%= link_to h(message.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => @topic, :anchor => "message-#{message.id}" } %>
-
<%= authoring message.created_on, message.author %>
diff --git a/app/views/news/show.rhtml b/app/views/news/show.rhtml
index 69c0eab..485bd6f 100644
--- a/app/views/news/show.rhtml
+++ b/app/views/news/show.rhtml
@@ -7,7 +7,7 @@
<%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
-<%=h @news.title %>
+<%= avatar(@news.author, :size => "24") %><%=h @news.title %>
<% if authorize_for('news', 'edit') %>
@@ -42,7 +42,7 @@
<%= link_to_if_authorized image_tag('delete.png'), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment},
:confirm => l(:text_are_you_sure), :method => :post, :title => l(:button_delete) %>
- <%= authoring comment.created_on, comment.author %>
+ <%= avatar(comment.author, :size => "24") %><%= authoring comment.created_on, comment.author %>
<%= textilizable(comment.comments) %>
<% end if @comments.any? %>
diff --git a/app/views/users/show.rhtml b/app/views/users/show.rhtml
index 8816f10..82634b0 100644
--- a/app/views/users/show.rhtml
+++ b/app/views/users/show.rhtml
@@ -2,7 +2,7 @@
<%= link_to(l(:button_edit), {:controller => 'users', :action => 'edit', :id => @user}, :class => 'icon icon-edit') if User.current.admin? %>
-<%= avatar @user %> <%=h @user.name %>
+<%= avatar @user, :size => "50" %> <%=h @user.name %>
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 64741d7..3b95148 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -810,9 +810,15 @@ div.issue table img.gravatar {
margin: 0 0.5em 0 0;
}
-#history img.gravatar {
+h2 img.gravatar {
padding: 3px;
- margin: 0 1.5em 1em 0;
+ margin: -2px 4px 0 0;
+ float: left;
+}
+
+h4 img.gravatar {
+ padding: 3px;
+ margin: -6px 4px 0 0;
float: left;
}
@@ -831,10 +837,6 @@ td.username img.gravatar {
clear: left;
}
-.gravatar-margin {
- margin-left: 40px;
-}
-
h2 img { vertical-align:middle; }
.hascontextmenu { cursor: context-menu; }