? themes/yaroon/images Index: includes/theme.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/theme.inc,v retrieving revision 1.240 diff -u -r1.240 theme.inc --- includes/theme.inc 31 May 2005 21:14:26 -0000 1.240 +++ includes/theme.inc 15 Jun 2005 13:51:32 -0000 @@ -702,8 +702,8 @@ $cells = $row; } - // Add light/dark class - $class = ($number % 2 == 1) ? 'light': 'dark'; + // Add odd/even class + $class = ($number % 2 == 1) ? 'even': 'odd'; if (isset($attributes['class'])) { $attributes['class'] .= ' '. $class; } Index: misc/drupal.css =================================================================== RCS file: /cvs/drupal/drupal/misc/drupal.css,v retrieving revision 1.107 diff -u -r1.107 drupal.css --- misc/drupal.css 31 May 2005 23:23:48 -0000 1.107 +++ misc/drupal.css 15 Jun 2005 13:49:15 -0000 @@ -30,11 +30,11 @@ th.active img { display: inline; } -tr.dark, tr.light { +tr.even, tr.odd { background-color: #eee; border-bottom: 1px solid #ccc; } -tr.dark, tr.light { +tr.even, tr.odd { padding: 0.1em 0.6em; } td.active { @@ -134,7 +134,7 @@ margin-top: 1em; margin-bottom: 1em; } -tr.light .form-item, tr.dark .form-item { +tr.odd .form-item, tr.even .form-item { margin-top: 0; margin-bottom: 0; white-space: nowrap;