mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-10 21:00:59 +01:00
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:
parent
3c520f16dd
commit
13d010f2d6
@ -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 {
|
||||
|
@ -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 {
|
||||
|
@ -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 {
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user