Index: wp-admin/admin-functions.php
===================================================================
--- wp-admin/admin-functions.php	(revision 710)
+++ wp-admin/admin-functions.php	(working copy)
@@ -831,7 +831,7 @@
     </td> 
     <td><?php the_author() ?></td>
     <td><?php if ( '0000-00-00 00:00:00' ==$post->post_modified ) _e('Unpublished'); else echo mysql2date( __('Y-m-d g:i a'), $post->post_modified ); ?></td> 
-	<td><a href="<?php the_permalink(); ?>" rel="permalink" class="edit"><?php _e( 'View' ); ?></a></td>
+	<td><a href='<?php the_permalink(); ?>' rel='permalink' class='view'><?php _e( 'View' ); ?></a></td>
     <td><?php if ( current_user_can( 'edit_page', $id ) ) { echo "<a href='page.php?action=edit&amp;post=$id' class='edit'>" . __( 'Edit' ) . "</a>"; } ?></td> 
     <td><?php if ( current_user_can( 'delete_page', $id ) ) { echo "<a href='" . wp_nonce_url( "page.php?action=delete&amp;post=$id", 'delete-page_' . $id ) .  "' class='delete' onclick=\"return deleteSomething( 'page', " . $id . ", '" . js_escape(sprintf( __("You are about to delete the '%s' page.\n'OK' to delete, 'Cancel' to stop." ), get_the_title() ) ) . "' );\">" . __( 'Delete' ) . "</a>"; } ?></td> 
   </tr> 
Index: wp-admin/edit.php
===================================================================
--- wp-admin/edit.php	(revision 710)
+++ wp-admin/edit.php	(working copy)
@@ -209,7 +209,7 @@
 
 	case 'control_view':
 		?>
-		<td><a href="<?php the_permalink(); ?>" rel="permalink" class="edit"><?php _e('View'); ?></a></td>
+		<td><a href='<?php the_permalink(); ?>' rel='permalink' class='view'><?php _e('View'); ?></a></td>
 		<?php
 		break;
 
Index: wp-admin/wp-admin.css
===================================================================
--- wp-admin/wp-admin.css	(revision 710)
+++ wp-admin/wp-admin.css	(working copy)
@@ -103,14 +103,14 @@
 	padding: 1em;
 }
 
-a.edit, a.delete, a.edit:hover, a.delete:hover {
+a.view, a.edit, a.delete, a.view:hover, a.edit:hover, a.delete:hover {
 	border-bottom: none;
 	display: block;
 	padding: 5px 0;
 	text-align: center;
 }
 
-a.edit:hover {
+a.view:hover, a.edit:hover {
 	background: #ccc;
 	color: #036;
 }
