Site update.

This commit is contained in:
Greta Thunberg 2022-12-15 17:47:31 +01:00
parent 125da65f87
commit e17ef75467
1361 changed files with 113686 additions and 84499 deletions

View File

@ -58,7 +58,7 @@
<h3>Recommendations</h3> <h3>Recommendations</h3>
<ul> <ul>
<li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li> <li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li>
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.7</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.2</strong> or greater.</li> <li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.7</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.3</strong> or greater.</li>
<li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li> <li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
<li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li> <li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li>
<li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li> <li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li>
@ -67,8 +67,8 @@
<h2>Online Resources</h2> <h2>Online Resources</h2>
<p>If you have any questions that are not addressed in this document, please take advantage of WordPress&#8217; numerous online resources:</p> <p>If you have any questions that are not addressed in this document, please take advantage of WordPress&#8217; numerous online resources:</p>
<dl> <dl>
<dt><a href="https://codex.wordpress.org/">The WordPress Codex</a></dt> <dt><a href="https://wordpress.org/support/">HelpHub</a></dt>
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd> <dd>HelpHub is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
<dt><a href="https://wordpress.org/news/">The WordPress Blog</a></dt> <dt><a href="https://wordpress.org/news/">The WordPress Blog</a></dt>
<dd>This is where you&#8217;ll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd> <dd>This is where you&#8217;ll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd>
<dt><a href="https://planet.wordpress.org/">WordPress Planet</a></dt> <dt><a href="https://planet.wordpress.org/">WordPress Planet</a></dt>

View File

