Twenty Nineteen: Fixes avatar block size inconsistency.

The avatar block size was different between front and editor. This was because the width and height were added to the avatar class. 

Props poena, naeemhaque, sabernhardt, sakibmd.
Fixes #60664.

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


git-svn-id: http://core.svn.wordpress.org/trunk@58027 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Tammie Lister 2024-06-26 13:48:13 +00:00
parent 3c520f16dd
commit 13d010f2d6
4 changed files with 7 additions and 7 deletions

View File

@ -20,9 +20,9 @@ object {
.avatar {
border-radius: 100%;
display: block;
height: calc(2.25 * #{$size__spacing-unit});
height: auto;
min-height: inherit;
width: calc(2.25 * #{$size__spacing-unit});
width: auto;
}
svg {

View File

@ -6466,9 +6466,9 @@ object {
.avatar {
border-radius: 100%;
display: block;
height: calc(2.25 * 1rem);
height: auto;
min-height: inherit;
width: calc(2.25 * 1rem);
width: auto;
}
svg {

View File

@ -6478,9 +6478,9 @@ object {
.avatar {
border-radius: 100%;
display: block;
height: calc(2.25 * 1rem);
height: auto;
min-height: inherit;
width: calc(2.25 * 1rem);
width: auto;
}
svg {

View File

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