]> source.dussan.org Git - redmine.git/commitdiff
Use the regular "icon icon-*" on search results (#24313).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 19 Nov 2016 08:26:58 +0000 (08:26 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 19 Nov 2016 08:26:58 +0000 (08:26 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@15977 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/issue.rb
app/views/search/index.html.erb
public/stylesheets/application.css
test/functional/search_controller_test.rb

index 92cfad3957031c11c92e7d8175570672d127c8b3..f1bbe1c78b81ea74d205f261ded6665b40a20446 100644 (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
index 53ec17a633a009cfbd2d34fdd9d20b578a5b455a..1e80d57a7940fedd3d7bad9294f1e125af404bc9 100644 (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>
index 4f60ac30499582bda8af78cfe7aaee0269b40ff9..9613e5eb822b9482876f8dcaa2e84660ae64a8ff 100644 (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; }
index 54148a2f4e3cc36b56640a694c575c9000641f74..720d62d4bf4eb60ff50325cdca4f718d8836a68b 100644 (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