@ -105,10 +105,11 @@ add_action( 'wp_head', 'do_activate_header' );
function wpmu_activate_stylesheet() { function wpmu_activate_stylesheet() {
?> ?>
<style type="text/css"> <style type="text/css">
form { margin-top: 2em; } .wp-activate-container { width: 90%; margin: 0 auto; }
#submit, #key { width: 90%; font-size: 24px; } .wp-activate-container form { margin-top: 2em; }
#language { margin-top: .5em; } #submit, #key { width: 100%; font-size: 24px; box-sizing: border-box; }
.error { background: #f66; } #language { margin-top: 0.5em; }
.wp-activate-container .error { background: #f66; color: #333; }
span.h3 { padding: 0 8px; font-size: 1.3em; font-weight: 600; } span.h3 { padding: 0 8px; font-size: 1.3em; font-weight: 600; }
</style> </style>
<?php <?php
@ -130,7 +131,7 @@ $blog_details = get_blog_details();
<form name="activateform" id="activateform" method="post" action="<?php echo network_site_url( $blog_details->path . 'wp-activate.php' ); ?>"> <form name="activateform" id="activateform" method="post" action="<?php echo network_site_url( $blog_details->path . 'wp-activate.php' ); ?>">
<p> <p>
<label for="key"><?php _e( 'Activation Key:' ); ?></label> <label for="key"><?php _e( 'Activation Key:' ); ?></label>
<br /><input type="text" name="key" id="key" value="" size="50" /> <br /><input type="text" name="key" id="key" value="" size="50" autofocus="autofocus" />
</p> </p>
<p class="submit"> <p class="submit">
<input id="submit" type="submit" name="Submit" class="submit" value="<?php esc_attr_e( 'Activate' ); ?>" /> <input id="submit" type="submit" name="Submit" class="submit" value="<?php esc_attr_e( 'Activate' ); ?>" />
@ -213,9 +214,5 @@ $blog_details = get_blog_details();
?> ?>
</div> </div>
</div> </div>
<script type="text/javascript">
var key_input = document.getElementById('key');
key_input && key_input.focus();
</script>
<?php <?php
get_footer( 'wp-activate' ); get_footer( 'wp-activate' );

View File

@ -22,8 +22,13 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__header"> <div class="about__header">
<div class="about__header-title"> <div class="about__header-title">
<h1> <h1>
<?php _e( 'WordPress' ); ?> <?php
<span class="screen-reader-text"><?php echo $display_version; ?></span> printf(
/* translators: %s: Version number. */
__( 'WordPress %s' ),
$display_version
);
?>
</h1> </h1>
</div> </div>
@ -37,6 +42,37 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
</nav> </nav>
</div> </div>
<div class="about__section changelog">
<div class="column">
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
<p>
<?php
printf(
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
_n(
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
50
),
'6.1.1',
'50'
);
?>
<?php
printf(
/* translators: %s: HelpHub URL. */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version. */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '6.1.1' )
)
);
?>
</p>
</div>
</div>
<div class="about__section"> <div class="about__section">
<div class="column"> <div class="column">
<h2 class="aligncenter"> <h2 class="aligncenter">
@ -49,214 +85,437 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
?> ?>
</h2> </h2>
<p class="is-subheading"> <p class="is-subheading">
<?php _e( 'WordPress 6.0 includes more than 500 enhancements and 400 bug fixes. This page highlights several key advancements aimed at making your WordPress content-creating and site-building experience more feature-rich and intuitive. You will also find resources for developers and anyone wanting a deeper understanding of WordPress.' ); ?> <?php _e( 'This page highlights some of the most significant changes to the product since the May 2022 release of WordPress 6.0. You will also find resources for developers and anyone seeking a deeper understanding of WordPress.' ); ?>
</p> </p>
</div> </div>
</div> </div>
<div class="about__section has-2-columns"> <div class="about__section has-2-columns">
<div class="column about__image is-vertically-aligned-top">
<img src="https://s.w.org/images/core/6.0/about-60-writing-improvements.png" alt="" />
</div>
<div class="column"> <div class="column">
<h3> <div class="about__image" style="background-color:#353535;">
<?php _e( 'Enhanced Writing Experience' ); ?> <img src="https://s.w.org/images/core/6.1/about-61-style-variations.webp" alt="" />
</h3>
<p>
<?php _e( 'Writing improvements abound, whether you&#8217;re writing a brand new post or adding elements to an existing page. Explore more ways to streamline your content creation process, including:' ); ?>
</p>
<ul>
<li><?php _e( 'Select text across multiple blocks and edit it all at once.' ); ?></li>
<li><?php _e( 'Type two open brackets <code>[[</code> to quickly access the link menu.' ); ?></li>
<li><?php _e( 'Keep existing styles when you transform some blocks from one kind to another—from a Paragraph block to a Code block, for instance.' ); ?></li>
<li><?php _e( 'Create customized buttons and any new buttons you make will retain the style customizations automatically.' ); ?></li>
<li><?php _e( 'Make tag clouds and social icons even more appealing with updated settings and controls, and a new outline style for the tag cloud.' ); ?></li>
</ul>
</div>
</div>
<div class="about__section has-2-columns is-wider-right">
<div class="column">
<h3>
<?php _e( 'Style Switching' ); ?>
</h3>
<p>
<?php _e( 'Block themes now include the option to contain multiple style variations. This expands the new Style system even further and enables shortcuts to switch the look and feel of your site all within a single theme. You can change both the available settings, like the font weight, and the style options, like the default color palette. Change the look and feel of your site with just a few clicks.' ); ?>
</p>
</div>
<div class="column about__image is-vertically-aligned-top">
<img src="https://s.w.org/images/core/6.0/about-60-style-switching.gif" alt="" />
</div>
</div>
<div class="about__section has-1-column">
<div class="column about__image is-vertically-aligned-top">
<img src="https://s.w.org/images/core/6.0/about-60-templates.png" alt="" />
</div>
<div class="column" style="padding-bottom:0">
<h3>
<?php _e( 'More Template Choices' ); ?>
</h3>
<p>
<?php _e( 'WordPress 6.0 includes five new template options: author, date, categories, tag, and taxonomy. These additional templates provide greater flexibility for content creators. Tailor each with the tools you already know or with the following new options in this release.' ); ?>
</p>
</div>
</div>
<div class="about__section has-3-columns">
<div class="column">
<div class="about__image">
<img src="https://s.w.org/images/core/6.0/about-60-sub-feature-1.png" alt="" />
</div> </div>
<p><?php _e( 'Featured images can be used in the cover block.' ); ?></p>
<p><?php _e( 'New featured image sizing controls make it easier to get the results you want.' ); ?></p>
</div> </div>
<div class="column"> <div class="column is-vertically-aligned-center">
<div class="about__image"> <h3><?php _e( 'A new default theme powered by 10 distinct style variations' ); ?></h3>
<img src="https://s.w.org/images/core/6.0/about-60-sub-feature-2.png" alt="" />
</div>
<p><?php _e( 'While editing a template, at the root, or between blocks, the quick inserter shows you patterns and template parts to help you work faster and discover new layout options.' ); ?></p>
</div>
<div class="column">
<div class="about__image">
<img src="https://s.w.org/images/core/6.0/about-60-sub-feature-3.png" alt="" />
</div>
<p><?php _e( 'The query block supports filtering on multiple authors, support for custom taxonomies, and support for customizing what is shown when there are no results.' ); ?></p>
</div>
</div>
<div class="about__section has-2-columns is-wider-left">
<div class="column about__image is-vertically-aligned-top">
<img src="https://s.w.org/images/core/6.0/about-60-integrated-patterns.png" alt="" />
</div>
<div class="column">
<h3>
<?php _e( 'Integrated Patterns' ); ?>
</h3>
<p> <p>
<?php <?php
printf( printf(
/* translators: %s Working with Patterns dev note link. */ /* translators: 1: Variation announcement post URL, 2: Accessibility-ready handbook page. */
__( 'Patterns will now appear when you need them in even more places, like in the quick inserter or when creating a new header or footer. If you&#8217;re a block theme author, you can even <a href="%s">register patterns from the Pattern Directory using <code>theme.json</code></a>, enabling you to prioritize specific patterns that are most helpful to your theme&#8217;s users.' ), __( 'Building on the foundational elements in the 5.9 and 6.0 releases for block themes and style variations, the new default theme, Twenty Twenty-Three, includes <a href="%1$s">10 different styles</a> and is &#147;<a href="%2$s">Accessibility Ready</a>&#148;.' ),
'https://make.wordpress.org/core/2022/05/02/new-features-for-working-with-patterns-and-themes-in-wordpress-6-0/' 'https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/',
'https://make.wordpress.org/themes/handbook/review/accessibility/'
); );
?> ?>
</p> </p>
</div> </div>
</div> </div>
<div class="about__section has-2-columns is-wider-right"> <div class="about__section has-2-columns">
<div class="column"> <div class="column is-vertically-aligned-center">
<h3> <h3><?php _e( 'A better creator experience with refined and additional templates' ); ?></h3>
<?php _e( 'Better List View' ); ?>
</h3>
<p> <p>
<?php _e( 'New keyboard shortcuts enable you to select multiple blocks from the list view, modify them in bulk, and drag-and-drop them within the list. List View can be opened and closed easily; it comes collapsed by default and it automatically expands to the current selection whenever you select a block.' ); ?> <?php
printf(
/* translators: 1: Link to template options dev note, 2: Link to template creation dev note. */
__( '<a href="%1$s">New templates</a> include a custom template for posts and pages in the Site Editor. Search-and-replace tools speed up the design of <a href="%2$s">template parts</a>.' ),
'https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/',
'https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/'
);
?>
</p> </p>
</div> </div>
<div class="column about__image is-vertically-aligned-top"> <div class="column">
<img src="https://s.w.org/images/core/6.0/about-60-list-view.png" alt="" /> <div class="about__image has-subtle-background-color">
<img src="https://s.w.org/images/core/6.1/about-61-templates.webp" alt="" />
</div>
</div> </div>
</div> </div>
<div class="about__section has-2-columns is-wider-left"> <div class="about__section has-2-columns">
<div class="column about__image is-vertically-aligned-top">
<img src="https://s.w.org/images/core/6.0/about-60-block-locking-controls.png" alt="" />
</div>
<div class="column"> <div class="column">
<h3> <div class="about__image has-subtle-background-color">
<?php _e( 'Block Locking Controls' ); ?> <img src="https://s.w.org/images/core/6.1/about-61-design-tools.webp" alt="" />
</h3> </div>
</div>
<div class="column is-vertically-aligned-center">
<h3><?php _e( 'More consistency and control across design tools' ); ?></h3>
<p> <p>
<?php _e( 'Now you can lock your blocks. Choose to disable the option to move a block, remove a block, or both. This simplifies project handover, allowing your clients to unleash their creativity without worrying about accidentally breaking their site in the process.' ); ?> <?php
printf(
/* translators: %s: Link to layout support refactor dev note. */
__( 'Upgrades to the <a href="%s">controls for design elements and blocks</a> make the layout and site-building process more consistent, complete, and intuitive.' ),
'https://make.wordpress.org/core/2022/10/11/roster-of-design-tools-per-block/'
);
?>
</p> </p>
</div> </div>
</div> </div>
<hr class="is-large" /> <div class="about__section has-2-columns">
<div class="column is-vertically-aligned-center">
<div class="about__section" style="margin-bottom:0;"> <h3><?php _e( 'Menus just got easier to create and manage' ); ?></h3>
<div class="column"> <p>
<h2 class="aligncenter"> <?php
<?php _e( 'Additional Design Tools' ); ?> printf(
</h2> /* translators: %s: Link to navigation block fallback dev note. */
<p class="is-subheading aligncenter"> __( '<a href="%s">New fallback options</a> in the navigation block mean you can edit the menu thats open; no searching needed. Plus, the controls for choosing and working on menus have their own place in the block settings. The mobile menu system also gets an upgrade with new features, including different icon options, to make the menu yours.' ),
<?php _e( 'Design tools grow more powerful and intuitive with each release.' ); ?><br /> 'https://make.wordpress.org/core/2022/09/27/navigation-block-fallback-behavior-in-wp-6-1-dev-note/'
<?php _e( 'Some highlights for 6.0 include:' ); ?> );
?>
</p> </p>
</div> </div>
<div class="column">
<div class="about__image has-subtle-background-color">
<img src="https://s.w.org/images/core/6.1/about-61-navigation.webp" alt="" />
</div>
</div>
</div> </div>
<div class="about__section has-3-columns" style="margin-bottom:0;"> <div class="about__section has-2-columns">
<div class="column"> <div class="column">
<div class="about__image aligncenter"> <div class="about__image has-accent-background-color">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <img src="https://s.w.org/images/core/6.1/about-61-document-settings.webp" alt="" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.203 6.892c.776-.963 1.297-1.559 1.297-1.559s.521.596 1.297 1.559c2.266 2.81 6.703 8.75 6.703 12.155 0 4.572-3.18 7.62-8 7.62s-8-3.048-8-7.62c0-3.404 4.437-9.345 6.703-12.155Zm1.297 1.58a64.727 64.727 0 0 0-2.361 3.15c-.972 1.388-1.911 2.87-2.6 4.248-.72 1.44-1.039 2.52-1.039 3.177 0 1.805.616 3.164 1.573 4.077.965.921 2.441 1.542 4.427 1.542 1.986 0 3.462-.621 4.427-1.542.957-.913 1.573-2.272 1.573-4.077 0-.657-.32-1.738-1.039-3.177-.689-1.378-1.628-2.86-2.6-4.247A64.727 64.727 0 0 0 16.5 8.47Z" fill="#1E1E1E"/>
</svg>
</div> </div>
<p><?php _e( 'A new color panel design saves space, but still shows your options at a glance.' ); ?></p> <h3><?php _e( 'Improved layout and visualization of document settings' ); ?></h3>
<p><?php _e( 'A cleaner, better-organized display helps you easily view and manage important post and page settings, especially the template picker and scheduler.' ); ?></p>
</div> </div>
<div class="column"> <div class="column">
<div class="about__image aligncenter"> <div class="about__image has-accent-background-color">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <img src="https://s.w.org/images/core/6.1/about-61-lock.webp" alt="" />
<path d="M4.5 9.333v13.334h2.667V9.333H4.5ZM9.833 6.667V4h13.334v2.667H9.833ZM25.833 9.333v13.334H28.5V9.333h-2.667ZM23.167 28v-2.667H9.833V28h13.334Z" fill="#1E1E1E"/>
</svg>
</div> </div>
<p><?php _e( 'New border controls offer a simpler way to set your border exactly as you like it.' ); ?></p> <h3><?php _e( 'One-click lock settings for all inner blocks' ); ?></h3>
</div> <p><?php _e( 'When locking blocks, a new toggle lets you apply your lock settings to all the blocks in a containing block like the group, cover, and column blocks.' ); ?></p>
<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"/>
<defs>
<pattern id="a" patternContentUnits="objectBoundingBox" width=".385" height=".385">
<use xlink:href="#b" transform="scale(.01923)"/>
</pattern>
<image id="b" width="20" height="20" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAfUlEQVQ4Ee2TSw6AMAhES4/C/a/EWTAuptFJR4m6MFE25dO88ikWEdkmkpnNzEbE3Yd+pHQV3MLUnZlfAmeXK74vAtdpPin96jRVEu8fimWxiRGx2xwuGZtVLvms14iXgZyRsn+g6oz28ye53UNMF0+WgZwJAHyWgZwJg2AvIbMZwqZwPC4AAAAASUVORK5CYII="/>
</defs>
</svg>
</div>
<p><?php _e( 'Transparency levels for your colors allow for even more creative color options.' ); ?></p>
</div> </div>
</div> </div>
<div class="about__section has-3-columns"> <div class="about__section has-3-columns">
<div class="column"> <div class="column">
<div class="about__image aligncenter"> <div class="column about__image is-edge-to-edge has-accent-background-color">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <img src="https://s.w.org/images/core/6.1/about-61-sub-feature-1.webp" alt="" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.165 7.335h9.333c.369 0 .667.298.667.667v9.333a.667.667 0 0 1-.667.667h-4v-3.333a2.667 2.667 0 0 0-2.666-2.667h-3.334v-4c0-.369.299-.667.667-.667Zm-2.667 4.667v-4a2.667 2.667 0 0 1 2.667-2.667h9.333a2.667 2.667 0 0 1 2.667 2.667v9.333a2.667 2.667 0 0 1-2.667 2.667h-4v4a2.667 2.667 0 0 1-2.666 2.667H8.499a2.667 2.667 0 0 1-2.667-2.667V14.67a2.667 2.667 0 0 1 2.667-2.667h4Zm6 8v4a.667.667 0 0 1-.666.667H8.499a.667.667 0 0 1-.667-.667V14.67c0-.368.299-.667.667-.667h4v3.333a2.667 2.667 0 0 0 2.666 2.667H18.5Zm0-2h-3.333a.667.667 0 0 1-.667-.667v-3.333h3.334c.368 0 .667.299.667.667v3.333Z" fill="#1E1E1E"/>
</svg>
</div> </div>
<p><?php _e( 'Control gaps, margins, typography, and more on a collection of blocks, all at once, in the Group block.' ); ?></p> <h3 class="is-smaller-heading"><?php _e( 'Improved block placeholders' ); ?></h3>
<p><?php _e( 'Various blocks have improved placeholders that reflect customization options to help you design your site and its content. For example, the Image block placeholder displays custom borders and duotone filters even before selecting an image.' ); ?></p>
</div> </div>
<div class="column"> <div class="column">
<div class="about__image aligncenter"> <div class="column about__image is-edge-to-edge has-accent-background-color">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <img src="https://s.w.org/images/core/6.1/about-61-sub-feature-2.webp" alt="" />
<path d="M12.833 8.667h-7v2h7c.368 0 .667.299.667.667v9.333a.667.667 0 0 1-.667.667h-7v2h7a2.667 2.667 0 0 0 2.667-2.667v-9.333a2.667 2.667 0 0 0-2.667-2.667ZM20.167 8.667h7v2h-7a.667.667 0 0 0-.667.667v9.333c0 .368.299.667.667.667h7v2h-7a2.667 2.667 0 0 1-2.667-2.667v-9.333a2.667 2.667 0 0 1 2.667-2.667Z" fill="#1E1E1E"/>
</svg>
</div> </div>
<p><?php _e( 'Switch between stack, row, and group variations to position groups of blocks with more layout flexibility.' ); ?></p> <h3 class="is-smaller-heading"><?php _e( 'Compose richer lists and quotes with inner blocks' ); ?></h3>
<p><?php _e( 'The List and Quote blocks now support inner blocks, allowing for more flexible and rich compositions like adding headings inside your Quote blocks.' ); ?></p>
</div> </div>
<div class="column"> <div class="column">
<div class="about__image aligncenter"> <div class="column about__image is-edge-to-edge has-accent-background-color">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <img src="https://s.w.org/images/core/6.1/about-61-sub-feature-3.webp" alt="" />
<path d="M28.5 10.667v14.667A2.665 2.665 0 0 1 25.835 28H8.5" stroke="#1E1E1E" stroke-width="2"/>
<rect x="5.5" y="5" width="18" height="18" rx="1.167" stroke="#1E1E1E" stroke-width="2"/>
<path d="M5.834 18.667 10.786 16l3.715 1.778 4.333-3.111 4.333 3.111" stroke="#1E1E1E" stroke-width="2" stroke-linejoin="round"/>
</svg>
</div> </div>
<p><?php _e( 'Use the gap support functionality in the Gallery block to create different looksfrom adding spacing between all images, to removing spacing altogether.' ); ?></p> <h3 class="is-smaller-heading"><?php _e( 'More responsive text with fluid typography' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link to fluid typography demo. */
__( '<a href="%s">Fluid typography</a> lets you define font sizes that adapt for easy reading in any screen size.' ),
'https://make.wordpress.org/core/2022/10/03/fluid-font-sizes-in-wordpress-6-1/'
);
?>
</p>
</div> </div>
</div> </div>
<hr class="is-large" /> <hr />
<div class="about__section has-2-columns">
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.25 18.75v2.5h1.5v-2.5h2.5v-1.5h-2.5v-2.5h-1.5v2.5h-2.5v1.5h2.5zm-6.5-1.5h-6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-6h-1.5v6a.5.5 0 0 1-.5.5h-12a.5.5 0 0 1-.5-.5v-12a.5.5 0 0 1 .5-.5h6v-1.5z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Add starter patterns to any post type' ); ?></h3>
<p><?php _e( 'In WordPress 6.0, when you created a new page, you would see suggested patterns so you did not have to start with a blank page. In 6.1, you will also see the starter patterns modal when you create a new instance of any post type.' ); ?></p>
</div>
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.99 23.16a4.628 4.628 0 1 1-9.257 0 4.628 4.628 0 0 1 9.257 0zm1.5 0a6.128 6.128 0 0 1-10.252 4.535l-3.74 3.273-.988-1.13 3.75-3.28a6.128 6.128 0 1 1 11.23-3.397z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Find block themes faster' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link to Block Themes on WordPress.org. */
__( 'The Themes Directory has <a href="%s">a filter for block themes</a>, and a pattern preview gives a better sense of what the theme might look like while exploring different themes and patterns.' ),
esc_url( __( 'https://wordpress.org/themes/tags/full-site-editing/' ) )
);
?>
</p>
</div>
</div>
<div class="about__section has-2-columns">
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.29 16.836a1 1 0 0 1 .986-.836h1.306a1 1 0 0 1 .986.836l.244 1.466c.788.26 1.503.679 2.108 1.218l1.393-.522a1 1 0 0 1 1.217.437l.653 1.13a1 1 0 0 1-.23 1.273l-1.148.944a6.025 6.025 0 0 1 0 2.435l1.148.946a1 1 0 0 1 .23 1.272l-.652 1.13a1 1 0 0 1-1.217.437l-1.394-.522c-.605.54-1.32.958-2.108 1.218l-.244 1.466a1 1 0 0 1-.986.836h-1.306a1 1 0 0 1-.987-.836l-.244-1.466a5.994 5.994 0 0 1-2.108-1.218l-1.394.522a1 1 0 0 1-1.216-.436l-.653-1.131a1 1 0 0 1 .23-1.272l1.148-.946a6.028 6.028 0 0 1 0-2.435l-1.147-.944a1 1 0 0 1-.23-1.273l.652-1.13a1 1 0 0 1 1.217-.437l1.393.522a5.996 5.996 0 0 1 2.108-1.218l.244-1.466zM26.928 24a3 3 0 1 1-6 0 3 3 0 0 1 6 0z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Keep your Site Editor settings for later' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link to block editor preferences dev note. */
__( 'Site Editor settings are now <a href="%s">persistent for each user</a>. This means your settings will now be consistent across browsers and devices.' ),
'https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/'
);
?>
</p>
</div>
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31 24a7 7 0 0 1-7 7V17a7 7 0 0 1 7 7zm-7-8a8 8 0 1 1 0 16 8 8 0 0 1 0-16z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'A streamlined style system' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link style engine dev note. */
__( 'The CSS rules for margin, padding, typography, colors, and borders within the <a href="%s">styles engine</a> are now all in one place, reducing time spent on layout-specific tasks and helps to generate semantic class names.' ),
'https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/'
);
?>
</p>
</div>
</div>
<div class="about__section has-2-columns">
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path d="M24 18.285a1.58 1.58 0 0 1-1.159-.484 1.58 1.58 0 0 1-.484-1.159c0-.45.162-.836.484-1.158A1.58 1.58 0 0 1 24 15c.45 0 .836.161 1.159.484.322.322.483.708.483 1.158 0 .45-.16.837-.483 1.16a1.581 1.581 0 0 1-1.16.483zM21.592 33V21.008a44.174 44.174 0 0 1-2.958-.316 28.99 28.99 0 0 1-2.734-.517l.337-1.35c1.275.3 2.543.514 3.803.641 1.26.128 2.58.191 3.96.191s2.7-.063 3.96-.19a29.603 29.603 0 0 0 3.802-.642l.338 1.35c-.87.21-1.781.383-2.734.517-.952.136-1.939.24-2.959.316V33h-1.35v-5.85h-2.115V33h-1.35z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Improved admin and editor accessibility' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link to accessibility improvements dev note. */
__( 'More than 40 improvements in accessibility include resolving focus loss problems in the editor, improving form labels and audible messages, making alternative text easier to edit, and fixing the sub-menu overlap in the expanded admin side navigation at smaller screen sizes and higher zoom levels. Learn more about <a href="%s">accessibility in WordPress</a>.' ),
'https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/'
);
?>
</p>
</div>
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.019 25.517l-4.258 4.385-.718-.697 4.212-4.337-5.752-.025.005-1 5.826.025-3.997-4.116.717-.696 3.952 4.07-.03-5.623 1-.005.03 5.567 3.894-4.01.717.697-4.007 4.126 6.046.026-.005 1-5.942-.025 4.201 4.326-.717.697-4.174-4.298.032 6.048-1 .006-.032-6.14z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Other notes of interest' ); ?></h3>
<p><?php _e( '6.1 includes a new time-to-read feature showing content authors the approximate time-to-read values for pages, posts, and custom post types.' ); ?></p>
<p>
<?php
printf(
/* translators: %s: "General Settings" admin page title, linked to the page if the user can edit options. */
__( 'The site tagline is empty by default in new sites but can be modified in %s.' ),
current_user_can( 'manage_options' ) ? '<a href="' . esc_url( admin_url( 'options-general.php' ) ) . '">' . __( 'General Settings' ) . '</a>' : __( 'General Settings' )
);
?>
</p>
<p><?php _e( 'A new modal design offers a background blur effect, making it easier to focus on the task at hand.' ); ?></p>
</div>
</div>
<div class="about__section has-2-columns">
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<rect x="11" y="17" width="26" height="14" rx="7" fill="#fff"/>
<circle cx="18" cy="24" r="4" fill="#1E1E1E"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Updated interface options and features' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link to styling elements dev note. */
__( 'Updates include <a href="%s">styling elements</a> like buttons, citations, and links globally; controlling hover, active, and focus states for links using theme.json (not available to control in the interface yet); and customizing outline support for blocks and elements, among other features.' ),
'https://make.wordpress.org/core/2022/10/10/styling-elements-in-block-themes/'
);
?>
</p>
</div>
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 16h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H18a2 2 0 0 1-2-2V18a2 2 0 0 1 2-2zm12 1.5H18a.5.5 0 0 0-.5.5v3h13v-3a.5.5 0 0 0-.5-.5zm.5 5H22v8h8a.5.5 0 0 0 .5-.5v-7.5zm-10 0h-3V30a.5.5 0 0 0 .5.5h2.5v-8z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Continued evolution of layout options' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link to layout support refactor dev note. */
__( 'The default content dimensions provided by themes can now be overridden in the Styles Sidebar, giving site builders better control over full-width content. Developers have <a href="%s">fine-grained control over these controls</a>.' ),
'https://make.wordpress.org/core/2022/10/10/updated-editor-layout-support-in-6-1-after-refactor/'
);
?>
</p>
</div>
</div>
<div class="about__section has-2-columns">
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path d="M27.7 17.2l5.6 5.6c.7.6.7 1.8-.1 2.5l-5.6 5.6c-.3.3-.8.5-1.2.5-.4 0-.9-.2-1.2-.5l-5.6-5.6c-.7-.7-.7-1.8 0-2.5l5.6-5.6c.7-.7 1.8-.7 2.5 0z" fill="#fff"/>
<path d="M22 17.5l-6.3 6.3c-.1.1-.1.3.1.3l6.3 6.3-1.1 1.1-6.3-6.2c-.7-.7-.7-1.8 0-2.5l6.3-6.3 1 1z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Block template parts in classic themes' ); ?></h3>
<p>
<?php
printf(
/* translators: 1: Link to block-based template parts in classic themes dev note, 2: Folder name. */
__( '<a href="%1$s">Block template parts can now be defined in classic themes</a> by adding the appropriate HTML files to the %2$s directory at the root of the theme.' ),
'https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/',
'<code>parts</code>'
);
?>
</p>
</div>
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.349 23.579a3.18 3.18 0 0 1-6.262.796l-.007-.03-.01-.029-.734-2.166-.005.002a4.818 4.818 0 0 0-9.418 1.427 4.816 4.816 0 0 0 6.575 4.485l-.598-1.523a3.18 3.18 0 1 1 1.92-3.758l.012-.003.69 2.034a4.818 4.818 0 0 0 9.472-1.235 4.816 4.816 0 0 0-6.57-4.487l.596 1.524a3.18 3.18 0 0 1 4.34 2.963z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Expanded support for Query Loop blocks' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link to query loop dev note. */
__( '<a href="%s">New filters</a> let Query Block variations support custom queries for more powerful variations and advanced hierarchical post types filtering options.' ),
'https://make.wordpress.org/core/2022/10/10/extending-the-query-loop-block/'
);
?>
</p>
</div>
</div>
<div class="about__section has-2-columns">
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path d="M17.25 30.25L24 17.594l6.75 12.656h-13.5z" stroke="#fff" stroke-width="1.5"/>
<path d="M24 16v15h-8l8-15z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Filters for all your styles' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link to theme.json filters dev note. */
__( '<a href="%s">Leverage filters</a> in the Styles sidebar to control settings at all four levels of your site—core, theme, user, or block, from less to more specific.' ),
'https://make.wordpress.org/core/2022/10/10/filters-for-theme-json-data/'
);
?>
</p>
</div>
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.114 20.5H16V19h3.114a2.501 2.501 0 0 1 4.771 0H32v1.5h-8.114a2.501 2.501 0 0 1-4.771 0zM16 29h8.114a2.501 2.501 0 0 0 4.771 0H32v-1.5h-3.114a2.501 2.501 0 0 0-4.771 0H16V29z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Spacing presets for faster, consistent design' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link to spacing presets dev note. */
__( 'Save time and help avoid hard-coding a values into a theme with <a href="%s">preset margin and padding values for multiple blocks</a>.' ),
'https://make.wordpress.org/core/2022/10/07/introduction-of-presets-across-padding-margin-and-block-gap/'
);
?>
</p>
</div>
</div>
<div class="about__section has-2-columns">
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.517 20.75A7.268 7.268 0 0 1 22 17.03a8.142 8.142 0 0 0-1.19 1.875 10.763 10.763 0 0 0-.657 1.845h-2.636zm-.554 1.5a7.266 7.266 0 0 0 0 3.5h2.9a13.453 13.453 0 0 1 0-3.5h-2.9zm4.415 0c-.084.56-.128 1.145-.128 1.75s.044 1.19.128 1.75h5.244c.084-.56.128-1.145.128-1.75s-.044-1.19-.128-1.75h-5.244zm6.759 0a13.45 13.45 0 0 1 0 3.5h2.9a7.266 7.266 0 0 0 0-3.5h-2.9zm2.346-1.5h-2.636a10.759 10.759 0 0 0-.657-1.845A8.14 8.14 0 0 0 26 17.03a7.269 7.269 0 0 1 4.483 3.721zm-4.194 0h-4.578c.13-.43.283-.836.458-1.211.495-1.063 1.139-1.847 1.831-2.306.692.46 1.335 1.243 1.83 2.306.176.375.33.78.46 1.211zm-8.772 6.5h2.636c.18.693.416 1.344.7 1.938A8.08 8.08 0 0 0 22 30.97a7.268 7.268 0 0 1-4.483-3.721zm8.772 0h-4.578c.138.46.305.892.495 1.29.491 1.024 1.12 1.78 1.794 2.227.692-.46 1.336-1.243 1.83-2.306a9.02 9.02 0 0 0 .46-1.211zm.901 1.845c.266-.57.486-1.188.657-1.845h2.636A7.268 7.268 0 0 1 26 30.97a8.145 8.145 0 0 0 1.19-1.875zM15.25 24a8.75 8.75 0 1 1 17.5 0 8.75 8.75 0 0 1-17.5 0z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Performance highlights' ); ?></h3>
<p>
<?php
printf(
/* translators: 1: REST API performance dev note, 2: Multisite performance dev note, 3: code-formatted "WP_Query" linked to dev note, 4: Block registration performance dev note, 5: Site health checks dev note; 6: code-formatted "async", 7: Performance field guide. */
__( 'WordPress 6.1 resolved more than 25 tickets dedicated to enhancing performance. From the <a href="%1$s">REST API</a> to <a href="%2$s">multisite</a>, %3$s to <a href="%4$s">core block registration</a>, and <a href="%5$s">new Site Health checks</a> to the addition of the %6$s attribute to images, there are performance improvements for every type of site. A full breakdown can be found in the <a href="%7$s">Performance Field Guide</a>.' ),
'https://make.wordpress.org/core/2022/10/10/performance-improvements-to-the-rest-api/',
'https://make.wordpress.org/core/2022/10/10/multisite-improvements-in-wordpress-6-1/',
'<a href="https://make.wordpress.org/core/2022/10/07/improvements-to-wp_query-performance-in-6-1/"><code>WP_Query</code></a>',
'https://make.wordpress.org/core/2022/10/07/improved-php-performance-for-core-blocks-registration/',
'https://make.wordpress.org/core/2022/10/06/new-cache-site-health-checks-in-wordpress-6-1/',
'<code>async</code>',
'https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/'
);
?>
</p>
<p>
<?php
printf(
/* translators: %s: Link to install Performance Lab plugin if permitted, otherwise link to plugin on WordPress.org. */
__( 'Be among the first to get the latest improvements by adding the <a href="%s">Performance Lab plugin</a> to your WordPress test site or sandbox.' ),
current_user_can( 'install_plugins' ) ? admin_url( 'plugin-install.php?s=slug%253Aperformance-lab&tab=search&type=term' ) : esc_url( __( 'https://wordpress.org/plugins/performance-lab/' ) )
);
?>
</p>
</div>
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.067 17.085l-3.245-3.14-10.621 10.726-1.303 4.412 4.528-1.252 10.64-10.746zM16 32.75h8v-1.5h-8v1.5z" fill="#fff"/>
</svg>
</div>
<h3 class="is-smaller-heading"><?php _e( 'Content-only editing support for container blocks' ); ?></h3>
<p>
<?php
printf(
/* translators: %s: Link to content locking dev note. */
__( 'Thanks to <a href="%s">content-only editing settings</a>, layouts can be locked within container blocks. In a content-only block, its children are invisible to the List View and entirely uneditable. So you control the layout while your writers can focus on the content.' ),
'https://make.wordpress.org/core/2022/10/11/content-locking-features-and-updates/'
);
?>
</p>
<p><?php _e( 'Combine it with block locking options for even more advanced control over your blocks.' ); ?></p>
</div>
</div>
<hr />
<div class="about__section has-2-columns is-wider-right"> <div class="about__section has-2-columns is-wider-right">
<div class="column about__image is-vertically-aligned-top"> <div class="column about__image is-vertically-aligned-top">
<a href="https://www.youtube.com/watch?v=oe452WcY7fA"> <a href="https://youtu.be/1w9oywSa6Hw">
<img src="https://s.w.org/images/core/6.0/about-60-video.png" alt="<?php echo esc_attr( __( 'Exploring WordPress 6.0 video' ) ); ?>" /> <img src="data:image/svg+xml,%3Csvg width='269' height='163' viewBox='0 0 269 163' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Crect width='269' height='163' rx='4' fill='%23FDFF85'/%3E%3Cpath d='M238.84 130.043a1 1 0 0 0-1.524.852v8.21a1 1 0 0 0 1.524.852l6.671-4.105a1 1 0 0 0 0-1.703l-6.671-4.106Z' fill='%231E1E1E'/%3E%3Crect x='226.25' y='120.25' width='29.5' height='29.5' rx='2.75' stroke='%231E1E1E' stroke-width='1.5'/%3E%3Cpath d='M99.597 127.44c-6.16 0-11.36-1.16-15.6-3.48-4.24-2.32-7.68-5.4-10.32-9.24-2.56-3.84-4.4-8.16-5.52-12.96A64.74 64.74 0 0 1 66.477 87c0-9.28 1.28-17.4 3.84-24.36 2.64-6.96 6.4-12.36 11.28-16.2 4.88-3.92 10.8-5.88 17.76-5.88 5.521 0 10.241 1.08 14.161 3.24s6.96 5.04 9.12 8.64c2.24 3.6 3.6 7.52 4.08 11.76h-11.88c-.72-4.16-2.44-7.36-5.16-9.6-2.72-2.24-6.2-3.36-10.44-3.36-5.84 0-10.68 2.76-14.52 8.28-3.76 5.44-5.76 13.84-6 25.2 1.92-3.52 4.88-6.52 8.88-9 4.08-2.48 8.76-3.72 14.04-3.72 4.72 0 9.12 1.12 13.2 3.36 4.16 2.24 7.52 5.4 10.08 9.48 2.64 4 3.96 8.76 3.96 14.28 0 4.88-1.2 9.48-3.6 13.8-2.4 4.32-5.8 7.84-10.2 10.56-4.32 2.64-9.48 3.96-15.48 3.96Zm-.72-11.04c3.361 0 6.361-.72 9.001-2.16 2.64-1.44 4.72-3.4 6.24-5.88 1.52-2.56 2.28-5.44 2.28-8.64 0-5.12-1.68-9.2-5.04-12.24-3.28-3.04-7.48-4.56-12.6-4.56-3.36 0-6.4.76-9.12 2.28-2.64 1.52-4.72 3.56-6.24 6.12-1.52 2.48-2.28 5.24-2.28 8.28 0 3.28.76 6.2 2.28 8.76 1.6 2.48 3.72 4.44 6.36 5.88 2.72 1.44 5.76 2.16 9.12 2.16Zm45.925 10.32c-2.4 0-4.4-.76-6-2.28-1.52-1.6-2.28-3.48-2.28-5.64 0-2.24.76-4.12 2.28-5.64 1.6-1.6 3.6-2.4 6-2.4s4.36.8 5.88 2.4c1.52 1.52 2.28 3.4 2.28 5.64 0 2.16-.76 4.04-2.28 5.64-1.52 1.52-3.48 2.28-5.88 2.28Zm26.814-.72V56.4l-13.56 3.12v-9.36l18.6-8.16h8.16v84h-13.2Z' fill='%231E1E1E'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Crect width='269' height='163' rx='4' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A" alt="<?php echo esc_attr( __( 'Exploring WordPress 6.1 video' ) ); ?>" />
</a> </a>
</div> </div>
<div class="column"> <div class="column">
@ -272,9 +531,9 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<p> <p>
<?php <?php
printf( printf(
/* translators: %s: 6.0 overview video link. */ /* translators: %s: 6.1 overview video link. */
__( 'See WordPress 6.0 in action! <a href="%s">Watch a brief overview video</a> highlighting some of the major features debuting in WordPress 6.0.' ), __( 'See WordPress 6.1 in action! <a href="%s">Watch a brief overview video</a> highlighting some of the major features debuting in WordPress 6.1.' ),
'https://www.youtube.com/watch?v=oe452WcY7fA' 'https://youtu.be/1w9oywSa6Hw'
); );
?> ?>
</p> </p>
@ -286,10 +545,9 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<p> <p>
<?php <?php
printf( printf(
/* translators: 1: Learn WordPress workshops link, 2: Learn WordPress social learning link. */ /* translators: 1: Learn WordPress link. */
__( 'Explore <a href="%1$s">learn.wordpress.org/&#8203;workshops</a> for quick how-to videos and lots more on new features in WordPress. Or join a live <a href="%2$s">interactive online learning session</a> on a specific WordPress topic.' ), __( 'Explore <a href="%s">learn.wordpress.org</a> for tutorial videos, online workshops, courses, and lesson plans for Meetup organizers, including new features in WordPress.' ),
'https://learn.wordpress.org/workshops/', 'https://learn.wordpress.org/'
'https://learn.wordpress.org/social-learning/'
); );
?> ?>
</p> </p>
@ -298,9 +556,9 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<p> <p>
<?php <?php
printf( printf(
/* translators: %s: WordPress 6.0 Field Guide link. */ /* translators: %s: WordPress Field Guide link. */
__( 'Check out the latest version of the <a href="%s">WordPress Field Guide</a>. It is overflowing with detailed developer notes to help you build with WordPress.' ), __( 'Check out the latest version of the <a href="%s">WordPress Field Guide</a>. It is overflowing with detailed developer notes to help you build with WordPress.' ),
__( 'https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/' ) __( 'https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/' )
); );
?> ?>
</p> </p>
@ -309,20 +567,21 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<p> <p>
<?php <?php
printf( printf(
/* translators: %s: WordPress 6.0 Release Notes link. */ /* translators: 1: WordPress Release Notes link, 2: WordPress version number. */
__( '<a href="%s">Read the WordPress 6.0 Release Notes</a> for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.' ), __( '<a href="%1$s">Read the WordPress %2$s Release Notes</a> for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.' ),
sprintf( sprintf(
/* translators: %s: WordPress version. */ /* translators: %s: WordPress version number. */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
'6-0' '6-1'
) ),
'6.1'
); );
?> ?>
</p> </p>
</div> </div>
</div> </div>
<hr /> <hr class="is-large" />
<div class="return-to-dashboard"> <div class="return-to-dashboard">
<?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?> <?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
@ -375,3 +634,9 @@ _n_noop(
/* translators: %s: Documentation URL. */ /* translators: %s: Documentation URL. */
__( 'For more information, see <a href="%s">the release notes</a>.' ); __( 'For more information, see <a href="%s">the release notes</a>.' );
/* translators: 1: WordPress version number, 2: Link to update WordPress */
__( 'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' );
/* translators: 1: WordPress version number, 2: Link to update WordPress */
__( 'Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' );

View File

@ -153,7 +153,8 @@ $core_actions_post_deprecated = array(
'health-check-background-updates', 'health-check-background-updates',
'health-check-loopback-requests', 'health-check-loopback-requests',
); );
$core_actions_post = array_merge( $core_actions_post, $core_actions_post_deprecated );
$core_actions_post = array_merge( $core_actions_post, $core_actions_post_deprecated );
// Register core Ajax calls. // Register core Ajax calls.
if ( ! empty( $_GET['action'] ) && in_array( $_GET['action'], $core_actions_get, true ) ) { if ( ! empty( $_GET['action'] ) && in_array( $_GET['action'], $core_actions_get, true ) ) {

View File

@ -250,8 +250,8 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
* The array of request data. All arguments are optional and may be empty. * The array of request data. All arguments are optional and may be empty.
* *
* @type string $app_name The suggested name of the application. * @type string $app_name The suggested name of the application.
* @type string $success_url The url the user will be redirected to after approving the application. * @type string $success_url The URL the user will be redirected to after approving the application.
* @type string $reject_url The url the user will be redirected to after rejecting the application. * @type string $reject_url The URL the user will be redirected to after rejecting the application.
* } * }
* @param WP_User $user The user authorizing the application. * @param WP_User $user The user authorizing the application.
*/ */

