Help/About: Improve vertical alignment in the Additional Design Tools section.
This makes a transparent circle SVG smaller by removing empty space to match the height of other images in the same section, so that all three columns are aligned correctly. Follow-up to [53339]. Props sabernhardt, weboccults, ironprogrammer, webcommsat, marybaum, oglekler. Fixes #56210. Built from https://develop.svn.wordpress.org/trunk@53924 git-svn-id: http://core.svn.wordpress.org/trunk@53483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
dabe0df577
commit
cf54dd1b24
|
@ -206,10 +206,10 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
|||
</div>
|
||||
<div class="column">
|
||||
<div class="about__image aligncenter">
|
||||
<svg width="41" height="40" viewBox="0 0 41 40" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<circle cx="20.5" cy="20" r="12" fill="#fff"/>
|
||||
<circle cx="20.5" cy="20" r="12" fill="url(#a)"/>
|
||||
<circle cx="20.5" cy="20" r="12" stroke="#1E1E1E" stroke-width="2"/>
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<circle cx="16" cy="16" r="12" fill="#fff"/>
|
||||
<circle cx="16" cy="16" r="12" fill="url(#a)"/>
|
||||
<circle cx="16" cy="16" r="12" stroke="#1E1E1E" stroke-width="2"/>
|
||||
<defs>
|
||||
<pattern id="a" patternContentUnits="objectBoundingBox" width=".385" height=".385">
|
||||
<use xlink:href="#b" transform="scale(.01923)"/>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-alpha-53922';
|
||||
$wp_version = '6.1-alpha-53924';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue