diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index b09c390..c5548ac 100644
--- a/src/wp-admin/css/common.css
+++ b/src/wp-admin/css/common.css
@@ -1298,6 +1298,7 @@ th.action-links {
 ------------------------------------------------------------------------------*/
 
 .notice,
+.update-message:not(.notice),
 div.updated,
 div.error {
 	background: #fff;
@@ -1305,9 +1306,18 @@ div.error {
 	-webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
 	box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
 	margin: 5px 15px 2px;
+}
+
+.notice,
+div.updated,
+div.error {
 	padding: 1px 12px;
 }
 
+.update-message:not(.notice) {
+	padding: 6.5px 12px;
+}
+
 .notice p,
 .notice-title,
 div.updated p,
@@ -1408,6 +1418,7 @@ div.error {
 }
 
 .update-message p:before,
+.update-message:not(.notice):before,
 .updating-message p:before,
 .updated-message p:before,
 .import-php .updating-message:before,
@@ -1432,6 +1443,7 @@ div.error {
 
 /* Update icon. */
 .update-message p:before,
+.update-message:not(.notice):before,
 .updating-message p:before,
 .import-php .updating-message:before,
 .button.updating-message:before,
@@ -1440,6 +1452,10 @@ div.error {
 	content: "\f463";
 }
 
+.update-message:not(.notice):before {
+	margin-right: 6px;
+}
+
 /* Spins the update icon. */
 .updating-message p:before,
 .import-php .updating-message:before,
@@ -1552,7 +1568,8 @@ form.upgrade .hint {
 	.wrap .notice p:before,
 	.button.installing:before,
 	.button.installed:before,
-	.update-message p:before {
+	.update-message p:before,
+	.update-message:not(.notice):before,{
 		speak: none;
 	}
 }
diff --git a/src/wp-admin/css/list-tables.css b/src/wp-admin/css/list-tables.css
index 8443a72..65339c8 100644
--- a/src/wp-admin/css/list-tables.css
+++ b/src/wp-admin/css/list-tables.css
@@ -1350,11 +1350,19 @@ ul.cat-checklist {
 	padding: 0;
 }
 
-.plugins .plugin-update-tr .notice {
+.plugins .plugin-update-tr .notice, .plugins .plugin-update-tr .update-message:not(.notice) {
 	margin: 5px 20px 15px 40px;
 }
 
-.plugins .notice p {
+.plugins .plugin-update-tr .update-message:not(.notice) {
+	border-left-color: #ffb900;
+}
+
+.plugins .plugin-update-tr .update-message:not(.notice) {
+	background-color: #fff8e5;
+}
+
+.plugins .notice p, .update-message:not(.notice) {
 	margin: 0.5em 0;
 }
 