View File

@ -46,7 +46,7 @@ $credits = wp_credits();
</nav> </nav>
</div> </div>
<div class="about__section has-1-column"> <div class="about__section has-1-column has-gutters">
<div class="column aligncenter"> <div class="column aligncenter">
<?php if ( ! $credits ) : ?> <?php if ( ! $credits ) : ?>
@ -82,7 +82,7 @@ if ( ! $credits ) {
} }
?> ?>
<hr /> <hr class="is-large" />
<div class="about__section"> <div class="about__section">
<div class="column is-edge-to-edge"> <div class="column is-edge-to-edge">

View File

@ -8,6 +8,7 @@
1.3 Header 1.3 Header
2.0 Credits Page 2.0 Credits Page
3.0 Freedoms Page 3.0 Freedoms Page
4.0 Privacy Page
x.2.0 Legacy About Styles: Global x.2.0 Legacy About Styles: Global
x.2.1 Typography x.2.1 Typography
x.2.2 Structure x.2.2 Structure
@ -21,16 +22,16 @@
.about__container { .about__container {
/* Section backgrounds */ /* Section backgrounds */
--background: transparent; --background: #274acd;
--subtle-background: #f0f0f0; --subtle-background: #eff2ff;
/* Main text color */ /* Main text color */
--text: #000; --text: #000;
--text-light: #fff; --text-light: #fff;
/* Accent colors: used in header, on special classes. */ /* Accent colors: used in header, on special classes. */
--accent-1: #3858e9; /* Accent background, link color */ --accent-1: #3858e9; /* Link color, credit image overlay */
--accent-2: #3858e9; /* Header background */ --accent-2: #fffcb5; /* Accent background */
/* Navigation colors. */ /* Navigation colors. */
--nav-background: #fff; --nav-background: #fff;
@ -100,17 +101,12 @@
} }
.about__section { .about__section {
background: var(--background); background: transparent;
clear: both; clear: both;
} }
.about__container .has-accent-background-color { .about__container .has-accent-background-color {
background-color: var(--accent-1); background-color: var(--accent-2);
color: var(--text-light);
}
.about__container .has-accent-background-color a {
color: var(--text-light);
} }
.about__container .has-transparent-background-color { .about__container .has-transparent-background-color {
@ -118,7 +114,7 @@
} }
.about__container .has-accent-color { .about__container .has-accent-color {
color: var(--accent-1); color: var(--accent-2);
} }
.about__container .has-border { .about__container .has-border {
@ -138,7 +134,7 @@
/* 1.1 - Layout */ /* 1.1 - Layout */
.about__section { .about__section {
margin: 0 0 var(--gap); margin: 0;
} }
.about__section .column:not(.is-edge-to-edge) { .about__section .column:not(.is-edge-to-edge) {
@ -149,9 +145,9 @@
padding-bottom: var(--gap); padding-bottom: var(--gap);
} }
.about__section .column[class*="background-color"], .about__section .column[class*="background-color"]:not(.is-edge-to-edge),
.about__section:where([class*="background-color"]) .column, .about__section:where([class*="background-color"]) .column:not(.is-edge-to-edge),
.about__section .column.has-border { .about__section .column.has-border:not(.is-edge-to-edge) {
padding-top: var(--gap); padding-top: var(--gap);
padding-bottom: var(--gap); padding-bottom: var(--gap);
} }
@ -210,7 +206,7 @@
.about__section.has-gutters { .about__section.has-gutters {
gap: var(--gap); gap: var(--gap);
margin-bottom: calc(var(--gap) * 2); margin-bottom: var(--gap);
} }
.about__section.has-2-columns { .about__section.has-2-columns {
@ -476,6 +472,14 @@
line-height: 1.4; line-height: 1.4;
} }
.about__container h4,
.about__container h3.is-smaller-heading {
margin-top: 0;
font-size: 1.125rem;
font-weight: 700;
line-height: 1.6;
}
.about__container p { .about__container p {
font-size: inherit; font-size: inherit;
line-height: inherit; line-height: inherit;
@ -516,7 +520,7 @@
} }
.about__container li { .about__container li {
margin-bottom: 0.75rem; margin-bottom: 0.5rem;
} }
.about__container img { .about__container img {
@ -557,6 +561,7 @@
margin: 0; margin: 0;
height: var(--gap); height: var(--gap);
border: none; border: none;
border-top: 4px solid #d9d9d9;
} }
.about__container hr.is-small { .about__container hr.is-small {
@ -598,45 +603,41 @@
/* 1.3 - Header */ /* 1.3 - Header */
.about__header { .about__header {
--about-header-image-width: 521px; --about-header-image-width: 780px;
--about-header-image-height: 504px; --about-header-image-height: 550px;
--about-header-bg-width: var(--about-header-image-width); --about-header-bg-width: var(--about-header-image-width);
--about-header-bg-height: var(--about-header-image-height); --about-header-bg-height: var(--about-header-image-height);
--about-header-bg-offset-inline: calc(var(--gap) * -2); --about-header-bg-offset-block: 0;
position: relative; position: relative;
margin-bottom: var(--gap); margin-bottom: var(--gap);
padding-top: 0; padding-top: 0;
background: var(--subtle-background) url('../images/about-header-about.svg?ver=6.0') no-repeat; color: var(--text-light);
background: var(--background) url('../images/about-header-about.svg?ver=6.1') no-repeat;
background-size: var(--about-header-bg-width) var(--about-header-bg-height); background-size: var(--about-header-bg-width) var(--about-header-bg-height);
background-position: left var(--about-header-bg-offset-inline) center; background-position: center top var(--about-header-bg-offset-block);
} }
.credits-php .about__header { .credits-php .about__header {
--about-header-image-width: 477px; --about-header-image-width: 863px;
--about-header-image-height: 470px; --about-header-image-height: 550px;
--about-header-bg-offset-inline: calc(var(--gap) * -4);
background-image: url('../images/about-header-credits.svg?ver=6.0'); background-image: url('../images/about-header-credits.svg?ver=6.1');
background-position: left var(--about-header-bg-offset-inline) top var(--gap);
} }
.freedoms-php .about__header { .freedoms-php .about__header {
--about-header-image-width: 411px; --about-header-image-width: 782px;
--about-header-image-height: 498px; --about-header-image-height: 510px;
--about-header-bg-offset-inline: var(--gap);
background-image: url('../images/about-header-freedoms.svg?ver=6.0'); background-image: url('../images/about-header-freedoms.svg?ver=6.1');
background-position: left var(--about-header-bg-offset-inline) top calc(var(--gap) * 4);
} }
.privacy-php .about__header { .privacy-php .about__header {
--about-header-image-width: 277px; --about-header-image-width: 1005px;
--about-header-image-height: 361px; --about-header-image-height: 500px;
--about-header-bg-offset-inline: var(--gap); --about-header-bg-offset-block: calc(var(--gap) * -2);
background-image: url('../images/about-header-privacy.svg?ver=6.0'); background-image: url('../images/about-header-privacy.svg?ver=6.1');
background-position: left var(--about-header-bg-offset-inline) top var(--gap);
} }
.about__header-image { .about__header-image {
@ -645,44 +646,39 @@
.about__header-title { .about__header-title {
box-sizing: border-box; box-sizing: border-box;
margin: 0 var(--gap) 0 0; margin: 0 var(--gap);
padding: 8rem 0 0; padding: 9rem 0 0;
padding-left: calc(var(--about-header-bg-width) + var(--about-header-bg-offset-inline) + var(--gap)); text-align: center;
}
.credits-php .about__header-title,
.privacy-php .about__header-title {
padding-top: 6rem;
}
.freedoms-php .about__header-title {
padding-top: 3rem;
} }
.about__header-title h1 { .about__header-title h1 {
margin: 0 0 1rem; margin: 0 0 1rem;
padding: 0; padding: 0;
font-size: clamp(3rem, 18.46vw - 8.08rem, 6rem); /* Fluid font size scales on browser size 960px - 1200px. */
font-size: clamp(3rem, 20vw - 9rem, 6rem);
line-height: 1; line-height: 1;
font-weight: 400; font-weight: 400;
} }
.credits-php .about__header-title h1,
.privacy-php .about__header-title h1,
.freedoms-php .about__header-title h1 {
/* Fluid font size scales on browser size 960px - 1200px. */
font-size: clamp(3rem, 10vw - 3rem, 4.5rem);
}
.about__header-text { .about__header-text {
box-sizing: border-box; box-sizing: border-box;
margin: 0 0 9rem; max-width: 22em;
padding: 0 2rem 0 0; margin: 0 auto 10rem;
padding-left: calc(var(--about-header-bg-width) + var(--about-header-bg-offset-inline) + var(--gap)); padding: 0;
font-size: 1.6rem; font-size: 1.6rem;
line-height: 1.15; line-height: 1.15;
text-align: center;
} }
.credits-php .about__header-text, .credits-php .about__header-text {
.privacy-php .about__header-text { margin-bottom: 9rem;
margin-bottom: 7rem;
}
.freedoms-php .about__header-text {
margin-bottom: 6rem;
} }
.about__header-navigation { .about__header-navigation {
@ -731,13 +727,24 @@
@media screen and (max-width: 960px) { @media screen and (max-width: 960px) {
.about__header { .about__header {
--about-header-bg-width: calc(var(--about-header-image-width) * 0.7); --about-header-bg-width: calc(var(--about-header-image-width) * 0.85);
--about-header-bg-height: calc(var(--about-header-image-height) * 0.7); --about-header-bg-height: calc(var(--about-header-image-height) * 0.85);
--about-header-bg-offset-inline: calc(var(--gap) * -1); }
.privacy-php .about__header {
--about-header-bg-offset-block: 0;
} }
.about__header-title h1 { .about__header-title h1 {
font-size: clamp(3rem, 18.46vw - 5.08rem, 6rem); /* Fluid font size scales on browser size 600px - 960px. */
font-size: clamp(3rem, 13.33vw - 2rem, 6rem);
}
.credits-php .about__header-title h1,
.privacy-php .about__header-title h1,
.freedoms-php .about__header-title h1 {
/* Fluid font size scales on browser size 600px - 960px. */
font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem);
} }
} }
@ -758,8 +765,6 @@
.about__header-text { .about__header-text {
margin-top: 0; margin-top: 0;
margin-left: 0;
padding-right: calc(var(--gap) / 2);
} }
.about__header-navigation .nav-tab { .about__header-navigation .nav-tab {
@ -771,6 +776,13 @@
} }
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
.about__header {
--about-header-bg-width: calc(var(--about-header-image-width) * 0.75);
--about-header-bg-height: calc(var(--about-header-image-height) * 0.75);
}
}
@media screen and (max-width: 480px) {
.about__header, .about__header,
.credits-php .about__header, .credits-php .about__header,
.privacy-php .about__header, .privacy-php .about__header,
@ -778,17 +790,6 @@
background-image: none; background-image: none;
} }
.about__header-title,
.about__header-text {
padding-left: calc(var(--gap) / 2) !important;
}
.about__header-title h1 {
font-size: clamp(2rem, 11.43vw - 0.29rem, 4rem);
}
}
@media screen and (max-width: 480px) {
.about__header-title p { .about__header-title p {
font-size: 2.4em; font-size: 2.4em;
} }
@ -797,7 +798,10 @@
padding-top: 2rem; padding-top: 2rem;
} }
.about__header-text { .about__header-text,
.credits-php .about__header-text {
margin-right: calc(var(--gap) / 2);
margin-left: calc(var(--gap) / 2);
margin-bottom: 2rem; margin-bottom: 2rem;
} }
@ -943,7 +947,19 @@
.about__section .column .freedom-image { .about__section .column .freedom-image {
margin-bottom: var(--gap); margin-bottom: var(--gap);
max-height: 140px; max-height: 180px;
}
/*------------------------------------------------------------------------------
4.0 - Privacy Page
------------------------------------------------------------------------------*/
.about__section .column .privacy-image {
display: block;
margin-right: auto;
margin-left: auto;
max-width: 25rem;
} }

File diff suppressed because one or more lines are too long

View File

@ -7,6 +7,7 @@
1.3 Header 1.3 Header
2.0 Credits Page 2.0 Credits Page
3.0 Freedoms Page 3.0 Freedoms Page
4.0 Privacy Page
x.2.0 Legacy About Styles: Global x.2.0 Legacy About Styles: Global
x.2.1 Typography x.2.1 Typography
x.2.2 Structure x.2.2 Structure
@ -20,16 +21,16 @@
.about__container { .about__container {
/* Section backgrounds */ /* Section backgrounds */
--background: transparent; --background: #274acd;
--subtle-background: #f0f0f0; --subtle-background: #eff2ff;
/* Main text color */ /* Main text color */
--text: #000; --text: #000;
--text-light: #fff; --text-light: #fff;
/* Accent colors: used in header, on special classes. */ /* Accent colors: used in header, on special classes. */
--accent-1: #3858e9; /* Accent background, link color */ --accent-1: #3858e9; /* Link color, credit image overlay */
--accent-2: #3858e9; /* Header background */ --accent-2: #fffcb5; /* Accent background */
/* Navigation colors. */ /* Navigation colors. */
--nav-background: #fff; --nav-background: #fff;
@ -99,17 +100,12 @@
} }
.about__section { .about__section {
background: var(--background); background: transparent;
clear: both; clear: both;
} }
.about__container .has-accent-background-color { .about__container .has-accent-background-color {
background-color: var(--accent-1); background-color: var(--accent-2);
color: var(--text-light);
}
.about__container .has-accent-background-color a {
color: var(--text-light);
} }
.about__container .has-transparent-background-color { .about__container .has-transparent-background-color {
@ -117,7 +113,7 @@
} }
.about__container .has-accent-color { .about__container .has-accent-color {
color: var(--accent-1); color: var(--accent-2);
} }
.about__container .has-border { .about__container .has-border {
@ -137,7 +133,7 @@
/* 1.1 - Layout */ /* 1.1 - Layout */
.about__section { .about__section {
margin: 0 0 var(--gap); margin: 0;
} }
.about__section .column:not(.is-edge-to-edge) { .about__section .column:not(.is-edge-to-edge) {
@ -148,9 +144,9 @@
padding-bottom: var(--gap); padding-bottom: var(--gap);
} }
.about__section .column[class*="background-color"], .about__section .column[class*="background-color"]:not(.is-edge-to-edge),
.about__section:where([class*="background-color"]) .column, .about__section:where([class*="background-color"]) .column:not(.is-edge-to-edge),
.about__section .column.has-border { .about__section .column.has-border:not(.is-edge-to-edge) {
padding-top: var(--gap); padding-top: var(--gap);
padding-bottom: var(--gap); padding-bottom: var(--gap);
} }
@ -209,7 +205,7 @@
.about__section.has-gutters { .about__section.has-gutters {
gap: var(--gap); gap: var(--gap);
margin-bottom: calc(var(--gap) * 2); margin-bottom: var(--gap);
} }
.about__section.has-2-columns { .about__section.has-2-columns {
@ -475,6 +471,14 @@
line-height: 1.4; line-height: 1.4;
} }
.about__container h4,
.about__container h3.is-smaller-heading {
margin-top: 0;
font-size: 1.125rem;
font-weight: 700;
line-height: 1.6;
}
.about__container p { .about__container p {
font-size: inherit; font-size: inherit;
line-height: inherit; line-height: inherit;
@ -515,7 +519,7 @@
} }
.about__container li { .about__container li {
margin-bottom: 0.75rem; margin-bottom: 0.5rem;
} }
.about__container img { .about__container img {
@ -556,6 +560,7 @@
margin: 0; margin: 0;
height: var(--gap); height: var(--gap);
border: none; border: none;
border-top: 4px solid #d9d9d9;
} }
.about__container hr.is-small { .about__container hr.is-small {
@ -597,45 +602,41 @@
/* 1.3 - Header */ /* 1.3 - Header */
.about__header { .about__header {
--about-header-image-width: 521px; --about-header-image-width: 780px;
--about-header-image-height: 504px; --about-header-image-height: 550px;
--about-header-bg-width: var(--about-header-image-width); --about-header-bg-width: var(--about-header-image-width);
--about-header-bg-height: var(--about-header-image-height); --about-header-bg-height: var(--about-header-image-height);
--about-header-bg-offset-inline: calc(var(--gap) * -2); --about-header-bg-offset-block: 0;
position: relative; position: relative;
margin-bottom: var(--gap); margin-bottom: var(--gap);
padding-top: 0; padding-top: 0;
background: var(--subtle-background) url('../images/about-header-about.svg?ver=6.0') no-repeat; color: var(--text-light);
background: var(--background) url('../images/about-header-about.svg?ver=6.1') no-repeat;
background-size: var(--about-header-bg-width) var(--about-header-bg-height); background-size: var(--about-header-bg-width) var(--about-header-bg-height);
background-position: right var(--about-header-bg-offset-inline) center; background-position: center top var(--about-header-bg-offset-block);
} }
.credits-php .about__header { .credits-php .about__header {
--about-header-image-width: 477px; --about-header-image-width: 863px;
--about-header-image-height: 470px; --about-header-image-height: 550px;
--about-header-bg-offset-inline: calc(var(--gap) * -4);
background-image: url('../images/about-header-credits.svg?ver=6.0'); background-image: url('../images/about-header-credits.svg?ver=6.1');
background-position: right var(--about-header-bg-offset-inline) top var(--gap);
} }
.freedoms-php .about__header { .freedoms-php .about__header {
--about-header-image-width: 411px; --about-header-image-width: 782px;
--about-header-image-height: 498px; --about-header-image-height: 510px;
--about-header-bg-offset-inline: var(--gap);
background-image: url('../images/about-header-freedoms.svg?ver=6.0'); background-image: url('../images/about-header-freedoms.svg?ver=6.1');
background-position: right var(--about-header-bg-offset-inline) top calc(var(--gap) * 4);
} }
.privacy-php .about__header { .privacy-php .about__header {
--about-header-image-width: 277px; --about-header-image-width: 1005px;
--about-header-image-height: 361px; --about-header-image-height: 500px;
--about-header-bg-offset-inline: var(--gap); --about-header-bg-offset-block: calc(var(--gap) * -2);
background-image: url('../images/about-header-privacy.svg?ver=6.0'); background-image: url('../images/about-header-privacy.svg?ver=6.1');
background-position: right var(--about-header-bg-offset-inline) top var(--gap);
} }
.about__header-image { .about__header-image {
@ -644,44 +645,39 @@
.about__header-title { .about__header-title {
box-sizing: border-box; box-sizing: border-box;
margin: 0 0 0 var(--gap); margin: 0 var(--gap);
padding: 8rem 0 0; padding: 9rem 0 0;
padding-right: calc(var(--about-header-bg-width) + var(--about-header-bg-offset-inline) + var(--gap)); text-align: center;
}
.credits-php .about__header-title,
.privacy-php .about__header-title {
padding-top: 6rem;
}
.freedoms-php .about__header-title {
padding-top: 3rem;
} }
.about__header-title h1 { .about__header-title h1 {
margin: 0 0 1rem; margin: 0 0 1rem;
padding: 0; padding: 0;
font-size: clamp(3rem, 18.46vw - 8.08rem, 6rem); /* Fluid font size scales on browser size 960px - 1200px. */
font-size: clamp(3rem, 20vw - 9rem, 6rem);
line-height: 1; line-height: 1;
font-weight: 400; font-weight: 400;
} }
.credits-php .about__header-title h1,
.privacy-php .about__header-title h1,
.freedoms-php .about__header-title h1 {
/* Fluid font size scales on browser size 960px - 1200px. */
font-size: clamp(3rem, 10vw - 3rem, 4.5rem);
}
.about__header-text { .about__header-text {
box-sizing: border-box; box-sizing: border-box;
margin: 0 0 9rem; max-width: 22em;
padding: 0 0 0 2rem; margin: 0 auto 10rem;
padding-right: calc(var(--about-header-bg-width) + var(--about-header-bg-offset-inline) + var(--gap)); padding: 0;
font-size: 1.6rem; font-size: 1.6rem;
line-height: 1.15; line-height: 1.15;
text-align: center;
} }
.credits-php .about__header-text, .credits-php .about__header-text {
.privacy-php .about__header-text { margin-bottom: 9rem;
margin-bottom: 7rem;
}
.freedoms-php .about__header-text {
margin-bottom: 6rem;
} }
.about__header-navigation { .about__header-navigation {
@ -730,13 +726,24 @@
@media screen and (max-width: 960px) { @media screen and (max-width: 960px) {
.about__header { .about__header {
--about-header-bg-width: calc(var(--about-header-image-width) * 0.7); --about-header-bg-width: calc(var(--about-header-image-width) * 0.85);
--about-header-bg-height: calc(var(--about-header-image-height) * 0.7); --about-header-bg-height: calc(var(--about-header-image-height) * 0.85);
--about-header-bg-offset-inline: calc(var(--gap) * -1); }
.privacy-php .about__header {
--about-header-bg-offset-block: 0;
} }
.about__header-title h1 { .about__header-title h1 {
font-size: clamp(3rem, 18.46vw - 5.08rem, 6rem); /* Fluid font size scales on browser size 600px - 960px. */
font-size: clamp(3rem, 13.33vw - 2rem, 6rem);
}
.credits-php .about__header-title h1,
.privacy-php .about__header-title h1,
.freedoms-php .about__header-title h1 {
/* Fluid font size scales on browser size 600px - 960px. */
font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem);
} }
} }
@ -757,8 +764,6 @@
.about__header-text { .about__header-text {
margin-top: 0; margin-top: 0;
margin-right: 0;
padding-left: calc(var(--gap) / 2);
} }
.about__header-navigation .nav-tab { .about__header-navigation .nav-tab {
@ -770,6 +775,13 @@
} }
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
.about__header {
--about-header-bg-width: calc(var(--about-header-image-width) * 0.75);
--about-header-bg-height: calc(var(--about-header-image-height) * 0.75);
}
}
@media screen and (max-width: 480px) {
.about__header, .about__header,
.credits-php .about__header, .credits-php .about__header,
.privacy-php .about__header, .privacy-php .about__header,
@ -777,17 +789,6 @@
background-image: none; background-image: none;
} }
.about__header-title,
.about__header-text {
padding-right: calc(var(--gap) / 2) !important;
}
.about__header-title h1 {
font-size: clamp(2rem, 11.43vw - 0.29rem, 4rem);
}
}
@media screen and (max-width: 480px) {
.about__header-title p { .about__header-title p {
font-size: 2.4em; font-size: 2.4em;
} }
@ -796,7 +797,10 @@
padding-top: 2rem; padding-top: 2rem;
} }
.about__header-text { .about__header-text,
.credits-php .about__header-text {
margin-left: calc(var(--gap) / 2);
margin-right: calc(var(--gap) / 2);
margin-bottom: 2rem; margin-bottom: 2rem;
} }
@ -942,7 +946,19 @@
.about__section .column .freedom-image { .about__section .column .freedom-image {
margin-bottom: var(--gap); margin-bottom: var(--gap);
max-height: 140px; max-height: 180px;
}
/*------------------------------------------------------------------------------
4.0 - Privacy Page
------------------------------------------------------------------------------*/
.about__section .column .privacy-image {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 25rem;
} }

File diff suppressed because one or more lines are too long

View File

@ -37,108 +37,21 @@
width: 36px; width: 36px;
} }
.icon16 {
height: 18px;
width: 18px;
padding: 6px;
margin: -6px -8px 0 0;
float: right;
}
/* New Menu icons */ /* New Menu icons */
.icon16:before {
color: #8c8f94; /* same as new icons */
font: normal 20px/1 dashicons;
speak: never;
padding: 6px 0;
height: 34px;
width: 20px;
display: inline-block;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: all .1s ease-in-out;
}
.icon16.icon-dashboard:before {
content: "\f226";
}
.icon16.icon-post:before {
content: "\f109";
}
.icon16.icon-media:before {
content: "\f104";
}
.icon16.icon-links:before {
content: "\f103";
}
.icon16.icon-page:before {
content: "\f105";
}
.icon16.icon-comments:before {
content: "\f101";
margin-top: 1px;
}
.icon16.icon-appearance:before {
content: "\f100";
}
.icon16.icon-plugins:before {
content: "\f106";
}
.icon16.icon-users:before {
content: "\f110";
}
.icon16.icon-tools:before {
content: "\f107";
}
.icon16.icon-settings:before {
content: "\f108";
}
.icon16.icon-site:before {
content: "\f541";
}
.icon16.icon-generic:before {
content: "\f111";
}
/* hide background-image for icons above */ /* hide background-image for icons above */
.icon16.icon-dashboard,
.menu-icon-dashboard div.wp-menu-image, .menu-icon-dashboard div.wp-menu-image,
.icon16.icon-post,
.menu-icon-post div.wp-menu-image, .menu-icon-post div.wp-menu-image,
.icon16.icon-media,
.menu-icon-media div.wp-menu-image, .menu-icon-media div.wp-menu-image,
.icon16.icon-links,
.menu-icon-links div.wp-menu-image, .menu-icon-links div.wp-menu-image,
.icon16.icon-page,
.menu-icon-page div.wp-menu-image, .menu-icon-page div.wp-menu-image,
.icon16.icon-comments,
.menu-icon-comments div.wp-menu-image, .menu-icon-comments div.wp-menu-image,
.icon16.icon-appearance,
.menu-icon-appearance div.wp-menu-image, .menu-icon-appearance div.wp-menu-image,
.icon16.icon-plugins,
.menu-icon-plugins div.wp-menu-image, .menu-icon-plugins div.wp-menu-image,
.icon16.icon-users,
.menu-icon-users div.wp-menu-image, .menu-icon-users div.wp-menu-image,
.icon16.icon-tools,
.menu-icon-tools div.wp-menu-image, .menu-icon-tools div.wp-menu-image,
.icon16.icon-settings,
.menu-icon-settings div.wp-menu-image, .menu-icon-settings div.wp-menu-image,
.icon16.icon-site,
.menu-icon-site div.wp-menu-image, .menu-icon-site div.wp-menu-image,
.icon16.icon-generic,
.menu-icon-generic div.wp-menu-image { .menu-icon-generic div.wp-menu-image {
background-image: none !important; background-image: none !important;
} }
@ -515,6 +428,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* @todo: consider to use a single rule for these counters and the list table comments counters. */ /* @todo: consider to use a single rule for these counters and the list table comments counters. */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
display: inline-block; display: inline-block;

File diff suppressed because one or more lines are too long

View File

@ -36,108 +36,21 @@
width: 36px; width: 36px;
} }
.icon16 {
height: 18px;
width: 18px;
padding: 6px;
margin: -6px 0 0 -8px;
float: left;
}
/* New Menu icons */ /* New Menu icons */
.icon16:before {
color: #8c8f94; /* same as new icons */
font: normal 20px/1 dashicons;
speak: never;
padding: 6px 0;
height: 34px;
width: 20px;
display: inline-block;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: all .1s ease-in-out;
}
.icon16.icon-dashboard:before {
content: "\f226";
}
.icon16.icon-post:before {
content: "\f109";
}
.icon16.icon-media:before {
content: "\f104";
}
.icon16.icon-links:before {
content: "\f103";
}
.icon16.icon-page:before {
content: "\f105";
}
.icon16.icon-comments:before {
content: "\f101";
margin-top: 1px;
}
.icon16.icon-appearance:before {
content: "\f100";
}
.icon16.icon-plugins:before {
content: "\f106";
}
.icon16.icon-users:before {
content: "\f110";
}
.icon16.icon-tools:before {
content: "\f107";
}
.icon16.icon-settings:before {
content: "\f108";
}
.icon16.icon-site:before {
content: "\f541";
}
.icon16.icon-generic:before {
content: "\f111";
}
/* hide background-image for icons above */ /* hide background-image for icons above */
.icon16.icon-dashboard,
.menu-icon-dashboard div.wp-menu-image, .menu-icon-dashboard div.wp-menu-image,
.icon16.icon-post,
.menu-icon-post div.wp-menu-image, .menu-icon-post div.wp-menu-image,
.icon16.icon-media,
.menu-icon-media div.wp-menu-image, .menu-icon-media div.wp-menu-image,
.icon16.icon-links,
.menu-icon-links div.wp-menu-image, .menu-icon-links div.wp-menu-image,
.icon16.icon-page,
.menu-icon-page div.wp-menu-image, .menu-icon-page div.wp-menu-image,
.icon16.icon-comments,
.menu-icon-comments div.wp-menu-image, .menu-icon-comments div.wp-menu-image,
.icon16.icon-appearance,
.menu-icon-appearance div.wp-menu-image, .menu-icon-appearance div.wp-menu-image,
.icon16.icon-plugins,
.menu-icon-plugins div.wp-menu-image, .menu-icon-plugins div.wp-menu-image,
.icon16.icon-users,
.menu-icon-users div.wp-menu-image, .menu-icon-users div.wp-menu-image,
.icon16.icon-tools,
.menu-icon-tools div.wp-menu-image, .menu-icon-tools div.wp-menu-image,
.icon16.icon-settings,
.menu-icon-settings div.wp-menu-image, .menu-icon-settings div.wp-menu-image,
.icon16.icon-site,
.menu-icon-site div.wp-menu-image, .menu-icon-site div.wp-menu-image,
.icon16.icon-generic,
.menu-icon-generic div.wp-menu-image { .menu-icon-generic div.wp-menu-image {
background-image: none !important; background-image: none !important;
} }
@ -514,6 +427,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* @todo: consider to use a single rule for these counters and the list table comments counters. */ /* @todo: consider to use a single rule for these counters and the list table comments counters. */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
display: inline-block; display: inline-block;

File diff suppressed because one or more lines are too long

View File

@ -350,6 +350,7 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: $menu-bubble-text; color: $menu-bubble-text;
@ -784,17 +785,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: mix($dashboard-accent-1, white, 12%); background-color: $dashboard-accent-1;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: $dashboard-accent-2;
fill: $dashboard-accent-1; fill: $dashboard-accent-1;
} }
.welcome-panel-header-image .about-zero {
fill: $dashboard-accent-2;
}
[class*="welcome-panel-icon"] { [class*="welcome-panel-icon"] {
background-color: $dashboard-icon-background; background-color: $dashboard-icon-background;
} }

