From: Jean-Philippe Lang Date: Fri, 18 Nov 2016 16:04:44 +0000 (+0000) Subject: Use the regular "icon icon-*" on activity view (#24313). X-Git-Tag: 3.4.0~582 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=40f5865c522408e607b454cdbe96e870e15dcc0a;p=redmine.git Use the regular "icon icon-*" on activity view (#24313). Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@15975 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/activities/index.html.erb b/app/views/activities/index.html.erb index 033ae3cb6..f86390ab3 100644 --- a/app/views/activities/index.html.erb +++ b/app/views/activities/index.html.erb @@ -6,7 +6,7 @@

<%= format_activity_day(day) %>

<% sort_activity_events(@events_by_day[day]).each do |e, in_group| -%> -
<%= User.current.logged? && e.respond_to?(:event_author) && User.current == e.event_author ? 'me' : nil %>"> +
<%= User.current.logged? && e.respond_to?(:event_author) && User.current == e.event_author ? 'me' : nil %>"> <%= avatar(e.event_author, :size => "24") if e.respond_to?(:event_author) %> <%= format_time(e.event_datetime, false) %> <%= content_tag('span', e.project, :class => 'project') if @project.nil? || @project != e.project %> diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 63ac5df06..7e73a35b7 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -424,7 +424,7 @@ div.journal ul.details a:hover, ul.revision-info a:hover {color:#D14848;} div#activity dl, #search-results { margin-left: 2em; } div#activity dd, #search-results dd { margin-bottom: 1em; padding-left: 18px; font-size: 0.9em; } -div#activity dt, #search-results dt { margin-bottom: 0px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; } +#search-results dt { margin-bottom: 0px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; } div#activity dt.me .time { border-bottom: 1px solid #999; } div#activity dt .time { color: #777; font-size: 80%; } div#activity dd .description, #search-results dd .description { font-style: italic; } @@ -440,20 +440,6 @@ div#search-results-counts {float:right;} div#search-results-counts ul { margin-top: 0.5em; } div#search-results-counts li { list-style-type:none; float: left; margin-left: 1em; } -dt.issue { background-image: url(../images/ticket.png); } -dt.issue-edit { background-image: url(../images/ticket_edit.png); } -dt.issue-closed { background-image: url(../images/ticket_checked.png); } -dt.issue-note { background-image: url(../images/ticket_note.png); } -dt.changeset { background-image: url(../images/changeset.png); } -dt.news { background-image: url(../images/news.png); } -dt.message { background-image: url(../images/message.png); } -dt.reply { background-image: url(../images/comments.png); } -dt.wiki-page { background-image: url(../images/wiki_edit.png); } -dt.attachment { background-image: url(../images/attachment.png); } -dt.document { background-image: url(../images/document.png); } -dt.project { background-image: url(../images/projects.png); } -dt.time-entry { background-image: url(../images/time.png); } - #search-results dt.issue.closed { background-image: url(../images/ticket_checked.png); } div#roadmap .related-issues { margin-bottom: 1em; } @@ -1158,11 +1144,11 @@ div.wiki img {vertical-align:middle; max-width:100%;} .open .icon-folder { background-image: url(../images/folder_open.png); } .icon-package { background-image: url(../images/package.png); } .icon-user { background-image: url(../images/user.png); } -.icon-projects { background-image: url(../images/projects.png); } +.icon-project, .icon-projects { background-image: url(../images/projects.png); } .icon-help { background-image: url(../images/help.png); } .icon-attachment { background-image: url(../images/attachment.png); } .icon-history { background-image: url(../images/history.png); } -.icon-time { background-image: url(../images/time.png); } +.icon-time-entry, .icon-time { background-image: url(../images/time.png); } .icon-time-add { background-image: url(../images/time_add.png); } .icon-stats { background-image: url(../images/stats.png); } .icon-warning { background-image: url(../images/warning.png); } @@ -1205,6 +1191,14 @@ div.wiki img {vertical-align:middle; max-width:100%;} .icon-custom-fields { background-image: url(../images/textfield.png); } .icon-plugins { background-image: url(../images/plugin.png); } .icon-news { background: url(../images/news.png); } +.icon-issue-closed { background-image: url(../images/ticket_checked.png); } +.icon-issue-note { background-image: url(../images/ticket_note.png); } +.icon-changeset { background-image: url(../images/changeset.png); } +.icon-message { background-image: url(../images/message.png); } +.icon-reply { background-image: url(../images/comments.png); } +.icon-wiki-page { background-image: url(../images/wiki_edit.png); } +.icon-document { background-image: url(../images/document.png); } +.icon-project { background-image: url(../images/projects.png); } .icon-file { background-image: url(../images/files/default.png); } .icon-file.text-plain { background-image: url(../images/files/text.png); }