summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2017-01-25 11:45:16 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2017-01-25 11:45:16 +0000
commit8d713ae6ca643db8ce548b143635dee361f36ffe (patch)
tree89fc5c0002424a921c56d45e618a3353409fec8c
parent9814dcf231b50bd1d8e712db8534051ff8a8c8c6 (diff)
downloadredmine-8d713ae6ca643db8ce548b143635dee361f36ffe.tar.gz
redmine-8d713ae6ca643db8ce548b143635dee361f36ffe.zip
Fixes row background for alternate theme (#15361).
git-svn-id: http://svn.redmine.org/redmine/trunk@16250 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--public/stylesheets/application.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index d9afc8e83..dfe22a74c 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -349,8 +349,8 @@ table.list tbody tr.group:hover { background-color:inherit; }
table td {padding:2px;}
table p {margin:0;}
-table.list tbody tr:nth-child(odd), table.list.odd-even tbody tr.odd, #issue-changesets div.changeset:nth-child(odd) { background-color:#f6f7f8; }
-table.list tbody tr:nth-child(even), table.list.odd-even tbody tr.even, #issue-changesets div.changeset:nth-child(even) { background-color: #fff; }
+table.list:not(.odd-even) tbody tr:nth-child(odd), .odd, #issue-changesets div.changeset:nth-child(odd) { background-color:#f6f7f8; }
+table.list:not(.odd-even) tbody tr:nth-child(even), .even, #issue-changesets div.changeset:nth-child(even) { background-color: #fff; }
tr.builtin td.name {font-style:italic;}