View File

@ -66,7 +66,7 @@ $menu-customizer-text: mix( $base-color, $text-color, 40% ) !default;
// Dashboard Colors // Dashboard Colors
$dashboard-accent-1: $highlight-color !default; $dashboard-accent-1: $highlight-color !default;
$dashboard-accent-2: $base-color !default; $dashboard-accent-2: rgba(255, 255, 255, 0.5) !default;
$dashboard-icon-background: $dashboard-accent-2 !default; $dashboard-icon-background: $dashboard-accent-2 !default;
$low-contrast-theme: "false" !default; $low-contrast-theme: "false" !default;

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,17 +707,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #e1ecf0; background-color: #096484;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: rgba(255, 255, 255, 0.5);
fill: #096484; fill: #096484;
} }
.welcome-panel-header-image .about-zero {
fill: #52accc;
}
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #096484; background-color: #096484;
} }

File diff suppressed because one or more lines are too long

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,17 +707,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #e1ecf0; background-color: #096484;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: rgba(255, 255, 255, 0.5);
fill: #096484; fill: #096484;
} }
.welcome-panel-header-image .about-zero {
fill: #52accc;
}
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #096484; background-color: #096484;
} }

File diff suppressed because one or more lines are too long

View File

@ -292,6 +292,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -673,17 +674,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #f8f4f1; background-color: #c7a589;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: rgba(255, 255, 255, 0.5);
fill: #c7a589; fill: #c7a589;
} }
.welcome-panel-header-image .about-zero {
fill: #59524c;
}
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #59524c; background-color: rgba(255, 255, 255, 0.5);
} }

