From 525327e82272632f779c614fa3143e1ff568393b Mon Sep 17 00:00:00 2001 From: Kelly Choyce-Dwan Date: Mon, 23 May 2022 16:46:06 +0000 Subject: [PATCH] Administration: Fix image overlap in Dashboard welcome panel. Use longhand positioning properties (top, right, etc) so that the rtlcss build process can correctly adjust the layout for the RTL CSS. Props ryelle, costdev, ironprogrammer, hellofromtonya. Fixes #55793. git-svn-id: https://develop.svn.wordpress.org/trunk@53437 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/dashboard.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/css/dashboard.css b/src/wp-admin/css/dashboard.css index 5de0308846..5a11e1273b 100644 --- a/src/wp-admin/css/dashboard.css +++ b/src/wp-admin/css/dashboard.css @@ -155,7 +155,9 @@ .welcome-panel-header-image { position: absolute; - inset: -1rem var(--about-header-bg-offset-inline) 0 auto; + top: -1rem; + right: var(--about-header-bg-offset-inline); + bottom: 0; width: var(--about-header-bg-width); height: auto; }