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.


Built from https://develop.svn.wordpress.org/trunk@53437


git-svn-id: http://core.svn.wordpress.org/trunk@53026 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryelle 2022-05-23 16:48:15 +00:00
parent 6e15f7fc9a
commit c07f05ab86
5 changed files with 9 additions and 5 deletions

View File

@ -156,7 +156,9 @@
.welcome-panel-header-image {
position: absolute;
inset: -1rem var(--about-header-bg-offset-inline) 0 auto;
top: -1rem;
left: var(--about-header-bg-offset-inline);
bottom: 0;
width: var(--about-header-bg-width);
height: auto;
}

File diff suppressed because one or more lines are too long

View File

@ -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;
}

File diff suppressed because one or more lines are too long

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.1-alpha-53436';
$wp_version = '6.1-alpha-53437';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.