File diff suppressed because one or more lines are too long

View File

@ -292,6 +292,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -673,17 +674,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #f8f4f1; background-color: #c7a589;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: rgba(255, 255, 255, 0.5);
fill: #c7a589; fill: #c7a589;
} }
.welcome-panel-header-image .about-zero {
fill: #59524c;
}
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #59524c; background-color: rgba(255, 255, 255, 0.5);
} }

File diff suppressed because one or more lines are too long

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,17 +707,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #f4f6e9; background-color: #523f6d;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
fill: #a3b745; stroke: rgba(255, 255, 255, 0.5);
}
.welcome-panel-header-image .about-zero {
fill: #523f6d; fill: #523f6d;
} }
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #523f6d; background-color: rgba(255, 255, 255, 0.5);
} }

File diff suppressed because one or more lines are too long

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,17 +707,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #f4f6e9; background-color: #523f6d;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
fill: #a3b745; stroke: rgba(255, 255, 255, 0.5);
}
.welcome-panel-header-image .about-zero {
fill: #523f6d; fill: #523f6d;
} }
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #523f6d; background-color: rgba(255, 255, 255, 0.5);
} }

File diff suppressed because one or more lines are too long

View File

@ -6,4 +6,6 @@ $notification-color: #d46f15;
$form-checked: $base-color; $form-checked: $base-color;
$dashboard-accent-1: $base-color;
@import "../_admin.scss"; @import "../_admin.scss";

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,17 +707,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #e1f4f9; background-color: #04a4cc;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: rgba(255, 255, 255, 0.5);
fill: #04a4cc; fill: #04a4cc;
} }
.welcome-panel-header-image .about-zero {
fill: #999;
}
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #333; background-color: #333;
} }

File diff suppressed because one or more lines are too long

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,17 +707,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #e1f4f9; background-color: #04a4cc;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: rgba(255, 255, 255, 0.5);
fill: #04a4cc; fill: #04a4cc;
} }
.welcome-panel-header-image .about-zero {
fill: #999;
}
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #333; background-color: #333;
} }

File diff suppressed because one or more lines are too long

View File

@ -18,7 +18,6 @@ $menu-submenu-background: #fff;
$menu-collapse-text: #777; $menu-collapse-text: #777;
$menu-collapse-focus-icon: #555; $menu-collapse-focus-icon: #555;
$dashboard-accent-2: $icon-color;
$dashboard-icon-background: $text-color; $dashboard-icon-background: $text-color;
@import "../_admin.scss"; @import "../_admin.scss";

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,15 +707,12 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #fbeae8; background-color: #69a8bb;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
fill: #e14d43; stroke: rgba(255, 255, 255, 0.5);
} fill: #69a8bb;
.welcome-panel-header-image .about-zero {
fill: #363b3f;
} }
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {

File diff suppressed because one or more lines are too long

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,15 +707,12 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #fbeae8; background-color: #69a8bb;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
fill: #e14d43; stroke: rgba(255, 255, 255, 0.5);
} fill: #69a8bb;
.welcome-panel-header-image .about-zero {
fill: #363b3f;
} }
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {

File diff suppressed because one or more lines are too long

View File

@ -3,6 +3,7 @@ $base-color: #363b3f;
$highlight-color: #e14d43; $highlight-color: #e14d43;
$notification-color: #69a8bb; $notification-color: #69a8bb;
$dashboard-accent-1: $notification-color;
$dashboard-icon-background: $highlight-color; $dashboard-icon-background: $highlight-color;
@import "../_admin.scss"; @import "../_admin.scss";

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,15 +707,12 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #e7ebfc; background-color: #273fcc;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
fill: #3858e9; stroke: #627eff;
} fill: #273fcc;
.welcome-panel-header-image .about-zero {
fill: #1b8362;
} }
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {

File diff suppressed because one or more lines are too long

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,15 +707,12 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #e7ebfc; background-color: #273fcc;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
fill: #3858e9; stroke: #627eff;
} fill: #273fcc;
.welcome-panel-header-image .about-zero {
fill: #1b8362;
} }
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {

File diff suppressed because one or more lines are too long

View File

@ -7,8 +7,8 @@ $notification-color: $highlight-color;
$link: $highlight-color; $link: $highlight-color;
$link-focus: darken($highlight-color, 10%); $link-focus: darken($highlight-color, 10%);
$dashboard-accent-1: #3858e9; $dashboard-accent-1: #273fcc;
$dashboard-accent-2: #1b8362; $dashboard-accent-2: #627eff;
$dashboard-icon-background: #1d2327; $dashboard-icon-background: #1d2327;
@import "../_admin.scss"; @import "../_admin.scss";

View File

@ -292,6 +292,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -673,17 +674,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #f3f7f4; background-color: #9ebaa0;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: rgba(255, 255, 255, 0.5);
fill: #9ebaa0; fill: #9ebaa0;
} }
.welcome-panel-header-image .about-zero {
fill: #738e96;
}
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #738e96; background-color: rgba(255, 255, 255, 0.5);
} }

File diff suppressed because one or more lines are too long

View File

@ -292,6 +292,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -673,17 +674,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #f3f7f4; background-color: #9ebaa0;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: rgba(255, 255, 255, 0.5);
fill: #9ebaa0; fill: #9ebaa0;
} }
.welcome-panel-header-image .about-zero {
fill: #738e96;
}
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #738e96; background-color: rgba(255, 255, 255, 0.5);
} }

File diff suppressed because one or more lines are too long

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,17 +707,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #fbf0e7; background-color: #dd823b;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: rgba(255, 255, 255, 0.5);
fill: #dd823b; fill: #dd823b;
} }
.welcome-panel-header-image .about-zero {
fill: #cf4944;
}
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #cf4944; background-color: rgba(255, 255, 255, 0.5);
} }

File diff suppressed because one or more lines are too long

View File

@ -325,6 +325,7 @@ ul#adminmenu > li.current > a.current:after {
} }
/* Admin Menu: bubble */ /* Admin Menu: bubble */
#adminmenu .menu-counter,
#adminmenu .awaiting-mod, #adminmenu .awaiting-mod,
#adminmenu .update-plugins { #adminmenu .update-plugins {
color: #fff; color: #fff;
@ -706,17 +707,14 @@ div#wp-responsive-toggle a:before {
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
background-color: #fbf0e7; background-color: #dd823b;
} }
.welcome-panel-header-image .about-six { .welcome-panel-header-image circle {
stroke: rgba(255, 255, 255, 0.5);
fill: #dd823b; fill: #dd823b;
} }
.welcome-panel-header-image .about-zero {
fill: #cf4944;
}
[class*=welcome-panel-icon] { [class*=welcome-panel-icon] {
background-color: #cf4944; background-color: rgba(255, 255, 255, 0.5);
} }

File diff suppressed because one or more lines are too long

View File

