Browse Source

Use the regular "icon icon-*" on search results (#24313).

git-svn-id: http://svn.redmine.org/redmine/trunk@15977 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.4.0
Jean-Philippe Lang 7 years ago
parent
commit
7ee5e95f14

+ 1
- 1
app/models/issue.rb View File

@@ -52,7 +52,7 @@ class Issue < ActiveRecord::Base

acts_as_event :title => Proc.new {|o| "#{o.tracker.name} ##{o.id} (#{o.status}): #{o.subject}"},
:url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.id}},
:type => Proc.new {|o| 'issue' + (o.closed? ? ' closed' : '') }
:type => Proc.new {|o| 'issue' + (o.closed? ? '-closed' : '') }

acts_as_activity_provider :scope => preload(:project, :author, :tracker, :status),
:author_key => :author_id

+ 1
- 1
app/views/search/index.html.erb View File

@@ -42,7 +42,7 @@
<h3><%= l(:label_result_plural) %> (<%= @result_count %>)</h3>
<dl id="search-results">
<% @results.each do |e| %>
<dt class="<%= e.event_type %>">
<dt class="<%= e.event_type %> icon icon-<%= e.event_type %>">
<%= content_tag('span', e.project, :class => 'project') unless @project == e.project %>
<%= link_to(highlight_tokens(e.event_title.truncate(255), @tokens), e.event_url) %>
</dt>

+ 0
- 3
public/stylesheets/application.css View File

@@ -422,7 +422,6 @@ 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; }
#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; }
@@ -438,8 +437,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; }

#search-results dt.issue.closed { background-image: url(../images/ticket_checked.png); }

div#roadmap .related-issues { margin-bottom: 1em; }
div#roadmap .related-issues td.checkbox { display: none; }
div#roadmap .wiki h1:first-child { display: none; }

+ 1
- 1
test/functional/search_controller_test.rb View File

@@ -94,7 +94,7 @@ class SearchControllerTest < Redmine::ControllerTest

assert_select '#search-results' do
assert_select 'dt.issue a', :text => /Bug #5/
assert_select 'dt.issue.closed a', :text => /Bug #8 \(Closed\)/
assert_select 'dt.issue-closed a', :text => /Bug #8 \(Closed\)/
end
end


Loading…
Cancel
Save