Index: wp-admin/css/colors-classic.dev.css
===================================================================
--- wp-admin/css/colors-classic.dev.css	(revision 20449)
+++ wp-admin/css/colors-classic.dev.css	(working copy)
@@ -426,7 +426,6 @@
 #adminmenu ul.wp-submenu a:hover,
 #the-comment-list .comment a:hover,
 #rightnow a:hover,
-#media-upload a.del-link:hover,
 div.dashboard-widget-submit input:hover,
 .subsubsub a:hover,
 .subsubsub a.current:hover,
@@ -556,7 +555,6 @@
 a,
 #adminmenu a,
 #the-comment-list p.comment-author strong a,
-#media-upload a.del-link,
 #media-items a.delete,
 .plugins a.delete,
 .ui-tabs-nav a {
@@ -698,7 +696,8 @@
 table.widefat span.spam a,
 #dashboard_recent_comments .delete a,
 #dashboard_recent_comments .trash a,
-#dashboard_recent_comments .spam a {
+#dashboard_recent_comments .spam a,
+#media-upload a.del-link {
 	color: #bc0b0b;
 }
 
@@ -810,8 +809,9 @@
 table.widefat .trash a:hover,
 table.widefat .spam a:hover,
 #dashboard_recent_comments .delete a:hover,
-#dashboard_recent_comments .trash a:hover
-#dashboard_recent_comments .spam a:hover {
+#dashboard_recent_comments .trash a:hover,
+#dashboard_recent_comments .spam a:hover,
+#media-upload a.del-link:hover {
 	color: #f00;
 }
 
Index: wp-admin/css/colors-fresh.dev.css
===================================================================
--- wp-admin/css/colors-fresh.dev.css	(revision 20449)
+++ wp-admin/css/colors-fresh.dev.css	(working copy)
@@ -433,7 +433,6 @@
 #adminmenu ul.wp-submenu a:hover,
 #the-comment-list .comment a:hover,
 #rightnow a:hover,
-#media-upload a.del-link:hover,
 div.dashboard-widget-submit input:hover,
 .subsubsub a:hover,
 .subsubsub a.current:hover,
@@ -563,7 +562,6 @@
 a,
 #adminmenu a,
 #the-comment-list p.comment-author strong a,
-#media-upload a.del-link,
 #media-items a.delete,
 .plugins a.delete,
 .ui-tabs-nav a {
@@ -695,7 +693,8 @@
 table.widefat span.spam a,
 #dashboard_recent_comments .delete a,
 #dashboard_recent_comments .trash a,
-#dashboard_recent_comments .spam a {
+#dashboard_recent_comments .spam a,
+#media-upload a.del-link {
 	color: #bc0b0b;
 }
 
@@ -873,8 +872,9 @@
 table.widefat .trash a:hover,
 table.widefat .spam a:hover,
 #dashboard_recent_comments .delete a:hover,
-#dashboard_recent_comments .trash a:hover
-#dashboard_recent_comments .spam a:hover {
+#dashboard_recent_comments .trash a:hover,
+#dashboard_recent_comments .spam a:hover,
+#media-upload a.del-link:hover {
 	color: #f00;
 }
 
Index: wp-admin/includes/media.php
===================================================================
--- wp-admin/includes/media.php	(revision 20449)
+++ wp-admin/includes/media.php	(working copy)
@@ -1169,15 +1169,15 @@
 		$send = get_submit_button( __( 'Insert into Post' ), 'button', "send[$attachment_id]", false );
 	if ( $delete && current_user_can( 'delete_post', $attachment_id ) ) {
 		if ( !EMPTY_TRASH_DAYS ) {
-			$delete = "<a href='" . wp_nonce_url( "post.php?action=delete&amp;post=$attachment_id", 'delete-attachment_' . $attachment_id ) . "' id='del[$attachment_id]' class='delete'>" . __( 'Delete Permanently' ) . '</a>';
+			$delete = "<a class='del-link' href='" . wp_nonce_url( "post.php?action=delete&amp;post=$attachment_id", 'delete-attachment_' . $attachment_id ) . "' id='del[$attachment_id]'>" . __( 'Delete Permanently' ) . '</a>';
 		} elseif ( !MEDIA_TRASH ) {
-			$delete = "<a href='#' class='del-link' onclick=\"document.getElementById('del_attachment_$attachment_id').style.display='block';return false;\">" . __( 'Delete' ) . "</a>
+			$delete = "<a class='del-link' href='#' onclick=\"document.getElementById('del_attachment_$attachment_id').style.display='block';return false;\">" . __( 'Delete' ) . "</a>
 			 <div id='del_attachment_$attachment_id' class='del-attachment' style='display:none;'><p>" . sprintf( __( 'You are about to delete <strong>%s</strong>.' ), $filename ) . "</p>
 			 <a href='" . wp_nonce_url( "post.php?action=delete&amp;post=$attachment_id", 'delete-attachment_' . $attachment_id ) . "' id='del[$attachment_id]' class='button'>" . __( 'Continue' ) . "</a>
 			 <a href='#' class='button' onclick=\"this.parentNode.style.display='none';return false;\">" . __( 'Cancel' ) . "</a>
 			 </div>";
 		} else {
-			$delete = "<a href='" . wp_nonce_url( "post.php?action=trash&amp;post=$attachment_id", 'trash-attachment_' . $attachment_id ) . "' id='del[$attachment_id]' class='delete'>" . __( 'Move to Trash' ) . "</a>
+			$delete = "<a class='del-link' href='" . wp_nonce_url( "post.php?action=trash&amp;post=$attachment_id", 'trash-attachment_' . $attachment_id ) . "' id='del[$attachment_id]'>" . __( 'Move to Trash' ) . "</a>
 			<a href='" . wp_nonce_url( "post.php?action=untrash&amp;post=$attachment_id", 'untrash-attachment_' . $attachment_id ) . "' id='undo[$attachment_id]' class='undo hidden'>" . __( 'Undo' ) . "</a>";
 		}
 	} else {
@@ -1197,7 +1197,7 @@
 	}
 
 	if ( ( $send || $thumbnail || $delete ) && !isset( $form_fields['buttons'] ) )
-		$form_fields['buttons'] = array( 'tr' => "\t\t<tr class='submit'><td></td><td class='savesend'>$send $thumbnail $delete</td></tr>\n" );
+		$form_fields['buttons'] = array( 'tr' => "\t\t<tr class='submit'><td></td><td class='savesend'>$delete $thumbnail $send</td></tr>\n" );
 
 	$hidden_fields = array();
 