@ -950,6 +950,7 @@ a#remove-post-thumbnail:hover,
padding: 6px 10px 8px; padding: 6px 10px 8px;
} }
.word-wrap-break-word,
.misc-pub-filename { .misc-pub-filename {
word-wrap: break-word; word-wrap: break-word;
} }
@ -1575,6 +1576,9 @@ div.error {
.wrap .notice p:before, .wrap .notice p:before,
.import-php .updating-message:before { .import-php .updating-message:before {
margin-left: 6px; margin-left: 6px;
}
.import-php .updating-message:before {
vertical-align: bottom; vertical-align: bottom;
} }

File diff suppressed because one or more lines are too long

View File

@ -949,6 +949,7 @@ a#remove-post-thumbnail:hover,
padding: 6px 10px 8px; padding: 6px 10px 8px;
} }
.word-wrap-break-word,
.misc-pub-filename { .misc-pub-filename {
word-wrap: break-word; word-wrap: break-word;
} }
@ -1574,6 +1575,9 @@ div.error {
.wrap .notice p:before, .wrap .notice p:before,
.import-php .updating-message:before { .import-php .updating-message:before {
margin-right: 6px; margin-right: 6px;
}
.import-php .updating-message:before {
vertical-align: bottom; vertical-align: bottom;
} }

File diff suppressed because one or more lines are too long

View File

@ -473,7 +473,6 @@ body.trashing #publish-settings {
height: 20px; height: 20px;
cursor: pointer; cursor: pointer;
box-shadow: none; box-shadow: none;
-webkit-appearance: none;
background: transparent; background: transparent;
color: #50575e; color: #50575e;
border: none; border: none;

File diff suppressed because one or more lines are too long

View File

@ -472,7 +472,6 @@ body.trashing #publish-settings {
height: 20px; height: 20px;
cursor: pointer; cursor: pointer;
box-shadow: none; box-shadow: none;
-webkit-appearance: none;
background: transparent; background: transparent;
color: #50575e; color: #50575e;
border: none; border: none;

File diff suppressed because one or more lines are too long

View File

@ -121,7 +121,7 @@
position: relative; position: relative;
overflow: auto; overflow: auto;
margin: 16px 0; margin: 16px 0;
background-color: #e7ebfd; background-color: #273fcc;
font-size: 14px; font-size: 14px;
line-height: 1.3; line-height: 1.3;
clear: both; clear: both;
@ -147,29 +147,35 @@
} }
.welcome-panel-header { .welcome-panel-header {
--about-header-image-width: 521px; --about-header-bg-width: 780px;
--about-header-bg-width: calc(var(--about-header-image-width) * 0.55);
--about-header-bg-offset-inline: 2rem;
position: relative; position: relative;
color: #fff;
} }
.welcome-panel-header-image { .welcome-panel-header-image {
position: absolute; position: absolute !important;
top: -1rem; top: 0;
left: var(--about-header-bg-offset-inline); left: 0;
bottom: 0; bottom: 0;
width: var(--about-header-bg-width); right: 0;
height: auto; z-index: 0 !important;
overflow: hidden;
} }
.welcome-panel-header-image svg { .welcome-panel-header-image svg {
width: 100%; display: block;
margin: auto;
width: var(--about-header-bg-width);
height: auto; height: auto;
transform: scale(0.75);
transform-origin: center top;
} }
.welcome-panel-header a { .welcome-panel-header * {
color: inherit; color: inherit;
position: relative;
z-index: 1;
} }
.welcome-panel-header a:focus, .welcome-panel-header a:focus,
@ -209,18 +215,18 @@
transition: all .1s ease-in-out; transition: all .1s ease-in-out;
content: '\f335'; content: '\f335';
font-size: 24px; font-size: 24px;
color: #1d2327; color: #fff;
} }
.welcome-panel .welcome-panel-close { .welcome-panel .welcome-panel-close {
color: #1d2327; color: #fff;
} }
.welcome-panel .welcome-panel-close:hover, .welcome-panel .welcome-panel-close:hover,
.welcome-panel .welcome-panel-close:focus, .welcome-panel .welcome-panel-close:focus,
.welcome-panel .welcome-panel-close:hover::before, .welcome-panel .welcome-panel-close:hover::before,
.welcome-panel .welcome-panel-close:focus::before { .welcome-panel .welcome-panel-close:focus::before {
color: #2271b1; color: #fff972;
} }
/* @deprecated 5.9.0 -- Button removed from panel. */ /* @deprecated 5.9.0 -- Button removed from panel. */
@ -246,7 +252,6 @@
max-width: 1500px; max-width: 1500px;
width: 100%; width: 100%;
padding: 48px 48px 80px 0; padding: 48px 48px 80px 0;
padding-left: calc(var(--about-header-bg-width) + (var(--about-header-bg-offset-inline) * 2));
} }
.welcome-panel .welcome-panel-column-container { .welcome-panel .welcome-panel-column-container {
@ -265,13 +270,16 @@
[class*="welcome-panel-icon"] { [class*="welcome-panel-icon"] {
height: 60px; height: 60px;
width: 60px; width: 60px;
background-color: #1d2327;
background-position: center; background-position: center;
background-size: 24px 24px; background-size: 24px 24px;
background-repeat: no-repeat; background-repeat: no-repeat;
border-radius: 100%; border-radius: 100%;
} }
.welcome-panel-column > svg {
margin-top: 4px;
}
.welcome-panel-column { .welcome-panel-column {
display: grid; display: grid;
grid-template-columns: min-content 1fr; grid-template-columns: min-content 1fr;
@ -1187,7 +1195,8 @@ a.rsswidget {
padding-left: 6px; padding-left: 6px;
} }
#dashboard_php_nag.php-insecure .dashicons-warning { #dashboard_php_nag.php-no-security-updates .dashicons-warning,
#dashboard_php_nag.php-version-lower-than-future-minimum .dashicons-warning {
color: #d63638; color: #d63638;
} }
@ -1199,14 +1208,15 @@ a.rsswidget {
margin: 12px 0; margin: 12px 0;
} }
#dashboard_php_nag h3 {
font-weight: 600;
}
#dashboard_php_nag .button .dashicons-external { #dashboard_php_nag .button .dashicons-external {
line-height: 25px; line-height: 25px;
} }
.bigger-bolder-text {
font-weight: 600;
font-size: 14px;
}
/* =Media Queries /* =Media Queries
-------------------------------------------------------------- */ -------------------------------------------------------------- */
@ -1351,21 +1361,13 @@ a.rsswidget {
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
[class*="welcome-panel-icon"] { [class*="welcome-panel-icon"],
.welcome-panel-column > svg {
display: none; display: none;
} }
} }
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {
.welcome-panel-header {
--about-header-bg-width: calc(var(--about-header-image-width) * 0.4);
--about-header-bg-offset-inline: 1rem;
}
.welcome-panel-header-image {
top: 2rem;
}
.welcome-panel .welcome-panel-column-container { .welcome-panel .welcome-panel-column-container {
grid-template-columns: 1fr; grid-template-columns: 1fr;
box-sizing: border-box; box-sizing: border-box;
@ -1456,7 +1458,8 @@ a.rsswidget {
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
[class*="welcome-panel-icon"] { [class*="welcome-panel-icon"],
.welcome-panel-column > svg {
display: none; display: none;
} }
} }

File diff suppressed because one or more lines are too long

View File

@ -120,7 +120,7 @@
position: relative; position: relative;
overflow: auto; overflow: auto;
margin: 16px 0; margin: 16px 0;
background-color: #e7ebfd; background-color: #273fcc;
font-size: 14px; font-size: 14px;
line-height: 1.3; line-height: 1.3;
clear: both; clear: both;
@ -146,29 +146,35 @@
} }
.welcome-panel-header { .welcome-panel-header {
--about-header-image-width: 521px; --about-header-bg-width: 780px;
--about-header-bg-width: calc(var(--about-header-image-width) * 0.55);
--about-header-bg-offset-inline: 2rem;
position: relative; position: relative;
color: #fff;
} }
.welcome-panel-header-image { .welcome-panel-header-image {
position: absolute; position: absolute !important;
top: -1rem; top: 0;
right: var(--about-header-bg-offset-inline); right: 0;
bottom: 0; bottom: 0;
width: var(--about-header-bg-width); left: 0;
height: auto; z-index: 0 !important;
overflow: hidden;
} }
.welcome-panel-header-image svg { .welcome-panel-header-image svg {
width: 100%; display: block;
margin: auto;
width: var(--about-header-bg-width);
height: auto; height: auto;
transform: scale(0.75);
transform-origin: center top;
} }
.welcome-panel-header a { .welcome-panel-header * {
color: inherit; color: inherit;
position: relative;
z-index: 1;
} }
.welcome-panel-header a:focus, .welcome-panel-header a:focus,
@ -208,18 +214,18 @@
transition: all .1s ease-in-out; transition: all .1s ease-in-out;
content: '\f335'; content: '\f335';
font-size: 24px; font-size: 24px;
color: #1d2327; color: #fff;
} }
.welcome-panel .welcome-panel-close { .welcome-panel .welcome-panel-close {
color: #1d2327; color: #fff;
} }
.welcome-panel .welcome-panel-close:hover, .welcome-panel .welcome-panel-close:hover,
.welcome-panel .welcome-panel-close:focus, .welcome-panel .welcome-panel-close:focus,
.welcome-panel .welcome-panel-close:hover::before, .welcome-panel .welcome-panel-close:hover::before,
.welcome-panel .welcome-panel-close:focus::before { .welcome-panel .welcome-panel-close:focus::before {
color: #2271b1; color: #fff972;
} }
/* @deprecated 5.9.0 -- Button removed from panel. */ /* @deprecated 5.9.0 -- Button removed from panel. */
@ -245,7 +251,6 @@
max-width: 1500px; max-width: 1500px;
width: 100%; width: 100%;
padding: 48px 0 80px 48px; padding: 48px 0 80px 48px;
padding-right: calc(var(--about-header-bg-width) + (var(--about-header-bg-offset-inline) * 2));
} }
.welcome-panel .welcome-panel-column-container { .welcome-panel .welcome-panel-column-container {
@ -264,13 +269,16 @@
[class*="welcome-panel-icon"] { [class*="welcome-panel-icon"] {
height: 60px; height: 60px;
width: 60px; width: 60px;
background-color: #1d2327;
background-position: center; background-position: center;
background-size: 24px 24px; background-size: 24px 24px;
background-repeat: no-repeat; background-repeat: no-repeat;
border-radius: 100%; border-radius: 100%;
} }
.welcome-panel-column > svg {
margin-top: 4px;
}
.welcome-panel-column { .welcome-panel-column {
display: grid; display: grid;
grid-template-columns: min-content 1fr; grid-template-columns: min-content 1fr;
@ -1186,7 +1194,8 @@ a.rsswidget {
padding-right: 6px; padding-right: 6px;
} }
#dashboard_php_nag.php-insecure .dashicons-warning { #dashboard_php_nag.php-no-security-updates .dashicons-warning,
#dashboard_php_nag.php-version-lower-than-future-minimum .dashicons-warning {
color: #d63638; color: #d63638;
} }
@ -1198,14 +1207,15 @@ a.rsswidget {
margin: 12px 0; margin: 12px 0;
} }
#dashboard_php_nag h3 {
font-weight: 600;
}
#dashboard_php_nag .button .dashicons-external { #dashboard_php_nag .button .dashicons-external {
line-height: 25px; line-height: 25px;
} }
.bigger-bolder-text {
font-weight: 600;
font-size: 14px;
}
/* =Media Queries /* =Media Queries
-------------------------------------------------------------- */ -------------------------------------------------------------- */
@ -1350,21 +1360,13 @@ a.rsswidget {
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
[class*="welcome-panel-icon"] { [class*="welcome-panel-icon"],
.welcome-panel-column > svg {
display: none; display: none;
} }
} }
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {
.welcome-panel-header {
--about-header-bg-width: calc(var(--about-header-image-width) * 0.4);
--about-header-bg-offset-inline: 1rem;
}
.welcome-panel-header-image {
top: 2rem;
}
.welcome-panel .welcome-panel-column-container { .welcome-panel .welcome-panel-column-container {
grid-template-columns: 1fr; grid-template-columns: 1fr;
box-sizing: border-box; box-sizing: border-box;
@ -1455,7 +1457,8 @@ a.rsswidget {
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
[class*="welcome-panel-icon"] { [class*="welcome-panel-icon"],
.welcome-panel-column > svg {
display: none; display: none;
} }
} }

File diff suppressed because one or more lines are too long

View File

@ -726,6 +726,17 @@ form#tags-filter {
padding-right: 0; padding-right: 0;
} }
/* Better position for the WordPress admin notices. */
.privacy-settings .notice,
.site-health .notice {
margin: 25px 22px 15px 20px;
}
.privacy-settings .notice ~ .notice,
.site-health .notice ~ .notice {
margin-top: 5px;
}
/* Emulates .wrap h1 styling */ /* Emulates .wrap h1 styling */
.privacy-settings-header h1, .privacy-settings-header h1,
.health-check-header h1 { .health-check-header h1 {

File diff suppressed because one or more lines are too long

View File

@ -725,6 +725,17 @@ form#tags-filter {
padding-left: 0; padding-left: 0;
} }
/* Better position for the WordPress admin notices. */
.privacy-settings .notice,
.site-health .notice {
margin: 25px 20px 15px 22px;
}
.privacy-settings .notice ~ .notice,
.site-health .notice ~ .notice {
margin-top: 5px;
}
/* Emulates .wrap h1 styling */ /* Emulates .wrap h1 styling */
.privacy-settings-header h1, .privacy-settings-header h1,
.health-check-header h1 { .health-check-header h1 {

File diff suppressed because one or more lines are too long

View File

@ -777,6 +777,12 @@ ul#add-to-blog-users {
.form-table p.timezone-info { .form-table p.timezone-info {
margin: 1em 0; margin: 1em 0;
display: flex;
flex-direction: column;
}
#local-time {
margin-top: 0.5em;
} }
.form-table td fieldset label { .form-table td fieldset label {
@ -886,6 +892,7 @@ table.form-table td .updated p {
#application-passwords-section .notice { #application-passwords-section .notice {
margin-top: 20px; margin-top: 20px;
margin-bottom: 0; margin-bottom: 0;
word-wrap: break-word;
} }
.application-password-display input.code { .application-password-display input.code {
@ -1070,11 +1077,33 @@ table.form-table td .updated p {
vertical-align: middle; vertical-align: middle;
} }
.form-table.permalink-structure .available-structure-tags {
margin-top: 8px;
}
.form-table.permalink-structure .available-structure-tags li { .form-table.permalink-structure .available-structure-tags li {
float: right; float: right;
margin-left: 5px; margin-left: 5px;
} }
.form-table.permalink-structure .structure-selection .row {
margin-bottom: 16px;
}
.form-table.permalink-structure .structure-selection .row > div {
max-width: calc(100% - 24px);
display: inline-flex;
flex-direction: column;
}
.form-table.permalink-structure .structure-selection .row label {
font-weight: 600;
}
.form-table.permalink-structure .structure-selection .row p {
margin-top: 0;
}
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
21.0 - Network Admin 21.0 - Network Admin
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -1108,6 +1137,11 @@ table.form-table td .updated p {
max-width: 60%; max-width: 60%;
} }
.configuration-rules-label {
font-weight: 600;
margin-bottom: 4px;
}
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
Credentials check dialog for Install and Updates Credentials check dialog for Install and Updates
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -1577,14 +1611,20 @@ table.form-table td .updated p {
} }
.form-table.permalink-structure td code { .form-table.permalink-structure td code {
margin-right: 32px;
display: inline-block; display: inline-block;
} }
.form-table.permalink-structure .structure-selection {
margin-top: 8px;
}
.form-table.permalink-structure .structure-selection .row > div {
max-width: calc(100% - 36px);
width: 100%;
}
.form-table.permalink-structure td input[type="text"] { .form-table.permalink-structure td input[type="text"] {
margin-right: 32px;
margin-top: 4px; margin-top: 4px;
width: 96%;
} }
.form-table input.regular-text { .form-table input.regular-text {
@ -1603,13 +1643,6 @@ table.form-table td .updated p {
display: block; display: block;
} }
#utc-time,
#local-time {
display: block;
float: none;
margin-top: 0.5em;
}
.form-field #domain { .form-field #domain {
max-width: none; max-width: none;
} }
@ -1644,6 +1677,10 @@ table.form-table td .updated p {
left: 2.5rem; left: 2.5rem;
} }
body.user-new-php .wp-pwd button.wp-hide-pw {
left: 0;
}
.wp-pwd button.button:hover, .wp-pwd button.button:hover,
.wp-pwd button.button:focus { .wp-pwd button.button:focus {
background: transparent; background: transparent;
@ -1665,6 +1702,11 @@ table.form-table td .updated p {
padding-left: 5rem; padding-left: 5rem;
} }
body.user-new-php .wp-pwd [type="text"],
body.user-new-php .wp-pwd [type="password"] {
padding-left: 2.5rem;
}
.wp-cancel-pw .dashicons-no { .wp-cancel-pw .dashicons-no {
display: inline-block; display: inline-block;
} }

File diff suppressed because one or more lines are too long

View File

@ -776,6 +776,12 @@ ul#add-to-blog-users {
.form-table p.timezone-info { .form-table p.timezone-info {
margin: 1em 0; margin: 1em 0;
display: flex;
flex-direction: column;
}
#local-time {
margin-top: 0.5em;
} }
.form-table td fieldset label { .form-table td fieldset label {
@ -885,6 +891,7 @@ table.form-table td .updated p {
#application-passwords-section .notice { #application-passwords-section .notice {
margin-top: 20px; margin-top: 20px;
margin-bottom: 0; margin-bottom: 0;
word-wrap: break-word;
} }
.application-password-display input.code { .application-password-display input.code {
@ -1069,11 +1076,33 @@ table.form-table td .updated p {
vertical-align: middle; vertical-align: middle;
} }
.form-table.permalink-structure .available-structure-tags {
margin-top: 8px;
}
.form-table.permalink-structure .available-structure-tags li { .form-table.permalink-structure .available-structure-tags li {
float: left; float: left;
margin-right: 5px; margin-right: 5px;
} }
.form-table.permalink-structure .structure-selection .row {
margin-bottom: 16px;
}
.form-table.permalink-structure .structure-selection .row > div {
max-width: calc(100% - 24px);
display: inline-flex;
flex-direction: column;
}
.form-table.permalink-structure .structure-selection .row label {
font-weight: 600;
}
.form-table.permalink-structure .structure-selection .row p {
margin-top: 0;
}
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
21.0 - Network Admin 21.0 - Network Admin
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -1107,6 +1136,11 @@ table.form-table td .updated p {
max-width: 60%; max-width: 60%;
} }
.configuration-rules-label {
font-weight: 600;
margin-bottom: 4px;
}
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
Credentials check dialog for Install and Updates Credentials check dialog for Install and Updates
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -1576,14 +1610,20 @@ table.form-table td .updated p {
} }
.form-table.permalink-structure td code { .form-table.permalink-structure td code {
margin-left: 32px;
display: inline-block; display: inline-block;
} }
.form-table.permalink-structure .structure-selection {
margin-top: 8px;
}
.form-table.permalink-structure .structure-selection .row > div {
max-width: calc(100% - 36px);
width: 100%;
}
.form-table.permalink-structure td input[type="text"] { .form-table.permalink-structure td input[type="text"] {
margin-left: 32px;
margin-top: 4px; margin-top: 4px;
width: 96%;
} }
.form-table input.regular-text { .form-table input.regular-text {
@ -1602,13 +1642,6 @@ table.form-table td .updated p {
display: block; display: block;
} }
#utc-time,
#local-time {
display: block;
float: none;
margin-top: 0.5em;
}
.form-field #domain { .form-field #domain {
max-width: none; max-width: none;
} }
@ -1643,6 +1676,10 @@ table.form-table td .updated p {
right: 2.5rem; right: 2.5rem;
} }
body.user-new-php .wp-pwd button.wp-hide-pw {
right: 0;
}
.wp-pwd button.button:hover, .wp-pwd button.button:hover,
.wp-pwd button.button:focus { .wp-pwd button.button:focus {
background: transparent; background: transparent;
@ -1664,6 +1701,11 @@ table.form-table td .updated p {
padding-right: 5rem; padding-right: 5rem;
} }
body.user-new-php .wp-pwd [type="text"],
body.user-new-php .wp-pwd [type="password"] {
padding-right: 2.5rem;
}
.wp-cancel-pw .dashicons-no { .wp-cancel-pw .dashicons-no {
display: inline-block; display: inline-block;
} }

File diff suppressed because one or more lines are too long

View File

@ -1345,7 +1345,7 @@ ul.cat-checklist {
} }
.plugins tr.paused th.check-column { .plugins tr.paused th.check-column {
border-right: 4px solid #d63638; border-right: 4px solid #b32d2e;
} }
.plugins tr.paused th, .plugins tr.paused th,
@ -1355,7 +1355,7 @@ ul.cat-checklist {
.plugins tr.paused .plugin-title, .plugins tr.paused .plugin-title,
.plugins .paused .dashicons-warning { .plugins .paused .dashicons-warning {
color: #d63638; color: #b32d2e;
} }
.plugins .paused .error-display p, .plugins .paused .error-display p,
@ -1365,7 +1365,7 @@ ul.cat-checklist {
} }
.plugins .resume-link { .plugins .resume-link {
color: #d63638; color: #b32d2e;
} }
.plugin-card .update-now:before { .plugin-card .update-now:before {
@ -1373,11 +1373,11 @@ ul.cat-checklist {
content: "\f463"; content: "\f463";
display: inline-block; display: inline-block;
font: normal 20px/1 dashicons; font: normal 20px/1 dashicons;
margin: 3px -2px 0 5px; margin: -3px -2px 0 5px;
speak: never; speak: never;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
vertical-align: top; vertical-align: middle;
} }
.plugin-card .updating-message:before { .plugin-card .updating-message:before {
@ -1399,6 +1399,17 @@ ul.cat-checklist {
content: "\f147"; content: "\f147";
} }
.plugin-install-php #the-list {
display: flex;
flex-wrap: wrap;
}
.plugin-install-php .plugin-card {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.plugin-install-php h2 { .plugin-install-php h2 {
clear: both; clear: both;
} }
@ -1753,6 +1764,15 @@ div.action-links,
display: none; display: none;
} }
.tablenav.bottom .actions select {
margin-bottom: 5px;
}
.tablenav.bottom .actions.alignleft + .actions.alignleft {
clear: right;
margin-top: 10px;
}
.tablenav.bottom .tablenav-pages.one-page { .tablenav.bottom .tablenav-pages.one-page {
margin-top: 15px; margin-top: 15px;
height: 0; height: 0;

File diff suppressed because one or more lines are too long

View File

@ -1344,7 +1344,7 @@ ul.cat-checklist {
} }
.plugins tr.paused th.check-column { .plugins tr.paused th.check-column {
border-left: 4px solid #d63638; border-left: 4px solid #b32d2e;
} }
.plugins tr.paused th, .plugins tr.paused th,
@ -1354,7 +1354,7 @@ ul.cat-checklist {
.plugins tr.paused .plugin-title, .plugins tr.paused .plugin-title,
.plugins .paused .dashicons-warning { .plugins .paused .dashicons-warning {
color: #d63638; color: #b32d2e;
} }
.plugins .paused .error-display p, .plugins .paused .error-display p,
@ -1364,7 +1364,7 @@ ul.cat-checklist {
} }
.plugins .resume-link { .plugins .resume-link {
color: #d63638; color: #b32d2e;
} }
.plugin-card .update-now:before { .plugin-card .update-now:before {
@ -1372,11 +1372,11 @@ ul.cat-checklist {
content: "\f463"; content: "\f463";
display: inline-block; display: inline-block;
font: normal 20px/1 dashicons; font: normal 20px/1 dashicons;
margin: 3px 5px 0 -2px; margin: -3px 5px 0 -2px;
speak: never; speak: never;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
vertical-align: top; vertical-align: middle;
} }
.plugin-card .updating-message:before { .plugin-card .updating-message:before {
@ -1398,6 +1398,17 @@ ul.cat-checklist {
content: "\f147"; content: "\f147";
} }
.plugin-install-php #the-list {
display: flex;
flex-wrap: wrap;
}
.plugin-install-php .plugin-card {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.plugin-install-php h2 { .plugin-install-php h2 {
clear: both; clear: both;
} }
@ -1752,6 +1763,15 @@ div.action-links,
display: none; display: none;
} }
.tablenav.bottom .actions select {
margin-bottom: 5px;
}
.tablenav.bottom .actions.alignleft + .actions.alignleft {
clear: left;
margin-top: 10px;
}
.tablenav.bottom .tablenav-pages.one-page { .tablenav.bottom .tablenav-pages.one-page {
margin-top: 15px; margin-top: 15px;
height: 0; height: 0;

File diff suppressed because one or more lines are too long

View File

@ -782,8 +782,8 @@ border color while dragging a file over the uploader drop area */
.edit-attachment-frame input, .edit-attachment-frame input,
.edit-attachment-frame textarea { .edit-attachment-frame textarea {
padding: 6px 8px; padding: 4px 8px;
line-height: 1.14285714; line-height: 1.42857143;
} }
.edit-attachment-frame .attachment-info { .edit-attachment-frame .attachment-info {
@ -850,6 +850,11 @@ border color while dragging a file over the uploader drop area */
margin-bottom: 5px; margin-bottom: 5px;
} }
.wp_attachment_details #attachment_alt {
max-width: 500px;
height: 3.28571428em;
}
.wp_attachment_details .attachment-alt-text-description { .wp_attachment_details .attachment-alt-text-description {
margin-top: 5px; margin-top: 5px;
} }
@ -1232,11 +1237,24 @@ audio, video {
} }
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {
.edit-attachment-frame input,
.edit-attachment-frame textarea {
line-height: 1.5;
}
.wp_attachment_details label[for="content"] { .wp_attachment_details label[for="content"] {
font-size: 14px; font-size: 14px;
line-height: 1.5; line-height: 1.5;
} }
.wp_attachment_details textarea {
line-height: 1.5;
}
.wp_attachment_details #attachment_alt {
height: 3.375em;
}
.media-upload-form .media-item.error, .media-upload-form .media-item.error,
.media-upload-form .media-item .error { .media-upload-form .media-item .error {
font-size: 13px; font-size: 13px;

File diff suppressed because one or more lines are too long

View File

@ -781,8 +781,8 @@ border color while dragging a file over the uploader drop area */
.edit-attachment-frame input, .edit-attachment-frame input,
.edit-attachment-frame textarea { .edit-attachment-frame textarea {
padding: 6px 8px; padding: 4px 8px;
line-height: 1.14285714; line-height: 1.42857143;
} }
.edit-attachment-frame .attachment-info { .edit-attachment-frame .attachment-info {
@ -849,6 +849,11 @@ border color while dragging a file over the uploader drop area */
margin-bottom: 5px; margin-bottom: 5px;
} }
.wp_attachment_details #attachment_alt {
max-width: 500px;
height: 3.28571428em;
}
.wp_attachment_details .attachment-alt-text-description { .wp_attachment_details .attachment-alt-text-description {
margin-top: 5px; margin-top: 5px;
} }
@ -1231,11 +1236,24 @@ audio, video {
} }
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {
.edit-attachment-frame input,
.edit-attachment-frame textarea {
line-height: 1.5;
}
.wp_attachment_details label[for="content"] { .wp_attachment_details label[for="content"] {
font-size: 14px; font-size: 14px;
line-height: 1.5; line-height: 1.5;
} }
.wp_attachment_details textarea {
line-height: 1.5;
}
.wp_attachment_details #attachment_alt {
height: 3.375em;
}
.media-upload-form .media-item.error, .media-upload-form .media-item.error,
.media-upload-form .media-item .error { .media-upload-form .media-item .error {
font-size: 13px; font-size: 13px;

File diff suppressed because one or more lines are too long

View File

@ -12,10 +12,6 @@ are styled in the Privacy section of edit.css */
font-weight: 400; font-weight: 400;
} }
.health-check-widget-title-section {
text-align: center;
}
.site-health-progress-wrapper { .site-health-progress-wrapper {
margin-bottom: 1rem; margin-bottom: 1rem;
} }
@ -285,17 +281,6 @@ are styled in the Privacy section of edit.css */
padding-right: 20px; padding-right: 20px;
} }
/* Better position for the WordPress admin notices and update nag. */
.site-health .notice {
margin: 5px 22px 15px 20px;
}
.site-health .update-nag {
margin-bottom: 20px;
margin-right: 22px;
}
.health-check-wp-paths-sizes.spinner { .health-check-wp-paths-sizes.spinner {
visibility: visible; visibility: visible;
float: none; float: none;
@ -308,6 +293,14 @@ are styled in the Privacy section of edit.css */
padding-right: 16px; padding-right: 16px;
} }
#dashboard_site_health .site-health-details p:first-child {
margin-top: 0;
}
#dashboard_site_health .site-health-details p:last-child {
margin-bottom: 0;
}
#dashboard_site_health .health-check-widget { #dashboard_site_health .health-check-widget {
display: grid; display: grid;
grid-template-columns: 1fr 2fr; grid-template-columns: 1fr 2fr;
@ -319,6 +312,11 @@ are styled in the Privacy section of edit.css */
margin-right: 0; margin-right: 0;
} }
.health-check-widget-title-section {
margin-bottom: 0;
text-align: center;
}
@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
#dashboard_site_health .health-check-widget { #dashboard_site_health .health-check-widget {
grid-template-columns: 100%; grid-template-columns: 100%;

