diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-01-25 16:11:29 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-01-25 16:11:29 +0000 |
commit | 91a3611403a53597bc3c0ab7efada973d50c3311 (patch) | |
tree | 513d3e1b3fced015fc9c4cd5f14fb96c1edbf747 | |
parent | a869504a44d49cc444c11e64932c12761726fe14 (diff) | |
download | redmine-91a3611403a53597bc3c0ab7efada973d50c3311.tar.gz redmine-91a3611403a53597bc3c0ab7efada973d50c3311.zip |
Remove background on subtasks and relations introduced in r16249 (#15361).
git-svn-id: http://svn.redmine.org/redmine/trunk@16259 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/helpers/issues_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 9bc3b3eaa..bf692285b 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -90,7 +90,7 @@ module IssuesHelper end def render_descendants_tree(issue) - s = '<table class="list issues">' + s = '<table class="list issues odd-even">' issue_list(issue.descendants.visible.preload(:status, :priority, :tracker, :assigned_to).sort_by(&:lft)) do |child, level| css = "issue issue-#{child.id} hascontextmenu #{child.css_classes}" css << " idnt idnt-#{level}" if level > 0 @@ -135,7 +135,7 @@ module IssuesHelper :class => css) end - content_tag('table', s, :class => 'list issues') + content_tag('table', s, :class => 'list issues odd-even') end def issue_estimated_hours_details(issue) |