]> source.dussan.org Git - redmine.git/commitdiff
Adds some css classes (#14767).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 29 Sep 2013 15:39:56 +0000 (15:39 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 29 Sep 2013 15:39:56 +0000 (15:39 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12171 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb
app/views/versions/show.html.erb

index 4b33e15f318e5c055f95e391275721911a620888..2c093a26f2e68459a02357635d2d63c299f3bf95 100644 (file)
@@ -1062,7 +1062,7 @@ module ApplicationHelper
         (pcts[0] > 0 ? content_tag('td', '', :style => "width: #{pcts[0]}%;", :class => 'closed') : ''.html_safe) +
         (pcts[1] > 0 ? content_tag('td', '', :style => "width: #{pcts[1]}%;", :class => 'done') : ''.html_safe) +
         (pcts[2] > 0 ? content_tag('td', '', :style => "width: #{pcts[2]}%;", :class => 'todo') : ''.html_safe)
-      ), :class => 'progress', :style => "width: #{width};").html_safe +
+      ), :class => 'progress progress-#{pcts[0]}', :style => "width: #{width};").html_safe +
       content_tag('p', legend, :class => 'percent').html_safe
   end
 
index 2e104bd393a218d6058aa02a30ce840d8fe7504e..fdbec6ff6c30574daa2265c2f4518dd77c9b45d2 100644 (file)
@@ -39,9 +39,9 @@
   <table class="list related-issues">
   <caption><%= l(:label_related_issues) %></caption>
   <%- @issues.each do |issue| -%>
-    <tr class="hascontextmenu">
+    <tr class="issue hascontextmenu">
       <td class="checkbox"><%= check_box_tag 'ids[]', issue.id, false, :id => nil %></td>
-      <td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
+      <td class="subject"><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
     </tr>
   <% end %>
   </table>