File diff suppressed because one or more lines are too long

View File

@ -11,10 +11,6 @@ are styled in the Privacy section of edit.css */
font-weight: 400; font-weight: 400;
} }
.health-check-widget-title-section {
text-align: center;
}
.site-health-progress-wrapper { .site-health-progress-wrapper {
margin-bottom: 1rem; margin-bottom: 1rem;
} }
@ -284,17 +280,6 @@ are styled in the Privacy section of edit.css */
padding-left: 20px; padding-left: 20px;
} }
/* Better position for the WordPress admin notices and update nag. */
.site-health .notice {
margin: 5px 20px 15px 22px;
}
.site-health .update-nag {
margin-bottom: 20px;
margin-left: 22px;
}
.health-check-wp-paths-sizes.spinner { .health-check-wp-paths-sizes.spinner {
visibility: visible; visibility: visible;
float: none; float: none;
@ -307,6 +292,14 @@ are styled in the Privacy section of edit.css */
padding-left: 16px; padding-left: 16px;
} }
#dashboard_site_health .site-health-details p:first-child {
margin-top: 0;
}
#dashboard_site_health .site-health-details p:last-child {
margin-bottom: 0;
}
#dashboard_site_health .health-check-widget { #dashboard_site_health .health-check-widget {
display: grid; display: grid;
grid-template-columns: 1fr 2fr; grid-template-columns: 1fr 2fr;
@ -318,6 +311,11 @@ are styled in the Privacy section of edit.css */
margin-left: 0; margin-left: 0;
} }
.health-check-widget-title-section {
margin-bottom: 0;
text-align: center;
}
@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
#dashboard_site_health .health-check-widget { #dashboard_site_health .health-check-widget {
grid-template-columns: 100%; grid-template-columns: 100%;

File diff suppressed because one or more lines are too long

View File

@ -1807,7 +1807,7 @@ body.full-overlay-active {
#customize-container iframe, #customize-container iframe,
.theme-install-overlay iframe { .theme-install-overlay iframe {
height: 100%; height: 100%;
width: 100vw; width: 100%;
z-index: 20; z-index: 20;
transition: opacity 0.3s; transition: opacity 0.3s;
} }

File diff suppressed because one or more lines are too long

View File

@ -1806,7 +1806,7 @@ body.full-overlay-active {
#customize-container iframe, #customize-container iframe,
.theme-install-overlay iframe { .theme-install-overlay iframe {
height: 100%; height: 100%;
width: 100vw; width: 100%;
z-index: 20; z-index: 20;
transition: opacity 0.3s; transition: opacity 0.3s;
} }

File diff suppressed because one or more lines are too long

View File

@ -25,6 +25,11 @@ if ( $doaction ) {
check_admin_referer( 'bulk-comments' ); check_admin_referer( 'bulk-comments' );
if ( 'delete_all' === $doaction && ! empty( $_REQUEST['pagegen_timestamp'] ) ) { if ( 'delete_all' === $doaction && ! empty( $_REQUEST['pagegen_timestamp'] ) ) {
/**
* @global wpdb $wpdb WordPress database abstraction object.
*/
global $wpdb;
$comment_status = wp_unslash( $_REQUEST['comment_status'] ); $comment_status = wp_unslash( $_REQUEST['comment_status'] );
$delete_time = wp_unslash( $_REQUEST['pagegen_timestamp'] ); $delete_time = wp_unslash( $_REQUEST['pagegen_timestamp'] );
$comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_approved = %s AND %s > comment_date_gmt", $comment_status, $delete_time ) ); $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_approved = %s AND %s > comment_date_gmt", $comment_status, $delete_time ) );
@ -135,6 +140,11 @@ $wp_list_table->prepare_items();
wp_enqueue_script( 'admin-comments' ); wp_enqueue_script( 'admin-comments' );
enqueue_comment_hotkeys_js(); enqueue_comment_hotkeys_js();
/**
* @global int $post_id
*/
global $post_id;
if ( $post_id ) { if ( $post_id ) {
$comments_count = wp_count_comments( $post_id ); $comments_count = wp_count_comments( $post_id );
$draft_or_post_title = wp_html_excerpt( _draft_or_post_title( $post_id ), 50, '&hellip;' ); $draft_or_post_title = wp_html_excerpt( _draft_or_post_title( $post_id ), 50, '&hellip;' );
@ -335,7 +345,7 @@ if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $
} }
} }
echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br/>\n", $messages ) . '</p></div>'; echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br />\n", $messages ) . '</p></div>';
} }
} }
?> ?>

View File

@ -68,8 +68,10 @@ $preload_paths = array(
array( rest_get_route_for_post_type_items( 'attachment' ), 'OPTIONS' ), array( rest_get_route_for_post_type_items( 'attachment' ), 'OPTIONS' ),
array( rest_get_route_for_post_type_items( 'page' ), 'OPTIONS' ), array( rest_get_route_for_post_type_items( 'page' ), 'OPTIONS' ),
array( rest_get_route_for_post_type_items( 'wp_block' ), 'OPTIONS' ), array( rest_get_route_for_post_type_items( 'wp_block' ), 'OPTIONS' ),
array( rest_get_route_for_post_type_items( 'wp_template' ), 'OPTIONS' ),
sprintf( '%s/autosaves?context=edit', $rest_path ), sprintf( '%s/autosaves?context=edit', $rest_path ),
'/wp/v2/settings', '/wp/v2/settings',
array( '/wp/v2/settings', 'OPTIONS' ),
); );
block_editor_rest_api_preload( $preload_paths, $block_editor_context ); block_editor_rest_api_preload( $preload_paths, $block_editor_context );

View File

@ -10,6 +10,11 @@
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {
die( '-1' ); die( '-1' );
} }
/**
* @global WP_Comment $comment Global comment object.
*/
global $comment;
?> ?>
<form name="post" action="comment.php" method="post" id="post"> <form name="post" action="comment.php" method="post" id="post">
<?php wp_nonce_field( 'update-comment_' . $comment->comment_ID ); ?> <?php wp_nonce_field( 'update-comment_' . $comment->comment_ID ); ?>
@ -139,7 +144,14 @@ printf( __( 'Submitted on: %s' ), '<b>' . $submitted . '</b>' );
<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><span aria-hidden="true"><?php _e( 'Edit' ); ?></span> <span class="screen-reader-text"><?php _e( 'Edit date and time' ); ?></span></a> <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><span aria-hidden="true"><?php _e( 'Edit' ); ?></span> <span class="screen-reader-text"><?php _e( 'Edit date and time' ); ?></span></a>
<fieldset id='timestampdiv' class='hide-if-js'> <fieldset id='timestampdiv' class='hide-if-js'>
<legend class="screen-reader-text"><?php _e( 'Date and time' ); ?></legend> <legend class="screen-reader-text"><?php _e( 'Date and time' ); ?></legend>
<?php touch_time( ( 'editcomment' === $action ), 0 ); ?> <?php
/**
* @global string $action
*/
global $action;
touch_time( ( 'editcomment' === $action ), 0 );
?>
</fieldset> </fieldset>
</div> </div>

View File

@ -83,7 +83,7 @@ if ( $message ) {
<div id="message" class="notice notice-<?php echo $class; ?>"> <div id="message" class="notice notice-<?php echo $class; ?>">
<p><strong><?php echo $message; ?></strong></p> <p><strong><?php echo $message; ?></strong></p>
<?php if ( $wp_http_referer ) { ?> <?php if ( $wp_http_referer ) { ?>
<p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), admin_url( 'term.php?taxonomy=' . $taxonomy ) ) ); ?>"> <p><a href="<?php echo esc_url( wp_validate_redirect( sanitize_url( $wp_http_referer ), admin_url( 'term.php?taxonomy=' . $taxonomy ) ) ); ?>">
<?php echo esc_html( $tax->labels->back_to_items ); ?> <?php echo esc_html( $tax->labels->back_to_items ); ?>
</a></p> </a></p>
<?php } ?> <?php } ?>
@ -145,10 +145,9 @@ if ( isset( $tag->name ) ) {
<table class="form-table" role="presentation"> <table class="form-table" role="presentation">
<tr class="form-field form-required term-name-wrap"> <tr class="form-field form-required term-name-wrap">
<th scope="row"><label for="name"><?php _ex( 'Name', 'term name' ); ?></label></th> <th scope="row"><label for="name"><?php _ex( 'Name', 'term name' ); ?></label></th>
<td><input name="name" id="name" type="text" value="<?php echo $tag_name_value; ?>" size="40" aria-required="true" /> <td><input name="name" id="name" type="text" value="<?php echo $tag_name_value; ?>" size="40" aria-required="true" aria-describedby="name-description" />
<p class="description"><?php echo $tax->labels->name_field_description; ?></p></td> <p class="description" id="name-description"><?php echo $tax->labels->name_field_description; ?></p></td>
</tr> </tr>
<?php if ( ! global_terms_enabled() ) { ?>
<tr class="form-field term-slug-wrap"> <tr class="form-field term-slug-wrap">
<th scope="row"><label for="slug"><?php _e( 'Slug' ); ?></label></th> <th scope="row"><label for="slug"><?php _e( 'Slug' ); ?></label></th>
<?php <?php
@ -167,10 +166,9 @@ if ( isset( $tag->name ) ) {
*/ */
$slug = isset( $tag->slug ) ? apply_filters( 'editable_slug', $tag->slug, $tag ) : ''; $slug = isset( $tag->slug ) ? apply_filters( 'editable_slug', $tag->slug, $tag ) : '';
?> ?>
<td><input name="slug" id="slug" type="text" value="<?php echo esc_attr( $slug ); ?>" size="40" /> <td><input name="slug" id="slug" type="text" value="<?php echo esc_attr( $slug ); ?>" size="40" aria-describedby="slug-description" />
<p class="description"><?php echo $tax->labels->slug_field_description; ?></p></td> <p class="description" id="slug-description"><?php echo $tax->labels->slug_field_description; ?></p></td>
</tr> </tr>
<?php } ?>
<?php if ( is_taxonomy_hierarchical( $taxonomy ) ) : ?> <?php if ( is_taxonomy_hierarchical( $taxonomy ) ) : ?>
<tr class="form-field term-parent-wrap"> <tr class="form-field term-parent-wrap">
<th scope="row"><label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label></th> <th scope="row"><label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label></th>
@ -186,6 +184,7 @@ if ( isset( $tag->name ) ) {
'exclude_tree' => $tag->term_id, 'exclude_tree' => $tag->term_id,
'hierarchical' => true, 'hierarchical' => true,
'show_option_none' => __( 'None' ), 'show_option_none' => __( 'None' ),
'aria_describedby' => 'parent-description',
); );
/** This filter is documented in wp-admin/edit-tags.php */ /** This filter is documented in wp-admin/edit-tags.php */
@ -193,17 +192,17 @@ if ( isset( $tag->name ) ) {
wp_dropdown_categories( $dropdown_args ); wp_dropdown_categories( $dropdown_args );
?> ?>
<?php if ( 'category' === $taxonomy ) : ?> <?php if ( 'category' === $taxonomy ) : ?>
<p class="description"><?php _e( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?></p> <p class="description" id="parent-description"><?php _e( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?></p>
<?php else : ?> <?php else : ?>
<p class="description"><?php echo $tax->labels->parent_field_description; ?></p> <p class="description" id="parent-description"><?php echo $tax->labels->parent_field_description; ?></p>
<?php endif; ?> <?php endif; ?>
</td> </td>
</tr> </tr>
<?php endif; // is_taxonomy_hierarchical() ?> <?php endif; // is_taxonomy_hierarchical() ?>
<tr class="form-field term-description-wrap"> <tr class="form-field term-description-wrap">
<th scope="row"><label for="description"><?php _e( 'Description' ); ?></label></th> <th scope="row"><label for="description"><?php _e( 'Description' ); ?></label></th>
<td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $tag->description; // textarea_escaped ?></textarea> <td><textarea name="description" id="description" rows="5" cols="50" class="large-text" aria-describedby="description-description"><?php echo $tag->description; // textarea_escaped ?></textarea>
<p class="description"><?php echo $tax->labels->desc_field_description; ?></p></td> <p class="description" id="description-description"><?php echo $tax->labels->desc_field_description; ?></p></td>
</tr> </tr>
<?php <?php
// Back compat hooks. // Back compat hooks.

View File

@ -160,7 +160,7 @@ switch ( $wp_list_table->current_action() ) {
wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) ); wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) );
} }
wp_redirect( esc_url_raw( get_edit_term_link( $term_id, $taxonomy, $post_type ) ) ); wp_redirect( sanitize_url( get_edit_term_link( $term_id, $taxonomy, $post_type ) ) );
exit; exit;
case 'editedtag': case 'editedtag':
@ -280,9 +280,7 @@ if ( 'category' === $taxonomy || 'link_category' === $taxonomy || 'post_tag' ===
$help .= '<ul>' . $help .= '<ul>' .
'<li>' . __( '<strong>Name</strong> &mdash; The name is how it appears on your site.' ) . '</li>'; '<li>' . __( '<strong>Name</strong> &mdash; The name is how it appears on your site.' ) . '</li>';
if ( ! global_terms_enabled() ) { $help .= '<li>' . __( '<strong>Slug</strong> &mdash; The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' ) . '</li>';
$help .= '<li>' . __( '<strong>Slug</strong> &mdash; The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' ) . '</li>';
}
if ( 'category' === $taxonomy ) { if ( 'category' === $taxonomy ) {
$help .= '<li>' . __( '<strong>Parent</strong> &mdash; Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.' ) . '</li>'; $help .= '<li>' . __( '<strong>Parent</strong> &mdash; Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.' ) . '</li>';
@ -453,16 +451,14 @@ if ( $can_edit_terms ) {
<div class="form-field form-required term-name-wrap"> <div class="form-field form-required term-name-wrap">
<label for="tag-name"><?php _ex( 'Name', 'term name' ); ?></label> <label for="tag-name"><?php _ex( 'Name', 'term name' ); ?></label>
<input name="tag-name" id="tag-name" type="text" value="" size="40" aria-required="true" /> <input name="tag-name" id="tag-name" type="text" value="" size="40" aria-required="true" aria-describedby="name-description" />
<p><?php echo $tax->labels->name_field_description; ?></p> <p id="name-description"><?php echo $tax->labels->name_field_description; ?></p>
</div> </div>
<?php if ( ! global_terms_enabled() ) : ?>
<div class="form-field term-slug-wrap"> <div class="form-field term-slug-wrap">
<label for="tag-slug"><?php _e( 'Slug' ); ?></label> <label for="tag-slug"><?php _e( 'Slug' ); ?></label>
<input name="slug" id="tag-slug" type="text" value="" size="40" /> <input name="slug" id="tag-slug" type="text" value="" size="40" aria-describedby="slug-description" />
<p><?php echo $tax->labels->slug_field_description; ?></p> <p id="slug-description"><?php echo $tax->labels->slug_field_description; ?></p>
</div> </div>
<?php endif; // global_terms_enabled() ?>
<?php if ( is_taxonomy_hierarchical( $taxonomy ) ) : ?> <?php if ( is_taxonomy_hierarchical( $taxonomy ) ) : ?>
<div class="form-field term-parent-wrap"> <div class="form-field term-parent-wrap">
<label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label> <label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label>
@ -486,7 +482,7 @@ if ( $can_edit_terms ) {
* @param array $dropdown_args { * @param array $dropdown_args {
* An array of taxonomy parent drop-down arguments. * An array of taxonomy parent drop-down arguments.
* *
* @type int|bool $hide_empty Whether to hide terms not attached to any posts. Default 0|false. * @type int|bool $hide_empty Whether to hide terms not attached to any posts. Default 0.
* @type bool $hide_if_empty Whether to hide the drop-down if no terms exist. Default false. * @type bool $hide_if_empty Whether to hide the drop-down if no terms exist. Default false.
* @type string $taxonomy The taxonomy slug. * @type string $taxonomy The taxonomy slug.
* @type string $name Value of the name attribute to use for the drop-down select element. * @type string $name Value of the name attribute to use for the drop-down select element.
@ -500,19 +496,21 @@ if ( $can_edit_terms ) {
*/ */
$dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' ); $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' );
$dropdown_args['aria_describedby'] = 'parent-description';
wp_dropdown_categories( $dropdown_args ); wp_dropdown_categories( $dropdown_args );
?> ?>
<?php if ( 'category' === $taxonomy ) : ?> <?php if ( 'category' === $taxonomy ) : ?>
<p><?php _e( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?></p> <p id="parent-description"><?php _e( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?></p>
<?php else : ?> <?php else : ?>
<p><?php echo $tax->labels->parent_field_description; ?></p> <p id="parent-description"><?php echo $tax->labels->parent_field_description; ?></p>
<?php endif; ?> <?php endif; ?>
</div> </div>
<?php endif; // is_taxonomy_hierarchical() ?> <?php endif; // is_taxonomy_hierarchical() ?>
<div class="form-field term-description-wrap"> <div class="form-field term-description-wrap">
<label for="tag-description"><?php _e( 'Description' ); ?></label> <label for="tag-description"><?php _e( 'Description' ); ?></label>
<textarea name="description" id="tag-description" rows="5" cols="40"></textarea> <textarea name="description" id="tag-description" rows="5" cols="40" aria-describedby="description-description"></textarea>
<p><?php echo $tax->labels->desc_field_description; ?></p> <p id="description-description"><?php echo $tax->labels->desc_field_description; ?></p>
</div> </div>
<?php <?php

View File

@ -9,6 +9,11 @@
/** WordPress Administration Bootstrap */ /** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php'; require_once __DIR__ . '/admin.php';
/**
* @global string $typenow The post type of the current screen.
*/
global $typenow;
if ( ! $typenow ) { if ( ! $typenow ) {
wp_die( __( 'Invalid post type.' ) ); wp_die( __( 'Invalid post type.' ) );
} }
@ -87,6 +92,11 @@ if ( $doaction ) {
$post_status = preg_replace( '/[^a-z0-9_-]+/i', '', $_REQUEST['post_status'] ); $post_status = preg_replace( '/[^a-z0-9_-]+/i', '', $_REQUEST['post_status'] );
// Validate the post status exists. // Validate the post status exists.
if ( get_post_status_object( $post_status ) ) { if ( get_post_status_object( $post_status ) ) {
/**
* @global wpdb $wpdb WordPress database abstraction object.
*/
global $wpdb;
$post_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type=%s AND post_status = %s", $post_type, $post_status ) ); $post_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type=%s AND post_status = %s", $post_type, $post_status ) );
} }
$doaction = 'delete'; $doaction = 'delete';

View File

@ -57,22 +57,22 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section has-2-columns"> <div class="about__section has-2-columns">
<div class="column aligncenter"> <div class="column aligncenter">
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-1.svg' ) ); ?>" alt="" /> <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-1.svg?ver=6.1' ) ); ?>" alt="" />
<h2 class="is-smaller-heading"><?php _e( 'The 1st Freedom' ); ?></h2> <h2 class="is-smaller-heading"><?php _e( 'The 1st Freedom' ); ?></h2>
<p><?php _e( 'To run the program for any purpose.' ); ?></p> <p><?php _e( 'To run the program for any purpose.' ); ?></p>
</div> </div>
<div class="column aligncenter"> <div class="column aligncenter">
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-2.svg' ) ); ?>" alt="" /> <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-2.svg?ver=6.1' ) ); ?>" alt="" />
<h2 class="is-smaller-heading"><?php _e( 'The 2nd Freedom' ); ?></h2> <h2 class="is-smaller-heading"><?php _e( 'The 2nd Freedom' ); ?></h2>
<p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p> <p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p>
</div> </div>
<div class="column aligncenter"> <div class="column aligncenter">
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-3.svg' ) ); ?>" alt="" /> <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-3.svg?ver=6.1' ) ); ?>" alt="" />
<h2 class="is-smaller-heading"><?php _e( 'The 3rd Freedom' ); ?></h2> <h2 class="is-smaller-heading"><?php _e( 'The 3rd Freedom' ); ?></h2>
<p><?php _e( 'To redistribute.' ); ?></p> <p><?php _e( 'To redistribute.' ); ?></p>
</div> </div>
<div class="column aligncenter"> <div class="column aligncenter">
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-4.svg' ) ); ?>" alt="" /> <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-4.svg?ver=6.1' ) ); ?>" alt="" />
<h2 class="is-smaller-heading"><?php _e( 'The 4th Freedom' ); ?></h2> <h2 class="is-smaller-heading"><?php _e( 'The 4th Freedom' ); ?></h2>
<p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p> <p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p>
</div> </div>

