Index: wp-admin/edit-post-rows.php
===================================================================
--- wp-admin/edit-post-rows.php	(revision 5797)
+++ wp-admin/edit-post-rows.php	(working copy)
@@ -15,8 +15,10 @@
 while (have_posts()) : the_post();
 add_filter('the_title','wp_specialchars');
 $class = ('alternate' == $class) ? '' : 'alternate';
+global $current_user;
+$post_owner = ( $current_user->ID == $post->post_author ? 'self' : 'other' );
 ?>
-	<tr id='post-<?php echo $id; ?>' class='<?php echo $class; ?>'>
+	<tr id='post-<?php echo $id; ?>' class='<?php echo trim( $class . ' author-' . $post_owner . ' status-' . $post->post_status ); ?>'>
 
 <?php
 
