Index: src/wp-admin/css/common.css
===================================================================
--- src/wp-admin/css/common.css	(revision 38205)
+++ src/wp-admin/css/common.css	(working copy)
@@ -1298,6 +1298,7 @@
 ------------------------------------------------------------------------------*/
 
 .notice,
+.update-message,
 div.updated,
 div.error {
 	background: #fff;
@@ -1308,6 +1309,10 @@
 	padding: 1px 12px;
 }
 
+.update-message:not(.notice) { /* back-compat for pre-4.6 */
+	padding: 0.5em 12px;
+}
+
 .notice p,
 .notice-title,
 div.updated p,
@@ -1408,6 +1413,7 @@
 }
 
 .update-message p:before,
+.update-message:not(.notice):before, /* back-compat for pre-4.6 */
 .updating-message p:before,
 .updated-message p:before,
 .import-php .updating-message:before,
@@ -1432,6 +1438,7 @@
 
 /* Update icon. */
 .update-message p:before,
+.update-message:not(.notice):before, /* back-compat for pre-4.6 */
 .updating-message p:before,
 .import-php .updating-message:before,
 .button.updating-message:before,
@@ -1440,6 +1447,10 @@
 	content: "\f463";
 }
 
+.update-message:not(.notice):before { /* back-compat for pre-4.6 */
+	margin-right: 6px;
+}
+
 /* Spins the update icon. */
 .updating-message p:before,
 .import-php .updating-message:before,
@@ -1552,7 +1563,8 @@
 	.wrap .notice p:before,
 	.button.installing:before,
 	.button.installed:before,
-	.update-message p:before {
+	.update-message p:before,
+	.update-message:not(.notice):before { /* back-compat for pre-4.6 */
 		speak: none;
 	}
 }
Index: src/wp-admin/css/list-tables.css
===================================================================
--- src/wp-admin/css/list-tables.css	(revision 38205)
+++ src/wp-admin/css/list-tables.css	(working copy)
@@ -1350,11 +1350,20 @@
 	padding: 0;
 }
 
-.plugins .plugin-update-tr .notice {
+.plugins .plugin-update-tr .notice,
+.plugins .plugin-update-tr .update-message:not(.notice) { /* back-compat for pre-4.6 */
 	margin: 5px 20px 15px 40px;
 }
 
-.plugins .notice p {
+.plugins .plugin-update-tr .update-message:not(.notice) { /* back-compat for pre-4.6 */
+	border-left-color: #ffb900;
+	background-color: #fff8e5;
+	-webkit-box-shadow: none;
+	box-shadow: none;
+}
+
+.plugins .notice p,
+.update-message:not(.notice) { /* back-compat for pre-4.6 */
 	margin: 0.5em 0;
 }
 