View File

@ -1,5 +1 @@
<svg width="521" height="504" viewBox="0 0 521 504" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"> <svg width="780" height="550" viewBox="0 0 780 550" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><g opacity=".5" fill="#273FCC" stroke="#627EFF" stroke-width="2" stroke-miterlimit="10"><circle cx="434.757" cy="71.524" r="66.1" /><circle cx="432.587" cy="43.138" r="66.1" /><circle cx="426.277" cy="16.14" r="66.1" /><circle cx="416.143" cy="-9.165" r="66.1" /><circle cx="402.53" cy="-32.447" r="66.1" /><circle cx="385.755" cy="-53.376" r="66.1" /><circle cx="116.864" cy="-53.072" r="66.1" /><circle cx="99.984" cy="-32.183" r="66.1" /><circle cx="86.278" cy="-8.953" r="66.1" /><circle cx="76.078" cy="16.3" r="66.1" /><circle cx="69.714" cy="43.23" r="66.1" /><circle cx="67.518" cy="71.524" r="66.1" /><circle cx="67.518" cy="71.524" r="66.1" /><circle cx="67.518" cy="99.05" r="66.1" /><circle cx="67.518" cy="126.577" r="66.1" /><circle cx="67.518" cy="154.09" r="66.1" /><circle cx="67.518" cy="181.617" r="66.1" /><circle cx="67.518" cy="209.143" r="66.1" /><circle cx="67.518" cy="236.67" r="66.1" /><circle cx="67.518" cy="264.196" r="66.1" /><circle cx="67.518" cy="291.722" r="66.1" /><circle cx="67.518" cy="319.236" r="66.1" /><circle cx="67.518" cy="346.762" r="66.1" /><circle cx="67.518" cy="374.289" r="66.1" /><circle cx="67.518" cy="374.831" r="66.1" /><circle cx="68.471" cy="393.565" r="66.1" /><circle cx="71.249" cy="411.757" r="66.1" /><circle cx="75.76" cy="429.315" r="66.1" /><circle cx="81.925" cy="446.146" r="66.1" /><circle cx="89.651" cy="462.17" r="66.1" /><circle cx="411.579" cy="464.073" r="66.1" /><circle cx="423.208" cy="438.98" r="66.1" /><circle cx="430.986" cy="412.008" r="66.1" /><circle cx="434.558" cy="383.517" r="66.1" /><circle cx="433.831" cy="354.43" r="66.1" /><circle cx="428.777" cy="326.428" r="66.1" /><circle cx="419.635" cy="300.078" r="66.1" /><circle cx="406.763" cy="275.725" r="66.1" /><circle cx="390.491" cy="253.698" r="66.1" /><circle cx="371.189" cy="234.369" r="66.1" /><circle cx="349.188" cy="218.054" r="66.1" /><circle cx="324.846" cy="205.124" r="66.1" /><circle cx="298.506" cy="195.896" r="66.1" /><circle cx="270.512" cy="190.739" r="66.1" /><circle cx="241.368" cy="189.986" r="66.1" /><circle cx="213.003" cy="193.754" r="66.1" /><circle cx="186.147" cy="201.739" r="66.1" /><circle cx="161.157" cy="213.559" r="66.1" /><circle cx="138.389" cy="228.882" r="66.1" /><circle cx="118.174" cy="247.352" r="66.1" /><circle cx="100.857" cy="268.599" r="66.1" /><circle cx="86.794" cy="292.264" r="66.1" /><circle cx="76.316" cy="318.019" r="66.1" /><circle cx="69.781" cy="345.466" r="66.1" /><circle cx="67.518" cy="374.289" r="66.1" /><circle cx="712.577" cy="449.729" r="66.1" /><circle cx="712.577" cy="428.072" r="66.1" /><circle cx="712.577" cy="406.403" r="66.1" /><circle cx="712.577" cy="384.733" r="66.1" /><circle cx="712.577" cy="363.077" r="66.1" /><circle cx="712.577" cy="341.408" r="66.1" /><circle cx="712.577" cy="319.738" r="66.1" /><circle cx="712.577" cy="298.069" r="66.1" /><circle cx="712.577" cy="276.412" r="66.1" /><circle cx="712.577" cy="254.743" r="66.1" /><circle cx="712.577" cy="233.073" r="66.1" /><circle cx="712.577" cy="211.417" r="66.1" /><circle cx="712.577" cy="189.748" r="66.1" /><circle cx="712.577" cy="168.078" r="66.1" /><circle cx="712.577" cy="146.422" r="66.1" /><circle cx="712.577" cy="124.753" r="66.1" /><circle cx="712.577" cy="103.083" r="66.1" /><circle cx="712.577" cy="81.413" r="66.1" /><circle cx="712.577" cy="59.757" r="66.1" /><circle cx="712.577" cy="38.088" r="66.1" /><circle cx="712.577" cy="16.418" r="66.1" /><circle cx="712.577" cy="-5.238" r="66.1" /><circle cx="712.577" cy="-26.907" r="66.1" /><circle cx="712.577" cy="-48.577" r="66.1" /><circle cx="662.966" cy="-44.161" r="66.1" /><circle cx="646.429" cy="-21.024" r="66.1" /><circle cx="629.893" cy="2.113" r="66.1" /><circle cx="613.356" cy="25.25" r="66.1" /><circle cx="596.819" cy="48.387" r="66.1" /><circle cx="580.282" cy="71.524" r="66.1" /><circle cx="580.282" cy="465.515" r="66.1" /></g></svg>
<path class="about-six" d="M265.692 238.093c0 17.061-3.506 33.055-10.518 47.984-6.707 14.928-16.006 28.028-27.895 39.301-11.89 10.968-25.914 19.651-42.072 26.048-15.853 6.398-32.926 9.597-51.218 9.597-19.816 0-37.956-3.808-54.419-11.425-16.462-7.921-30.639-18.889-42.529-32.903-11.585-14.014-20.73-30.618-27.438-49.812C3.201 247.385 0 225.906 0 202.447c0-27.724 4.268-53.772 12.804-78.145 8.537-24.678 20.122-46.157 34.755-64.436 14.634-18.584 31.707-33.208 51.218-43.871C118.289 5.332 139.172 0 161.427 0c12.195 0 23.628 1.371 34.298 4.113 10.67 2.437 19.816 5.94 27.438 10.51 7.927 4.57 14.176 10.054 18.749 16.452 4.573 6.094 6.86 12.796 6.86 20.108 0 8.835-2.744 15.842-8.232 21.022-5.487 4.874-12.804 7.311-21.95 7.311-6.402 0-11.433-1.37-15.091-4.112-3.658-2.742-6.86-6.094-9.603-10.054-2.439-3.96-4.726-8.226-6.86-12.796-2.134-4.875-4.878-9.292-8.231-13.253-3.049-3.96-7.012-7.312-11.89-10.054-4.878-2.741-11.433-4.113-19.664-4.113-10.061 0-19.359 3.352-27.895 10.054-8.537 6.398-16.006 15.386-22.408 26.963-6.097 11.272-10.975 24.677-14.634 40.215-3.658 15.538-5.487 32.446-5.487 50.726l1.371.914c9.756-10.968 19.97-19.041 30.64-24.22 10.975-5.18 23.779-7.769 38.413-7.769 16.768 0 32.316 3.046 46.645 9.14 14.633 5.788 27.133 13.862 37.498 24.22 10.671 10.359 19.055 22.697 25.152 37.016 6.097 14.015 9.146 29.248 9.146 45.7Zm-189.78-10.968c0 35.95 5.03 63.065 15.09 81.344 10.366 18.28 25.305 27.42 44.816 27.42 19.207 0 33.383-7.769 42.529-23.307 9.146-15.538 13.719-39.758 13.719-72.661 0-29.857-4.42-52.402-13.261-67.635-8.537-15.538-21.189-23.307-37.956-23.307-13.414 0-25.152 4.265-35.212 12.796-10.061 8.53-19.97 22.088-29.725 40.672v24.678Z" fill="#3858E9" style="mix-blend-mode:multiply"/>
<path d="M156.25 398.381c0-8.068 2.648-14.877 7.943-20.424 5.547-5.799 12.355-8.699 20.424-8.699 8.321 0 15.255 2.9 20.803 8.699 5.547 5.547 8.321 12.356 8.321 20.424 0 7.817-2.774 14.499-8.321 20.047-5.548 5.295-12.482 7.942-20.803 7.942-8.069 0-14.877-2.647-20.424-7.942-5.295-5.548-7.943-12.23-7.943-20.047Z" fill="#2F2F2F" style="mix-blend-mode:multiply"/>
<path class="about-zero" d="M369.361 142.207c20.947 0 40.528 4.722 58.743 14.167 18.519 9.444 34.608 22.392 48.269 38.844 13.662 16.452 24.439 35.798 32.332 58.038 8.196 22.24 12.295 46.308 12.295 72.205 0 24.677-4.099 47.831-12.295 69.462-7.893 21.631-18.67 40.52-32.332 56.667-13.661 15.843-29.75 28.486-48.269 37.931-18.215 9.139-37.796 13.709-58.743 13.709-20.643 0-40.072-4.57-58.287-13.709-17.911-9.445-33.697-22.088-47.358-37.931-13.358-16.147-23.983-35.036-31.876-56.667-7.893-21.631-11.84-44.785-11.84-69.462 0-25.897 3.947-49.965 11.84-72.205 7.893-22.24 18.518-41.586 31.876-58.038 13.661-16.452 29.447-29.4 47.358-38.844 18.215-9.445 37.644-14.167 58.287-14.167Zm0 334.518c10.929 0 20.644-2.285 29.144-6.855 8.804-4.875 16.242-13.101 22.313-24.678 6.072-11.577 10.626-26.962 13.661-46.156 3.34-19.193 5.009-43.262 5.009-72.204 0-30.162-1.669-55.296-5.009-75.404-3.035-20.412-7.589-36.712-13.661-48.898-6.071-12.187-13.509-20.869-22.313-26.049-8.5-5.179-18.215-7.768-29.144-7.768-10.928 0-20.795 2.589-29.599 7.768-8.5 5.18-15.786 13.862-21.857 26.049-6.072 12.186-10.778 28.486-14.117 48.898-3.036 20.108-4.554 45.242-4.554 75.404 0 28.942 1.518 53.011 4.554 72.204 3.339 19.194 8.045 34.579 14.117 46.156 6.071 11.577 13.357 19.803 21.857 24.678 8.804 4.57 18.671 6.855 29.599 6.855Z" fill="#1B8362" style="mix-blend-mode:multiply"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 578 B

After

Width:  |  Height:  |  Size: 8.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 773 B

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,12 +1 @@
<svg width="157" height="148" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="180" height="180" viewBox="0 0 180 180" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><g fill="#FFFFFF" stroke="#3858E9" stroke-width="1.2" stroke-miterlimit="10"><circle cx="36.3" cy="90" r="35.8"/><circle cx="37.5" cy="101.2" r="35.8"/><circle cx="40.8" cy="111.5" r="35.8"/><circle cx="46.1" cy="120.8" r="35.8"/><circle cx="53" cy="128.9" r="35.8"/><circle cx="61.4" cy="135.5" r="35.8"/><circle cx="71" cy="140.3" r="35.8"/><circle cx="81.6" cy="143.1" r="35.8"/><circle cx="92.9" cy="143.7" r="35.8"/><circle cx="103.9" cy="141.9" r="35.8"/><circle cx="114" cy="138.1" r="35.8"/><circle cx="123.1" cy="132.4" r="35.8"/><circle cx="130.8" cy="125.1" r="35.8"/><circle cx="136.9" cy="116.4" r="35.8"/><circle cx="141.2" cy="106.5" r="35.8"/><circle cx="143.5" cy="95.7" r="35.8"/><circle cx="143.5" cy="84.3" r="35.8"/><circle cx="141.2" cy="73.6" r="35.8"/><circle cx="136.9" cy="63.7" r="35.8"/><circle cx="130.8" cy="55" r="35.8"/><circle cx="123.1" cy="47.6" r="35.8"/><circle cx="114" cy="41.9" r="35.8"/><circle cx="103.9" cy="38.1" r="35.8"/><circle cx="92.9" cy="36.4" r="35.8"/><circle cx="81.6" cy="37" r="35.8"/><circle cx="71" cy="39.7" r="35.8"/><circle cx="61.4" cy="44.5" r="35.8"/><circle cx="53" cy="51.1" r="35.8"/><circle cx="46.1" cy="59.2" r="35.8"/><circle cx="40.8" cy="68.5" r="35.8"/><circle cx="37.5" cy="78.9" r="35.8"/><circle cx="36.4" cy="90" r="35.8"/></g></svg>
<path d="M146.643 77.521c.122-1.213.122-2.547.122-3.76C146.765 33.622 114.143 1 74.003 1S1.24 33.621 1.24 73.762c0 40.14 32.622 72.761 72.762 72.761 33.713 0 62.09-22.919 70.336-53.965" fill="#fff"/>
<path d="M146.643 77.521c.122-1.213.122-2.547.122-3.76C146.765 33.622 114.143 1 74.003 1S1.24 33.621 1.24 73.762c0 40.14 32.622 72.761 72.762 72.761 33.713 0 62.09-22.919 70.336-53.965" stroke="#3858E9" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M156.224 67.941l-9.517 10.182-9.401-10.182" stroke="#3858E9" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M74.003 124.694c28.129 0 50.933-22.803 50.933-50.933s-22.804-50.933-50.933-50.933c-28.13 0-50.934 22.804-50.934 50.933 0 28.13 22.804 50.933 50.934 50.933z" fill="url(#paint0_linear)" stroke="#3858E9" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="paint0_linear" x1="74.003" y1="22.828" x2="74.003" y2="124.694" gradientUnits="userSpaceOnUse">
<stop stop-color="#ECF5FF"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Some files were not shown because too many files have changed in this diff Show More