diff --git a/src/wp-admin/admin-header.php b/src/wp-admin/admin-header.php
index 3306c9125b..61a2df1734 100644
|
a
|
b
|
if ( is_network_admin() ) { |
| 294 | 294 | * @since 3.1.0 |
| 295 | 295 | */ |
| 296 | 296 | do_action( 'user_admin_notices' ); |
| 297 | | } else { |
| | 297 | } elseif ( 'site-health' !== $current_screen->id && 'options-privacy' !== $current_screen->id ) { |
| 298 | 298 | /** |
| 299 | 299 | * Prints admin screen notices. |
| 300 | 300 | * |
diff --git a/src/wp-admin/css/edit.css b/src/wp-admin/css/edit.css
index 7fa904ae1a..44dc3c0c11 100644
|
a
|
b
|
form#tags-filter { |
| 736 | 736 | line-height: 1.3; |
| 737 | 737 | } |
| 738 | 738 | |
| | 739 | /* Privacy Settings/Health Check admin notices */ |
| | 740 | .privacy-settings-admin-notices, |
| | 741 | .health-check-admin-notices { |
| | 742 | background: #fff; |
| | 743 | } |
| | 744 | |
| | 745 | .privacy-settings-admin-notices .notice, |
| | 746 | .health-check-admin-notices .notice { |
| | 747 | margin-top: 25px; |
| | 748 | margin-left: 22px; |
| | 749 | } |
| | 750 | |
| 739 | 751 | /* Header */ |
| 740 | 752 | .privacy-settings-header, |
| 741 | 753 | .health-check-header { |
diff --git a/src/wp-admin/options-privacy.php b/src/wp-admin/options-privacy.php
index 008ea30fcf..6fd8492c97 100644
|
a
|
b
|
wp_enqueue_script( 'privacy-tools' ); |
| 148 | 148 | require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 149 | 149 | |
| 150 | 150 | ?> |
| | 151 | <div class="privacy-settings-admin-notices"> |
| | 152 | <?php do_action( 'admin_notices' ); ?> |
| | 153 | </div> |
| 151 | 154 | <div class="privacy-settings-header"> |
| 152 | 155 | <div class="privacy-settings-title-section"> |
| 153 | 156 | <h1> |
diff --git a/src/wp-admin/site-health.php b/src/wp-admin/site-health.php
index dfdf2b27c9..ec194c58af 100644
|
a
|
b
|
$health_check_site_status->check_wp_version_check_exists(); |
| 95 | 95 | |
| 96 | 96 | require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 97 | 97 | ?> |
| | 98 | <div class="health-check-admin-notices"> |
| | 99 | <?php do_action( 'admin_notices' ); ?> |
| | 100 | </div> |
| 98 | 101 | <div class="health-check-header"> |
| 99 | 102 | <div class="health-check-title-section"> |
| 100 | 103 | <h1> |