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 | |
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
-rw-r--r-- | app/views/issues/_history.rhtml | 2 | ||||
-rw-r--r-- | app/views/issues/show.rhtml | 2 | ||||
-rw-r--r-- | public/stylesheets/application.css | 6 |
3 files changed, 5 insertions, 5 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> diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index af95b7d49..bb2dea6fa 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -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 %>. diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 48926645a..4e8649349 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -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; } |