From 2056514314e193d7c286d789d2c23eb1a84aa9a6 Mon Sep 17 00:00:00 2001 From: Manish Date: Fri, 6 Feb 2026 12:25:07 +0530 Subject: [PATCH] Fix: Update message slightly uneven Fixes #64588 Changes the margin from 6px 0 to 7px 0 for .notice p and related selectors to ensure equal top and bottom margins, avoiding rounding issues that occur with 0.5em (which computes to 6.5px and can round differently). --- src/wp-admin/css/common.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css index e062a471d7150..f6dfe1599c7a3 100644 --- a/src/wp-admin/css/common.css +++ b/src/wp-admin/css/common.css @@ -1436,7 +1436,7 @@ div[class="update-message"] { /* back-compat for pre-4.6 */ div.updated p, div.error p, .form-table td .notice p { - margin: 0.5em 0; + margin: 7px 0; padding: 2px; }