diff --git a/src/js/_enqueues/admin/common.js b/src/js/_enqueues/admin/common.js
index 75c77b3bac..1f8581e610 100644
--- a/src/js/_enqueues/admin/common.js
+++ b/src/js/_enqueues/admin/common.js
@@ -882,28 +882,6 @@ $document.ready( function() {
 			});
 	});
 
-	/**
-	 * Shows row actions on focus of its parent container element or any other elements contained within.
-	 *
-	 * @return {void}
-	 */
-	$( '#wpbody-content' ).on({
-		focusin: function() {
-			clearTimeout( transitionTimeout );
-			focusedRowActions = $( this ).find( '.row-actions' );
-			// transitionTimeout is necessary for Firefox, but Chrome won't remove the CSS class without a little help.
-			$( '.row-actions' ).not( this ).removeClass( 'visible' );
-			focusedRowActions.addClass( 'visible' );
-		},
-		focusout: function() {
-			// Tabbing between post title and .row-actions links needs a brief pause, otherwise
-			// the .row-actions div gets hidden in transit in some browsers (ahem, Firefox).
-			transitionTimeout = setTimeout( function() {
-				focusedRowActions.removeClass( 'visible' );
-			}, 30 );
-		}
-	}, '.has-row-actions' );
-
 	// Toggle list table rows on small screens.
 	$( 'tbody' ).on( 'click', '.toggle-row', function() {
 		$( this ).closest( 'tr' ).toggleClass( 'is-expanded' );
diff --git a/src/wp-admin/css/list-tables.css b/src/wp-admin/css/list-tables.css
index 3e55bb2d0e..e46d3a5f16 100644
--- a/src/wp-admin/css/list-tables.css
+++ b/src/wp-admin/css/list-tables.css
@@ -806,8 +806,6 @@ p.pagenav {
 	color: #ddd;
 	font-size: 13px;
 	padding: 2px 0 0;
-	position: relative;
-	left: -9999em;
 }
 
 /* ticket #34150 */
@@ -820,20 +818,6 @@ p.pagenav {
 	color: #000;
 }
 
-.no-js .row-actions,
-tr:hover .row-actions,
-.mobile .row-actions,
-.row-actions.visible,
-.comment-item:hover .row-actions {
-	position: static;
-}
-
-/* deprecated */
-.row-actions-visible {
-	padding: 2px 0 0;
-}
-
-
 /*------------------------------------------------------------------------------
   10.1 - Inline Editing
 ------------------------------------------------------------------------------*/
