Index: src/wp-includes/css/media-views.css
===================================================================
--- src/wp-includes/css/media-views.css	(Revision 38592)
+++ src/wp-includes/css/media-views.css	(Arbeitskopie)
@@ -1685,11 +1685,25 @@
 	display: block;
 }
 
-.media-modal .delete-attachment,
-.media-modal .trash-attachment,
 .media-modal .untrash-attachment {
 	display: inline;
 	padding: 0;
+	color: #0073aa;
+}
+
+.media-modal .untrash-attachment:focus {
+	color: #124964;
+}
+
+.media-modal .untrash-attachment:hover,
+.media-modal .untrash-attachment:active {
+	color: #00a0d2;
+}
+
+.media-modal .delete-attachment,
+.media-modal .trash-attachment {
+	display: inline;
+	padding: 0;
 	color: #bc0b0b;
 }
 
@@ -1696,9 +1710,7 @@
 .media-modal .delete-attachment:hover,
 .media-modal .delete-attachment:focus,
 .media-modal .trash-attachment:hover,
-.media-modal .trash-attachment:focus,
-.media-modal .untrash-attachment:hover,
-.media-modal .untrash-attachment:focus {
+.media-modal .trash-attachment:focus {
 	color: red;
 }
 
Index: src/wp-includes/media-template.php
===================================================================
--- src/wp-includes/media-template.php	(Revision 38592)
+++ src/wp-includes/media-template.php	(Arbeitskopie)
@@ -428,7 +428,8 @@
 				<# if ( ! data.uploading && data.can.remove ) { #> |
 					<?php if ( MEDIA_TRASH ): ?>
 						<# if ( 'trash' === data.status ) { #>
-							<button type="button" class="button-link untrash-attachment"><?php _e( 'Untrash' ); ?></button>
+							<button type="button" class="button-link untrash-attachment"><?php _e( 'Untrash' ); ?></button> |
+							<button type="button" class="button-link delete-attachment"><?php _e( 'Delete Permanently' ); ?></button>
 						<# } else { #>
 							<button type="button" class="button-link trash-attachment"><?php _ex( 'Trash', 'verb' ); ?></button>
 						<# } #>
@@ -529,7 +530,8 @@
 				<# if ( ! data.uploading && data.can.remove ) { #>
 					<?php if ( MEDIA_TRASH ): ?>
 					<# if ( 'trash' === data.status ) { #>
-						<button type="button" class="button-link untrash-attachment"><?php _e( 'Untrash' ); ?></button>
+						<button type="button" class="button-link untrash-attachment"><?php _e( 'Untrash' ); ?></button> |
+						<button type="button" class="button-link delete-attachment"><?php _e( 'Delete Permanently' ); ?></button>
 					<# } else { #>
 						<button type="button" class="button-link trash-attachment"><?php _ex( 'Trash', 'verb' ); ?></button>
 					<# } #>
