Site update.

This commit is contained in:
Greta Thunberg 2022-04-02 10:26:41 +02:00
parent 467acbc604
commit 8b7c34bc6f
2734 changed files with 250357 additions and 163253 deletions

View File

@ -1,6 +1,6 @@
WordPress - Web publishing software WordPress - Web publishing software
Copyright 2011-2021 by the contributors Copyright 2011-2022 by the contributors
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View File

@ -51,14 +51,14 @@
<h2>System Requirements</h2> <h2>System Requirements</h2>
<ul> <ul>
<li><a href="https://secure.php.net/">PHP</a> version <strong>5.6.20</strong> or higher.</li> <li><a href="https://secure.php.net/">PHP</a> version <strong>5.6.20</strong> or greater.</li>
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li> <li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or greater.</li>
</ul> </ul>
<h3>Recommendations</h3> <h3>Recommendations</h3>
<ul> <ul>
<li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or higher.</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.6</strong> or higher.</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>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>

View File

@ -9,6 +9,7 @@
/** WordPress Administration Bootstrap */ /** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php'; require_once __DIR__ . '/admin.php';
// Used in the HTML title tag.
/* translators: Page title of the About WordPress page in the admin. */ /* translators: Page title of the About WordPress page in the admin. */
$title = _x( 'About', 'page title' ); $title = _x( 'About', 'page title' );
@ -22,12 +23,12 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__header-title"> <div class="about__header-title">
<h1> <h1>
<?php _e( 'WordPress' ); ?> <?php _e( 'WordPress' ); ?>
<?php echo $display_version; ?> <span class="screen-reader-text"><?php echo $display_version; ?></span>
</h1> </h1>
</div> </div>
<div class="about__header-text"> <div class="about__header-text">
<?php _e( 'The next stop on the road to full site editing' ); ?> <?php _e( 'Build the site you&#8217;ve always wanted &#8212; with blocks' ); ?>
</div> </div>
<nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
@ -38,59 +39,57 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
</nav> </nav>
</div> </div>
<hr /> <div class="about__section changelog">
<div class="about__section">
<h2 class="aligncenter">
<?php _e( 'Three Essential Powerhouses' ); ?>
</h2>
</div>
<div class="about__section has-2-columns is-wider-left">
<div class="column about__image is-vertically-aligned-center">
<img src="https://s.w.org/images/core/5.8/about-widgets-blocks.png" alt="" />
</div>
<div class="column"> <div class="column">
<h3> <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
<?php _e( 'Manage Widgets with Blocks' ); ?>
</h3>
<p> <p>
<?php <?php
printf( printf(
/* translators: %s: Widgets dev note link. */ /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */
__( 'After months of hard work, the power of blocks has come to both the Block Widgets Editor and the Customizer. Now you can add blocks both in widget areas across your site and with live preview through the Customizer. This opens up new possibilities to create content: from no-code mini layouts to the vast library of core and third-party blocks. For our developers, you can find more details in the <a href="%s">Widgets dev note</a>.' ), _n(
'https://make.wordpress.org/core/2021/06/29/block-based-widgets-editor-in-wordpress-5-8/' '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
1
),
'5.9.2',
number_format_i18n( 1 )
);
?>
<?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( '5.9.2' )
)
); );
?> ?>
</p> </p>
</div>
</div>
<div class="about__section has-2-columns is-wider-right">
<div class="column">
<h3>
<?php _e( 'Display Posts with New Blocks and Patterns' ); ?>
</h3>
<p>
<?php _e( 'The Query Loop Block makes it possible to display posts based on specified parameters; like a PHP loop without the code. Easily display posts from a specific category, to do things like create a portfolio or a page full of your favorite recipes. Think of it as a more complex and powerful Latest Posts Block! Plus, pattern suggestions make it easier than ever to create a list of posts with the design you want.' ); ?>
</p>
</div>
<div class="column about__image is-vertically-aligned-center">
<img src="https://s.w.org/images/core/5.8/about-query-loop.png" alt="" />
</div>
</div>
<div class="about__section has-2-columns is-wider-left">
<div class="column about__image is-vertically-aligned-center">
<img src="https://s.w.org/images/core/5.8/about-template.png" alt="" />
</div>
<div class="column">
<h3>
<?php _e( 'Edit the Templates Around Posts' ); ?>
</h3>
<p> <p>
<?php <?php
_e( 'You can use the familiar block editor to edit templates that hold your content—simply activate a block theme or a theme that has opted in for this feature. Switch from editing your posts to editing your pages and back again, all while using a familiar block editor. There are more than 20 new blocks available within compatible themes. Read more about this feature and how to experiment with it in the release notes.' ); 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.',
82
),
'5.9.1',
number_format_i18n( 82 )
);
?>
<?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( '5.9.1' )
)
);
?> ?>
</p> </p>
</div> </div>
@ -100,55 +99,149 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section"> <div class="about__section">
<h2 class="aligncenter"> <h2 class="aligncenter">
<?php _e( 'Three Workflow Helpers' ); ?> <?php _e( 'Full Site Editing is here' ); ?>
</h2> </h2>
<p class="aligncenter is-subheading">
<?php _e( 'It puts you in control of your whole site, right in the WordPress Admin.' ); ?>
</p>
</div> </div>
<div class="about__section has-2-columns is-wider-left"> <hr />
<div class="column about__image is-vertically-aligned-center">
<img src="https://s.w.org/images/core/5.8/about-list-view.png" alt="" /> <div class="about__section has-2-columns has-gutters is-wider-left">
<div class="column about__image is-vertically-aligned-center is-edge-to-edge">
<img src="https://s.w.org/images/core/5.9/twenty-twenty-two.png" alt="" />
</div> </div>
<div class="column"> <div class="column is-edge-to-edge">
<h3> <h3>
<?php _e( 'Overview of the Page Structure' ); ?> <?php _e( 'Say hello to Twenty Twenty&#8209;Two' ); ?>
</h3> </h3>
<p>
<?php _e( 'And say hello to the first default block theme in the history of WordPress. This is more than just a new default theme. It&#8217;s a brand-new way to work with WordPress themes.' ); ?>
</p>
<p>
<?php _e( 'Block themes put a wide array of visual choices in your hands, from color schemes and typeface combinations to page templates and image filters &#8212; all together, in the site editing interface. By making changes in one place, you can give Twenty Twenty&#8209;Two the same look and feel as your brand or other websites &#8212; or take your site&#8217;s look in another direction.' ); ?>
</p>
<?php if ( current_user_can( 'switch_themes' ) ) : ?>
<p> <p>
<?php <?php
_e( 'Sometimes you need a simple landing page, but sometimes you need something a little more robust. As blocks increase, patterns emerge, and content creation gets easier, new solutions are needed to make complex content easy to navigate. List View is the best way to jump between layers of content and nested blocks. Since the List View gives you an overview of all the blocks in your content, you can now navigate quickly to the precise block you need. Ready to focus completely on your content? Toggle it on or off to suit your workflow.' ); printf(
/* translators: %s: Link to Themes screen. */
__( 'The Twenty Twenty&#8209;Two theme is already available to you. It came installed with WordPress 5.9, and you will find it with <a href="%s">your other installed themes</a>.' ),
admin_url( 'themes.php' )
);
?> ?>
</p> </p>
<?php endif; ?>
</div>
</div>
<div class="about__section has-2-columns has-gutters is-wider-right">
<div class="column is-edge-to-edge">
<h3>
<?php _e( 'Your personal paintbox awaits' ); ?>
</h3>
<p>
<?php _e( 'More block themes built for full site editing features are in the Theme Directory alongside the Twenty Twenty&#8209;Two theme, just waiting to be explored. Expect more to come!' ); ?>
</p>
<p>
<?php _e( 'When you use any of those new themes, you no longer need the Customizer. Instead, you have all the power of the Styles interface inside the Site Editor. Just as in Twenty Twenty&#8209;Two, you build your site&#8217;s look and feel there, with the tools you need for the job in a fluid interface that practically comes alive in your hands.' ); ?>
</p>
</div>
<div class="column about__image is-vertically-aligned-center is-edge-to-edge">
<img src="https://s.w.org/images/core/5.9/global-styles.png" alt="" />
</div>
</div>
<div class="about__section has-2-columns has-gutters is-wider-left">
<div class="column about__image is-vertically-aligned-center is-edge-to-edge">
<img src="https://s.w.org/images/core/5.9/navigation-block.png" alt="" />
</div>
<div class="column is-edge-to-edge">
<h3>
<?php _e( 'The Navigation block' ); ?>
</h3>
<p>
<?php _e( 'Blocks come to site navigation, the heart of user experience.' ); ?>
</p>
<p>
<?php _e( 'The new Navigation block gives you the power to choose: an always-on responsive menu or one that adapts to your user&#8217;s screen size. Whatever you create, know it&#8217;s there to reuse wherever you like, whether in a brand new template or after switching themes.' ); ?>
</p>
</div> </div>
</div> </div>
<div class="about__section has-2-columns is-wider-right"> <hr class="is-large" />
<div class="column">
<div class="about__section">
<h2 class="aligncenter">
<?php _e( 'More improvements and updates' ); ?>
</h2>
<p class="aligncenter is-subheading">
<?php _e( 'Do you love to blog or produce content? New tweaks to the publishing flow help you say more, faster.' ); ?>
</p>
</div>
<hr />
<div class="about__section has-2-columns has-gutters is-wider-left">
<div class="column about__image is-vertically-aligned-center is-edge-to-edge">
<img src="https://s.w.org/images/core/5.9/block-controls.png" alt="" />
</div>
<div class="column is-edge-to-edge">
<h3> <h3>
<?php _e( 'Suggested Patterns for Blocks' ); ?> <?php _e( 'Better block controls' ); ?>
</h3> </h3>
<p> <p>
<?php <?php _e( 'WordPress 5.9 features new typography tools, flexible layout controls, and finer control over details like spacing, borders, and more &#8212; to help you get not just the look, but the polish that says you care about details.' ); ?>
_e( 'Starting in this release the Pattern Transformations tool will suggest block patterns based on the block you are using. Right now, you can give it a try in the Query Block and Social Icon Block. As more patterns are added, you will be able to get inspiration for how to style your site without ever leaving the editor!' );
?>
</p> </p>
</div> </div>
<div class="column about__image is-vertically-aligned-center">
<img src="https://s.w.org/images/core/5.8/about-pattern-suggestions.png" alt="" />
</div>
</div> </div>
<div class="about__section has-2-columns is-wider-left"> <div class="about__section has-2-columns has-gutters is-wider-right">
<div class="column about__image is-vertically-aligned-center"> <div class="column is-edge-to-edge">
<img src="https://s.w.org/images/core/5.8/about-duotone.png" alt="" />
</div>
<div class="column">
<h3> <h3>
<?php _e( 'Style and Colorize Images' ); ?> <?php _e( 'The power of patterns' ); ?>
</h3> </h3>
<p> <p>
<?php <?php _e( 'The WordPress Pattern Directory is the home of a wide range of block patterns built to save you time and add core site functionality. And you can edit them as you see fit. Need something different in the header or footer for your theme? Swap it out with a new one in a few clicks.' ); ?>
_e( 'Colorize your image and cover blocks with duotone filters! Duotone can add a pop of color to your designs and style your images (or videos in the cover block) to integrate well with your themes. You can think of the duotone effect as a black and white filter, but instead of the shadows being black and the highlights being white, you pick your own colors for the shadows and highlights. Theres more to learn about how it works in the documentation.' );
?>
</p> </p>
<p>
<?php _e( 'With a near full-screen view that draws you in to see fine details, the Pattern Explorer makes it easy to compare patterns and choose the one your users will expect.' ); ?>
</p>
</div>
<div class="column about__image is-vertically-aligned-center is-edge-to-edge">
<img src="https://s.w.org/images/core/5.9/pattern-explorer.png" alt="" />
</div>
</div>
<div class="about__section has-2-columns has-gutters is-wider-left">
<div class="column about__image is-vertically-aligned-center is-edge-to-edge">
<img src="https://s.w.org/images/core/5.9/list-view.png" alt="" />
</div>
<div class="column is-edge-to-edge">
<h3>
<?php _e( 'A revamped List View' ); ?>
</h3>
<p>
<?php _e( 'In 5.9, the List View lets you drag and drop your content exactly where you want it. Managing complex documents is easier, too: simple controls let you expand and collapse sections as you build your site &#8212; and add HTML anchors to your blocks to help users get around the page.' ); ?>
</p>
</div>
</div>
<div class="about__section has-2-columns has-gutters is-wider-right">
<div class="column is-edge-to-edge">
<h3>
<?php _e( 'A better Gallery block' ); ?>
</h3>
<p>
<?php _e( 'Treat every image in a Gallery block the same way you would treat it in the Image block.' ); ?>
</p>
<p>
<?php _e( 'Style every image in your gallery differently from the next (with different crops, or duotones, for instance) or make them all the same. And change the layout with drag-and-drop.' ); ?>
</p>
</div>
<div class="column about__image is-vertically-aligned-center is-edge-to-edge">
<img src="https://s.w.org/images/core/5.9/gallery-block.png" alt="" />
</div> </div>
</div> </div>
@ -156,77 +249,92 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section"> <div class="about__section">
<h2 class="aligncenter" style="margin-bottom:0;"> <h2 class="aligncenter" style="margin-bottom:0;">
<?php _e( 'For Developers to Explore' ); ?> <?php
printf(
/* translators: %s: Version number. */
__( 'WordPress %s for developers' ),
$display_version
);
?>
</h2> </h2>
</div>
<div class="about__section has-gutters has-2-columns">
<div class="column is-edge-to-edge">
<h3>
<?php _e( 'Introducing block themes' ); ?>
</h3>
<p>
<?php
printf(
/* translators: %s: Block-based themes dev note link. */
__( 'A new way to build themes: Block themes use blocks to define the templates that structure your entire site. The new templates and template parts are defined in HTML and use the custom styling offered in theme.json. More information is available in the <a href="%s">block themes dev note</a>.' ),
'https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/'
);
?>
</p>
</div>
<div class="column is-edge-to-edge">
<h3>
<?php _e( 'Multiple stylesheets for a block' ); ?>
</h3>
<p>
<?php
printf(
/* translators: %s: Multiple stylesheets dev note link. */
__( 'Now you can register more than one stylesheet per block. You can use this to share styles across blocks you write, or to load styles for individual blocks, so your styles are only loaded when the block is used. Find out more about <a href="%s">using multiple stylesheets in a block</a>.' ),
'https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/'
);
?>
</p>
</div>
</div>
<div class="about__section has-gutters has-2-columns">
<div class="column is-edge-to-edge">
<h3>
<?php _e( 'Block&#8209;level locking' ); ?>
</h3>
<p>
<?php _e( 'Now you can lock any block (or a few of them) in a pattern, just by adding a lock attribute to its settings in block.json &#8212; leaving the rest of the pattern free for site editors to adapt to their content.' ); ?>
</p>
</div>
<div class="column is-edge-to-edge">
<h3>
<?php _e( 'A refactored Gallery block' ); ?>
</h3>
<p>
<?php
printf(
/* translators: %s: Gallery Refactor dev note link. */
__( 'The changes to the Gallery block listed above are the result of a near-complete refactoring. Have you built a plugin or theme on the Gallery block functionality? Be sure to read the <a href="%s">Gallery block compatibility dev note</a>.' ),
'https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/'
);
?>
</p>
</div>
</div>
<hr class="is-large" />
<div class="about__section has-subtle-background-color has-2-columns is-wider-right">
<div class="column about__image is-vertically-aligned-center"> <div class="column about__image is-vertically-aligned-center">
<picture> <img src="https://s.w.org/images/core/5.9/learn-video.png" alt="" />
<source srcset="https://s.w.org/images/core/5.8/about-theme-json.png, https://s.w.org/images/core/5.8/about-theme-json-2x.png 2x">
<img src="https://s.w.org/images/core/5.8/about-theme-json.png" alt="">
</picture>
</div> </div>
</div>
<div class="about__section has-1-column">
<div class="column"> <div class="column">
<h3> <h3><?php _e( 'Learn more about the new features in 5.9' ); ?></h3>
<?php _e( 'Theme.json' ); ?>
</h3>
<p> <p>
<?php <?php
printf( printf(
/* translators: %s: Theme.json dev note link. */ /* translators: %s: Learn WordPress link. */
__( 'Introducing the Global Styles and Global Settings APIs: control the editor settings, available customization tools, and style blocks using a theme.json file in the active theme. This configuration file enables or disables features and sets default styles for both a website and blocks. If you build themes, you can experiment with this early iteration of a useful new feature. For more about what is currently available and how it works, <a href="%s">check out this dev note</a>.' ), __( 'Want to dive into 5.9 but don&#8217;t know where to start? Visit <a href="%s">learn.wordpress.org</a> for expanding resources on new features in WordPress 5.9.' ),
'https://make.wordpress.org/core/2021/06/25/introducing-theme-json-in-wordpress-5-8/' 'https://learn.wordpress.org'
); );
?> ?>
</p> </p>
</div> </div>
</div> </div>
<div class="about__section has-3-columns"> <hr class="is-large" />
<div class="column">
<h3>
<?php _e( 'Dropping support for Internet Explorer 11' ); ?>
</h3>
<p>
<?php
printf(
/* translators: %s: Link to Browse Happy. */
__( 'Support for Internet Explorer 11 has been dropped as of this release. This means you may have issues managing your site that will not be fixed in the future. If you are currently using IE11, it is strongly recommended that you <a href="%s">switch to a more modern browser</a>.' ),
'https://browsehappy.com/'
);
?>
</p>
</div>
<div class="column">
<h3>
<?php _e( 'Adding support for WebP' ); ?>
</h3>
<p>
<?php
_e( 'WebP is a modern image format that provides improved lossless and lossy compression for images on the web. WebP images are around 30% smaller on average than their JPEG or PNG equivalents, resulting in sites that are faster and use less bandwidth.' );
?>
</p>
</div>
<div class="column">
<h3>
<?php _e( 'Adding Additional Block Supports' ); ?>
</h3>
<p>
<?php
printf(
/* translators: %1$s: Link to 5.6's block dev notes. %2$s: Link to 5.7's block dev notes. %3$s: Link to 5.8's block dev notes. */
__( 'Expanding on previously implemented block supports in WordPress <a href="%1$s">5.6</a> and <a href="%2$s">5.7</a>, WordPress 5.8 introduces several new block support flags and new options to customize your registered blocks. More information is available in the <a href="%3$s">block supports dev note</a>.' ),
'https://make.wordpress.org/core/2020/11/18/block-supports-in-wordpress-5-6/',
'https://make.wordpress.org/core/2021/02/24/changes-to-block-editor-components-and-blocks/',
'https://make.wordpress.org/core/2021/06/25/block-supports-api-updates-for-wordpress-5-8/'
);
?>
</p>
</div>
</div>
<hr class="is-small" />
<div class="about__section"> <div class="about__section">
<div class="column"> <div class="column">
@ -234,9 +342,9 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<p> <p>
<?php <?php
printf( printf(
/* translators: %s: WordPress 5.8 Field Guide link. */ /* translators: %s: WordPress 5.9 Field Guide link. */
__( 'Check out the latest version of the WordPress Field Guide. It highlights developer notes for each change you may want to be aware of. <a href="%s">WordPress 5.8 Field Guide.</a>' ), __( 'Check out the latest version of the WordPress Field Guide. It highlights developer notes for each change you may want to be aware of. <a href="%s">WordPress 5.9 Field Guide.</a>' ),
'https://make.wordpress.org/core/2021/07/03/wordpress-5-8-field-guide/' 'https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/'
); );
?> ?>
</p> </p>

View File

@ -22,9 +22,10 @@ if ( ! defined( 'WP_ADMIN' ) ) {
* @global string $update_title * @global string $update_title
* @global int $total_update_count * @global int $total_update_count
* @global string $parent_file * @global string $parent_file
* @global string $typenow
*/ */
global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow,
$update_title, $total_update_count, $parent_file; $update_title, $total_update_count, $parent_file, $typenow;
// Catch plugins that include admin-header.php before admin.php completes. // Catch plugins that include admin-header.php before admin.php completes.
if ( empty( $current_screen ) ) { if ( empty( $current_screen ) ) {
@ -48,8 +49,23 @@ if ( $admin_title === $title ) {
/* translators: Admin screen title. %s: Admin screen name. */ /* translators: Admin screen title. %s: Admin screen name. */
$admin_title = sprintf( __( '%s &#8212; WordPress' ), $title ); $admin_title = sprintf( __( '%s &#8212; WordPress' ), $title );
} else { } else {
$screen_title = $title;
if ( 'post' === $current_screen->base && 'add' !== $current_screen->action ) {
$post_title = get_the_title();
if ( ! empty( $post_title ) ) {
$post_type_obj = get_post_type_object( $typenow );
$screen_title = sprintf(
/* translators: Editor admin screen title. 1: "Edit item" text for the post type, 2: Post title. */
__( '%1$s &#8220;%2$s&#8221;' ),
$post_type_obj->labels->edit_item,
$post_title
);
}
}
/* translators: Admin screen title. 1: Admin screen name, 2: Network or site name. */ /* translators: Admin screen title. 1: Admin screen name, 2: Network or site name. */
$admin_title = sprintf( __( '%1$s &lsaquo; %2$s &#8212; WordPress' ), $title, $admin_title ); $admin_title = sprintf( __( '%1$s &lsaquo; %2$s &#8212; WordPress' ), $screen_title, $admin_title );
} }
if ( wp_is_recovery_mode() ) { if ( wp_is_recovery_mode() ) {
@ -81,7 +97,7 @@ wp_enqueue_script( 'svg-painter' );
$admin_body_class = preg_replace( '/[^a-z0-9_-]+/i', '-', $hook_suffix ); $admin_body_class = preg_replace( '/[^a-z0-9_-]+/i', '-', $hook_suffix );
?> ?>
<script type="text/javascript"> <script type="text/javascript">
addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(document).ready(func);else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}; addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(function(){func();});else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>', var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>',
pagenow = '<?php echo esc_js( $current_screen->id ); ?>', pagenow = '<?php echo esc_js( $current_screen->id ); ?>',
typenow = '<?php echo esc_js( $current_screen->post_type ); ?>', typenow = '<?php echo esc_js( $current_screen->post_type ); ?>',
@ -132,7 +148,7 @@ do_action( 'admin_print_scripts' );
/** /**
* Fires in head section for a specific admin page. * Fires in head section for a specific admin page.
* *
* The dynamic portion of the hook, `$hook_suffix`, refers to the hook suffix * The dynamic portion of the hook name, `$hook_suffix`, refers to the hook suffix
* for the admin page. * for the admin page.
* *
* @since 2.1.0 * @since 2.1.0

View File

@ -320,13 +320,24 @@ if ( isset( $plugin_page ) ) {
* *
* The dynamic portion of the hook name, `$importer`, refers to the importer slug. * The dynamic portion of the hook name, `$importer`, refers to the importer slug.
* *
* Possible hook names include:
*
* - `load-importer-blogger`
* - `load-importer-wpcat2tag`
* - `load-importer-livejournal`
* - `load-importer-mt`
* - `load-importer-rss`
* - `load-importer-tumblr`
* - `load-importer-wordpress`
*
* @since 3.5.0 * @since 3.5.0
*/ */
do_action( "load-importer-{$importer}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores do_action( "load-importer-{$importer}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
// Used in the HTML title tag.
$title = __( 'Import' );
$parent_file = 'tools.php'; $parent_file = 'tools.php';
$submenu_file = 'import.php'; $submenu_file = 'import.php';
$title = __( 'Import' );
if ( ! isset( $_GET['noheader'] ) ) { if ( ! isset( $_GET['noheader'] ) ) {
require_once ABSPATH . 'wp-admin/admin-header.php'; require_once ABSPATH . 'wp-admin/admin-header.php';

View File

@ -62,6 +62,7 @@ if ( isset( $_POST['action'] ) && 'authorize_application_password' === $_POST['a
} }
} }
// Used in the HTML title tag.
$title = __( 'Authorize Application' ); $title = __( 'Authorize Application' );
$app_name = ! empty( $_REQUEST['app_name'] ) ? $_REQUEST['app_name'] : ''; $app_name = ! empty( $_REQUEST['app_name'] ) ? $_REQUEST['app_name'] : '';
@ -90,7 +91,7 @@ if ( is_wp_error( $is_valid ) ) {
if ( wp_is_site_protected_by_basic_auth( 'front' ) ) { if ( wp_is_site_protected_by_basic_auth( 'front' ) ) {
wp_die( wp_die(
__( 'Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.' ), __( 'Your website appears to use Basic Authentication, which is not currently compatible with application passwords.' ),
__( 'Cannot Authorize Application' ), __( 'Cannot Authorize Application' ),
array( array(
'response' => 501, 'response' => 501,
@ -147,13 +148,13 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<?php <?php
printf( printf(
/* translators: %s: Application name. */ /* translators: %s: Application name. */
__( 'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the app in question.' ), __( 'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.' ),
'<strong>' . esc_html( $app_name ) . '</strong>' '<strong>' . esc_html( $app_name ) . '</strong>'
); );
?> ?>
</p> </p>
<?php else : ?> <?php else : ?>
<p><?php _e( 'Would you like to give this application access to your account? You should only do this if you trust the app in question.' ); ?></p> <p><?php _e( 'Would you like to give this application access to your account? You should only do this if you trust the application in question.' ); ?></p>
<?php endif; ?> <?php endif; ?>
<?php <?php
@ -224,7 +225,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="form-field"> <div class="form-field">
<label for="app_name"><?php _e( 'New Application Password Name' ); ?></label> <label for="app_name"><?php _e( 'New Application Password Name' ); ?></label>
<input type="text" id="app_name" name="app_name" value="<?php echo esc_attr( $app_name ); ?>" placeholder="<?php esc_attr_e( 'WordPress App on My Phone' ); ?>" required /> <input type="text" id="app_name" name="app_name" value="<?php echo esc_attr( $app_name ); ?>" required />
</div> </div>
<?php <?php
@ -247,7 +248,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<?php <?php
submit_button( submit_button(
__( 'Yes, I approve of this connection.' ), __( 'Yes, I approve of this connection' ),
'primary', 'primary',
'approve', 'approve',
false, false,
@ -262,7 +263,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
printf( printf(
/* translators: %s: The URL the user is being redirected to. */ /* translators: %s: The URL the user is being redirected to. */
__( 'You will be sent to %s' ), __( 'You will be sent to %s' ),
'<strong><kbd>' . esc_html( '<strong><code>' . esc_html(
add_query_arg( add_query_arg(
array( array(
'site_url' => site_url(), 'site_url' => site_url(),
@ -271,7 +272,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
), ),
$success_url $success_url
) )
) . '</kbd></strong>' ) . '</code></strong>'
); );
} else { } else {
_e( 'You will be given a password to manually enter into the application in question.' ); _e( 'You will be given a password to manually enter into the application in question.' );
@ -281,7 +282,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<?php <?php
submit_button( submit_button(
__( 'No, I do not approve of this connection.' ), __( 'No, I do not approve of this connection' ),
'secondary', 'secondary',
'reject', 'reject',
false, false,
@ -296,7 +297,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
printf( printf(
/* translators: %s: The URL the user is being redirected to. */ /* translators: %s: The URL the user is being redirected to. */
__( 'You will be sent to %s' ), __( 'You will be sent to %s' ),
'<strong><kbd>' . esc_html( $reject_url ) . '</kbd></strong>' '<strong><code>' . esc_html( $reject_url ) . '</code></strong>'
); );
} else { } else {
_e( 'You will be returned to the WordPress Dashboard, and no changes will be made.' ); _e( 'You will be returned to the WordPress Dashboard, and no changes will be made.' );

View File

@ -53,6 +53,7 @@ if ( isset( $_REQUEST['c'] ) ) {
switch ( $action ) { switch ( $action ) {
case 'editcomment': case 'editcomment':
// Used in the HTML title tag.
$title = __( 'Edit Comment' ); $title = __( 'Edit Comment' );
get_current_screen()->add_help_tab( get_current_screen()->add_help_tab(
@ -96,6 +97,7 @@ switch ( $action ) {
case 'approve': case 'approve':
case 'trash': case 'trash':
case 'spam': case 'spam':
// Used in the HTML title tag.
$title = __( 'Moderate Comment' ); $title = __( 'Moderate Comment' );
if ( ! $comment ) { if ( ! $comment ) {

View File

@ -10,6 +10,7 @@
require_once __DIR__ . '/admin.php'; require_once __DIR__ . '/admin.php';
require_once __DIR__ . '/includes/credits.php'; require_once __DIR__ . '/includes/credits.php';
// Used in the HTML title tag.
$title = __( 'Credits' ); $title = __( 'Credits' );
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
@ -28,7 +29,13 @@ $credits = wp_credits();
</div> </div>
<div class="about__header-text"> <div class="about__header-text">
<?php _e( 'WordPress 5.8 was created by a worldwide team of passionate individuals' ); ?> <?php
printf(
/* translators: %s: Version number. */
__( 'WordPress %s was created by a worldwide team of passionate individuals' ),
$display_version
);
?>
</div> </div>
<nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">

View File

@ -30,7 +30,7 @@
/* 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; /* Accent background, link color */
--accent-2: #2d46ba; /* Header background */ --accent-2: #3858e9; /* Header background */
/* Navigation colors. */ /* Navigation colors. */
--nav-background: #fff; --nav-background: #fff;
@ -141,25 +141,19 @@
margin: 0 0 var(--gap); margin: 0 0 var(--gap);
} }
.about__section .column { .about__section .column:not(.is-edge-to-edge) {
padding: var(--gap); padding: var(--gap);
} }
.about__section + .about__section .column {
padding-top: 0;
}
.about__section + .about__section .is-section-header { .about__section + .about__section .is-section-header {
padding-bottom: var(--gap); padding-bottom: var(--gap);
} }
.about__section .column[class*="background-color"], .about__section .column[class*="background-color"],
.about__section:where([class*="background-color"]) .column,
.about__section .column.has-border { .about__section .column.has-border {
padding-top: var(--gap); padding-top: var(--gap);
} padding-bottom: var(--gap);
.about__section .column.is-edge-to-edge {
padding: 0;
} }
.about__section .column p:first-of-type { .about__section .column p:first-of-type {
@ -215,7 +209,8 @@
} }
.about__section.has-gutters { .about__section.has-gutters {
gap: calc(var(--gap) / 2); gap: var(--gap);
margin-bottom: calc(var(--gap) * 2);
} }
.about__section.has-2-columns { .about__section.has-2-columns {
@ -223,11 +218,11 @@
} }
.about__section.has-2-columns.is-wider-right { .about__section.has-2-columns.is-wider-right {
grid-template-columns: 1fr 2fr; grid-template-columns: 2fr 3fr;
} }
.about__section.has-2-columns.is-wider-left { .about__section.has-2-columns.is-wider-left {
grid-template-columns: 2fr 1fr; grid-template-columns: 3fr 2fr;
} }
.about__section.has-2-columns .is-section-header { .about__section.has-2-columns .is-section-header {
@ -329,13 +324,24 @@
.about__section.has-2-columns.is-wider-left, .about__section.has-2-columns.is-wider-left,
.about__section.has-3-columns { .about__section.has-3-columns {
display: block; display: block;
padding-bottom: calc(var(--gap) / 2); margin-bottom: calc(var(--gap) / 2);
}
.about__section .column:not(.is-edge-to-edge) {
padding-top: var(--gap);
padding-bottom: var(--gap);
}
.about__section.has-2-columns.has-gutters.is-wider-right,
.about__section.has-2-columns.has-gutters.is-wider-left,
.about__section.has-3-columns.has-gutters {
margin-bottom: calc(var(--gap) * 2);
} }
.about__section.has-2-columns.has-gutters .column, .about__section.has-2-columns.has-gutters .column,
.about__section.has-2-columns.has-gutters .column, .about__section.has-2-columns.has-gutters .column,
.about__section.has-3-columns.has-gutters .column { .about__section.has-3-columns.has-gutters .column {
margin-bottom: calc(var(--gap) / 2); margin-bottom: var(--gap);
} }
.about__section.has-2-columns.has-gutters .column:last-child, .about__section.has-2-columns.has-gutters .column:last-child,
@ -394,21 +400,25 @@
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
.about__section.has-2-columns { .about__section.has-2-columns {
display: block; display: block;
margin-bottom: var(--gap);
}
.about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n) {
padding-top: calc(var(--gap) / 2);
padding-bottom: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2);
} }
.about__section.has-2-columns.has-gutters {
margin-bottom: calc(var(--gap) * 2);
}
.about__section.has-2-columns.has-gutters .column { .about__section.has-2-columns.has-gutters .column {
margin-bottom: calc(var(--gap) / 2); margin-bottom: var(--gap);
} }
.about__section.has-2-columns.has-gutters .column:last-child { .about__section.has-2-columns.has-gutters .column:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
.about__section.has-2-columns .column:nth-of-type(n) {
padding-top: calc(var(--gap) / 2);
padding-bottom: calc(var(--gap) / 2);
}
} }
@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
@ -471,6 +481,11 @@
line-height: inherit; line-height: inherit;
} }
.about__container p.is-subheading {
margin-top: 0;
font-size: 1.8em;
}
.about__section a { .about__section a {
color: var(--accent-1); color: var(--accent-1);
text-decoration: underline; text-decoration: underline;
@ -524,46 +539,6 @@
margin-left: auto; margin-left: auto;
} }
.about__container .about__image-comparison {
position: relative;
display: inline-block;
max-width: 100%;
}
.about__container .about__image-comparison img {
-webkit-user-select: none;
user-select: none;
width: auto;
max-width: none;
max-height: 100%;
}
.about__container .about__image-comparison > img {
max-width: 100%;
}
.about__container .about__image-comparison-resize {
position: absolute !important; /* Needed to override inline style on ResizableBox */
top: 0;
bottom: 0;
right: 0;
width: 50%;
max-width: 100%;
}
.about__container .about__image-comparison.no-js .about__image-comparison-resize {
overflow: hidden;
border-left: 2px solid var(--wp-admin-theme-color);
}
.about__container .about__image-comparison-resize .components-resizable-box__side-handle::before {
width: 4px;
left: calc(50% - 2px);
transition: none;
animation: none;
opacity: 1;
}
.about__container .about__image + h3 { .about__container .about__image + h3 {
margin-top: 1.5em; margin-top: 1.5em;
} }
@ -612,25 +587,46 @@
/* 1.3 - Header */ /* 1.3 - Header */
.about__header { .about__header {
position: relative;
margin-bottom: var(--gap); margin-bottom: var(--gap);
padding-top: 0; padding-top: 0;
background-position: center; background-image: url('../images/about-texture.png');
background-repeat: no-repeat;
background-size: cover;
background-image: url('../images/about-header-about.svg');
background-color: var(--accent-2); background-color: var(--accent-2);
background-size: 500px 500px;
background-blend-mode: overlay;
color: var(--text-light); color: var(--text-light);
} }
.credits-php .about__header { .about__header::before {
content: "";
position: absolute;
top: 0;
left: 64px;
z-index: 0;
width: 300px;
height: 382px;
background: url(../images/about-header-about.svg) no-repeat center;
background-size: contain;
}
.credits-php .about__header::before {
top: auto;
bottom: 70px;
height: 310px;
background-image: url('../images/about-header-credits.svg'); background-image: url('../images/about-header-credits.svg');
} }
.freedoms-php .about__header { .freedoms-php .about__header::before {
top: calc(50% - 182px);
left: 32px;
width: 375px;
height: 300px;
background-image: url('../images/about-header-freedoms.svg'); background-image: url('../images/about-header-freedoms.svg');
} }
.privacy-php .about__header { .privacy-php .about__header::before {
top: auto;
bottom: -16px;
background-image: url('../images/about-header-privacy.svg'); background-image: url('../images/about-header-privacy.svg');
} }
@ -639,7 +635,9 @@
} }
.about__header-title { .about__header-title {
padding: 2rem 0 0; box-sizing: border-box;
/* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */
padding: 6rem 0 0 380px;
margin: 0 2rem; margin: 0 2rem;
} }
@ -652,14 +650,24 @@
} }
.about__header-text { .about__header-text {
max-width: 42rem; box-sizing: border-box;
margin: 0 0 5em; margin: 0 0 7rem;
padding: 0 2rem; /* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */
font-size: 2rem; padding: 0 2rem 0 380px;
font-size: 1.6rem;
line-height: 1.15; line-height: 1.15;
} }
.freedoms-php .about__header-title,
.freedoms-php .about__header-text {
/* 423px = 375px (balloon width) + 32px (offset from edge) + 16px (spacing). */
padding-left: 423px;
margin-left: 0;
}
.about__header-navigation { .about__header-navigation {
position: relative;
z-index: 1;
display: flex; display: flex;
justify-content: center; justify-content: center;
padding-top: 0; padding-top: 0;
@ -708,6 +716,27 @@
} }
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {
.about__header::before {
width: 240px;
height: 305px;
left: 32px;
}
.credits-php .about__header::before {
height: 248px;
}
.freedoms-php .about__header::before {
top: calc(50% - 132px);
height: 192px;
width: 240px;
}
.privacy-php .about__header::before {
bottom: 0;
height: 280px;
}
.about__container .about__header-text { .about__container .about__header-text {
font-size: 1.4em; font-size: 1.4em;
} }
@ -716,13 +745,24 @@
display: block; display: block;
} }
.about__header-title,
.about__header-text {
/* 288px = 240px (balloon width) + 32px (offset from edge) + 16px (spacing). */
padding-left: 288px !important;
}
.about__header-title, .about__header-title,
.about__header-image { .about__header-image {
margin-right: calc(var(--gap) / 2); margin-right: calc(var(--gap) / 2);
margin-left: calc(var(--gap) / 2); margin-left: calc(var(--gap) / 2);
} }
.about__header-text, .about__header-text {
margin-top: 0;
margin-left: 0;
padding-right: calc(var(--gap) / 2);
}
.about__header-navigation .nav-tab { .about__header-navigation .nav-tab {
margin-top: 0; margin-top: 0;
margin-left: 0; margin-left: 0;
@ -731,13 +771,28 @@
} }
} }
@media screen and (max-width: 600px) {
.about__header::before {
display: none;
}
.about__header-title,
.about__header-text {
padding-left: calc(var(--gap) / 2) !important;
}
}
@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
.about__header-title p { .about__header-title p {
font-size: 2.4em; font-size: 2.4em;
} }
.about__header-title {
padding-top: 2rem;
}
.about__header-text { .about__header-text {
margin-bottom: 1em; margin-bottom: 2rem;
} }
.about__header-navigation { .about__header-navigation {

File diff suppressed because one or more lines are too long

View File

@ -29,7 +29,7 @@
/* 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; /* Accent background, link color */
--accent-2: #2d46ba; /* Header background */ --accent-2: #3858e9; /* Header background */
/* Navigation colors. */ /* Navigation colors. */
--nav-background: #fff; --nav-background: #fff;
@ -140,25 +140,19 @@
margin: 0 0 var(--gap); margin: 0 0 var(--gap);
} }
.about__section .column { .about__section .column:not(.is-edge-to-edge) {
padding: var(--gap); padding: var(--gap);
} }
.about__section + .about__section .column {
padding-top: 0;
}
.about__section + .about__section .is-section-header { .about__section + .about__section .is-section-header {
padding-bottom: var(--gap); padding-bottom: var(--gap);
} }
.about__section .column[class*="background-color"], .about__section .column[class*="background-color"],
.about__section:where([class*="background-color"]) .column,
.about__section .column.has-border { .about__section .column.has-border {
padding-top: var(--gap); padding-top: var(--gap);
} padding-bottom: var(--gap);
.about__section .column.is-edge-to-edge {
padding: 0;
} }
.about__section .column p:first-of-type { .about__section .column p:first-of-type {
@ -214,7 +208,8 @@
} }
.about__section.has-gutters { .about__section.has-gutters {
gap: calc(var(--gap) / 2); gap: var(--gap);
margin-bottom: calc(var(--gap) * 2);
} }
.about__section.has-2-columns { .about__section.has-2-columns {
@ -222,11 +217,11 @@
} }
.about__section.has-2-columns.is-wider-right { .about__section.has-2-columns.is-wider-right {
grid-template-columns: 1fr 2fr; grid-template-columns: 2fr 3fr;
} }
.about__section.has-2-columns.is-wider-left { .about__section.has-2-columns.is-wider-left {
grid-template-columns: 2fr 1fr; grid-template-columns: 3fr 2fr;
} }
.about__section.has-2-columns .is-section-header { .about__section.has-2-columns .is-section-header {
@ -328,13 +323,24 @@
.about__section.has-2-columns.is-wider-left, .about__section.has-2-columns.is-wider-left,
.about__section.has-3-columns { .about__section.has-3-columns {
display: block; display: block;
padding-bottom: calc(var(--gap) / 2); margin-bottom: calc(var(--gap) / 2);
}
.about__section .column:not(.is-edge-to-edge) {
padding-top: var(--gap);
padding-bottom: var(--gap);
}
.about__section.has-2-columns.has-gutters.is-wider-right,
.about__section.has-2-columns.has-gutters.is-wider-left,
.about__section.has-3-columns.has-gutters {
margin-bottom: calc(var(--gap) * 2);
} }
.about__section.has-2-columns.has-gutters .column, .about__section.has-2-columns.has-gutters .column,
.about__section.has-2-columns.has-gutters .column, .about__section.has-2-columns.has-gutters .column,
.about__section.has-3-columns.has-gutters .column { .about__section.has-3-columns.has-gutters .column {
margin-bottom: calc(var(--gap) / 2); margin-bottom: var(--gap);
} }
.about__section.has-2-columns.has-gutters .column:last-child, .about__section.has-2-columns.has-gutters .column:last-child,
@ -393,21 +399,25 @@
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
.about__section.has-2-columns { .about__section.has-2-columns {
display: block; display: block;
margin-bottom: var(--gap);
}
.about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n) {
padding-top: calc(var(--gap) / 2);
padding-bottom: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2);
} }
.about__section.has-2-columns.has-gutters {
margin-bottom: calc(var(--gap) * 2);
}
.about__section.has-2-columns.has-gutters .column { .about__section.has-2-columns.has-gutters .column {
margin-bottom: calc(var(--gap) / 2); margin-bottom: var(--gap);
} }
.about__section.has-2-columns.has-gutters .column:last-child { .about__section.has-2-columns.has-gutters .column:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
.about__section.has-2-columns .column:nth-of-type(n) {
padding-top: calc(var(--gap) / 2);
padding-bottom: calc(var(--gap) / 2);
}
} }
@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
@ -470,6 +480,11 @@
line-height: inherit; line-height: inherit;
} }
.about__container p.is-subheading {
margin-top: 0;
font-size: 1.8em;
}
.about__section a { .about__section a {
color: var(--accent-1); color: var(--accent-1);
text-decoration: underline; text-decoration: underline;
@ -523,46 +538,6 @@
margin-right: auto; margin-right: auto;
} }
.about__container .about__image-comparison {
position: relative;
display: inline-block;
max-width: 100%;
}
.about__container .about__image-comparison img {
-webkit-user-select: none;
user-select: none;
width: auto;
max-width: none;
max-height: 100%;
}
.about__container .about__image-comparison > img {
max-width: 100%;
}
.about__container .about__image-comparison-resize {
position: absolute !important; /* Needed to override inline style on ResizableBox */
top: 0;
bottom: 0;
left: 0;
width: 50%;
max-width: 100%;
}
.about__container .about__image-comparison.no-js .about__image-comparison-resize {
overflow: hidden;
border-right: 2px solid var(--wp-admin-theme-color);
}
.about__container .about__image-comparison-resize .components-resizable-box__side-handle::before {
width: 4px;
right: calc(50% - 2px);
transition: none;
animation: none;
opacity: 1;
}
.about__container .about__image + h3 { .about__container .about__image + h3 {
margin-top: 1.5em; margin-top: 1.5em;
} }
@ -611,25 +586,46 @@
/* 1.3 - Header */ /* 1.3 - Header */
.about__header { .about__header {
position: relative;
margin-bottom: var(--gap); margin-bottom: var(--gap);
padding-top: 0; padding-top: 0;
background-position: center; background-image: url('../images/about-texture.png');
background-repeat: no-repeat;
background-size: cover;
background-image: url('../images/about-header-about.svg');
background-color: var(--accent-2); background-color: var(--accent-2);
background-size: 500px 500px;
background-blend-mode: overlay;
color: var(--text-light); color: var(--text-light);
} }
.credits-php .about__header { .about__header::before {
content: "";
position: absolute;
top: 0;
right: 64px;
z-index: 0;
width: 300px;
height: 382px;
background: url(../images/about-header-about.svg) no-repeat center;
background-size: contain;
}
.credits-php .about__header::before {
top: auto;
bottom: 70px;
height: 310px;
background-image: url('../images/about-header-credits.svg'); background-image: url('../images/about-header-credits.svg');
} }
.freedoms-php .about__header { .freedoms-php .about__header::before {
top: calc(50% - 182px);
right: 32px;
width: 375px;
height: 300px;
background-image: url('../images/about-header-freedoms.svg'); background-image: url('../images/about-header-freedoms.svg');
} }
.privacy-php .about__header { .privacy-php .about__header::before {
top: auto;
bottom: -16px;
background-image: url('../images/about-header-privacy.svg'); background-image: url('../images/about-header-privacy.svg');
} }
@ -638,7 +634,9 @@
} }
.about__header-title { .about__header-title {
padding: 2rem 0 0; box-sizing: border-box;
/* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */
padding: 6rem 380px 0 0;
margin: 0 2rem; margin: 0 2rem;
} }
@ -651,14 +649,24 @@
} }
.about__header-text { .about__header-text {
max-width: 42rem; box-sizing: border-box;
margin: 0 0 5em; margin: 0 0 7rem;
padding: 0 2rem; /* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */
font-size: 2rem; padding: 0 380px 0 2rem;
font-size: 1.6rem;
line-height: 1.15; line-height: 1.15;
} }
.freedoms-php .about__header-title,
.freedoms-php .about__header-text {
/* 423px = 375px (balloon width) + 32px (offset from edge) + 16px (spacing). */
padding-right: 423px;
margin-right: 0;
}
.about__header-navigation { .about__header-navigation {
position: relative;
z-index: 1;
display: flex; display: flex;
justify-content: center; justify-content: center;
padding-top: 0; padding-top: 0;
@ -707,6 +715,27 @@
} }
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {
.about__header::before {
width: 240px;
height: 305px;
right: 32px;
}
.credits-php .about__header::before {
height: 248px;
}
.freedoms-php .about__header::before {
top: calc(50% - 132px);
height: 192px;
width: 240px;
}
.privacy-php .about__header::before {
bottom: 0;
height: 280px;
}
.about__container .about__header-text { .about__container .about__header-text {
font-size: 1.4em; font-size: 1.4em;
} }
@ -715,13 +744,24 @@
display: block; display: block;
} }
.about__header-title,
.about__header-text {
/* 288px = 240px (balloon width) + 32px (offset from edge) + 16px (spacing). */
padding-right: 288px !important;
}
.about__header-title, .about__header-title,
.about__header-image { .about__header-image {
margin-left: calc(var(--gap) / 2); margin-left: calc(var(--gap) / 2);
margin-right: calc(var(--gap) / 2); margin-right: calc(var(--gap) / 2);
} }
.about__header-text, .about__header-text {
margin-top: 0;
margin-right: 0;
padding-left: calc(var(--gap) / 2);
}
.about__header-navigation .nav-tab { .about__header-navigation .nav-tab {
margin-top: 0; margin-top: 0;
margin-right: 0; margin-right: 0;
@ -730,13 +770,28 @@
} }
} }
@media screen and (max-width: 600px) {
.about__header::before {
display: none;
}
.about__header-title,
.about__header-text {
padding-right: calc(var(--gap) / 2) !important;
}
}
@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
.about__header-title p { .about__header-title p {
font-size: 2.4em; font-size: 2.4em;
} }
.about__header-title {
padding-top: 2rem;
}
.about__header-text { .about__header-text {
margin-bottom: 1em; margin-bottom: 2rem;
} }
.about__header-navigation { .about__header-navigation {

File diff suppressed because one or more lines are too long

View File

@ -40,7 +40,7 @@
.icon16 { .icon16 {
height: 18px; height: 18px;
width: 18px; width: 18px;
padding: 6px 6px; padding: 6px;
margin: -6px -8px 0 0; margin: -6px -8px 0 0;
float: right; float: right;
} }
@ -162,7 +162,6 @@
#adminmenu li { #adminmenu li {
margin: 0; margin: 0;
padding: 0; padding: 0;
cursor: pointer;
} }
#adminmenu a { #adminmenu a {
@ -346,7 +345,7 @@
} }
#adminmenu .wp-menu-image img { #adminmenu .wp-menu-image img {
padding: 9px 0 0 0; padding: 9px 0 0;
opacity: 0.6; opacity: 0.6;
filter: alpha(opacity=60); filter: alpha(opacity=60);
} }
@ -489,7 +488,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li.wp-menu-separator { #adminmenu li.wp-menu-separator {
height: 5px; height: 5px;
padding: 0; padding: 0;
margin: 0 0 6px 0; margin: 0 0 6px;
cursor: inherit; cursor: inherit;
} }
@ -504,7 +503,7 @@ ul#adminmenu > li.current > a.current:after {
font-weight: 400; font-weight: 400;
font-size: 14px; font-size: 14px;
padding: 5px 11px 5px 4px; padding: 5px 11px 5px 4px;
margin: -7px -5px 4px 0px; margin: -7px -5px 4px 0;
border-width: 3px 5px 3px 0; border-width: 3px 5px 3px 0;
border-style: solid; border-style: solid;
border-color: transparent; border-color: transparent;
@ -655,7 +654,7 @@ li#wp-admin-bar-menu-toggle {
.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu, .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
top: 0px; top: 0;
right: 36px; right: 36px;
} }

File diff suppressed because one or more lines are too long

View File

@ -39,7 +39,7 @@
.icon16 { .icon16 {
height: 18px; height: 18px;
width: 18px; width: 18px;
padding: 6px 6px; padding: 6px;
margin: -6px 0 0 -8px; margin: -6px 0 0 -8px;
float: left; float: left;
} }
@ -161,7 +161,6 @@
#adminmenu li { #adminmenu li {
margin: 0; margin: 0;
padding: 0; padding: 0;
cursor: pointer;
} }
#adminmenu a { #adminmenu a {
@ -345,7 +344,7 @@
} }
#adminmenu .wp-menu-image img { #adminmenu .wp-menu-image img {
padding: 9px 0 0 0; padding: 9px 0 0;
opacity: 0.6; opacity: 0.6;
filter: alpha(opacity=60); filter: alpha(opacity=60);
} }
@ -488,7 +487,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li.wp-menu-separator { #adminmenu li.wp-menu-separator {
height: 5px; height: 5px;
padding: 0; padding: 0;
margin: 0 0 6px 0; margin: 0 0 6px;
cursor: inherit; cursor: inherit;
} }
@ -503,7 +502,7 @@ ul#adminmenu > li.current > a.current:after {
font-weight: 400; font-weight: 400;
font-size: 14px; font-size: 14px;
padding: 5px 4px 5px 11px; padding: 5px 4px 5px 11px;
margin: -7px 0px 4px -5px; margin: -7px 0 4px -5px;
border-width: 3px 0 3px 5px; border-width: 3px 0 3px 5px;
border-style: solid; border-style: solid;
border-color: transparent; border-color: transparent;
@ -654,7 +653,7 @@ li#wp-admin-bar-menu-toggle {
.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu, .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
top: 0px; top: 0;
left: 36px; left: 36px;
} }

File diff suppressed because one or more lines are too long

View File

@ -12,7 +12,7 @@
/* Needs higher specificiity. */ /* Needs higher specificiity. */
.wp-picker-container .wp-color-result.button { .wp-picker-container .wp-color-result.button {
min-height: 30px; min-height: 30px;
margin: 0 0px 6px 6px; margin: 0 0 6px 6px;
padding: 0 30px 0 0; padding: 0 30px 0 0;
font-size: 11px; font-size: 11px;
} }

View File

@ -11,7 +11,7 @@
/* Needs higher specificiity. */ /* Needs higher specificiity. */
.wp-picker-container .wp-color-result.button { .wp-picker-container .wp-color-result.button {
min-height: 30px; min-height: 30px;
margin: 0 6px 6px 0px; margin: 0 6px 6px 0;
padding: 0 0 0 30px; padding: 0 0 0 30px;
font-size: 11px; font-size: 11px;
} }

View File

@ -781,3 +781,17 @@ div#wp-responsive-toggle a:before {
color: $link; color: $link;
} }
} }
/* Welcome Panel */
.welcome-panel {
background-color: $highlight-color;
}
[class*="welcome-panel-icon"] {
@if ( $scheme-name == "light" ) {
background-color: $icon-color;
} @else {
background-color: $base-color;
}
}

View File

@ -1,5 +1,6 @@
// assign default value to all undefined variables // assign default value to all undefined variables
$scheme-name: "default" !default;
// core variables // core variables

View File

@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e1a948; border-bottom-color: #e1a948;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #096484;
}
[class*=welcome-panel-icon] {
background-color: #52accc;
} }

File diff suppressed because one or more lines are too long

View File

@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e1a948; border-bottom-color: #e1a948;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #096484;
}
[class*=welcome-panel-icon] {
background-color: #52accc;
} }

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,4 @@
$scheme-name: "blue";
$base-color: #52accc; $base-color: #52accc;
$icon-color: #e5f8ff; $icon-color: #e5f8ff;
$highlight-color: #096484; $highlight-color: #096484;

View File

@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #c7a589; border-bottom-color: #c7a589;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #c7a589;
}
[class*=welcome-panel-icon] {
background-color: #59524c;
} }

File diff suppressed because one or more lines are too long

View File

@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #c7a589; border-bottom-color: #c7a589;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #c7a589;
}
[class*=welcome-panel-icon] {
background-color: #59524c;
} }

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,4 @@
$scheme-name: "coffee";
$base-color: #59524c; $base-color: #59524c;
$highlight-color: #c7a589; $highlight-color: #c7a589;
$notification-color: #9ea476; $notification-color: #9ea476;

View File

@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #a3b745; border-bottom-color: #a3b745;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #a3b745;
}
[class*=welcome-panel-icon] {
background-color: #523f6d;
} }

File diff suppressed because one or more lines are too long

View File

@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #a3b745; border-bottom-color: #a3b745;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #a3b745;
}
[class*=welcome-panel-icon] {
background-color: #523f6d;
} }

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,4 @@
$scheme-name: "ectoplasm";
$base-color: #523f6d; $base-color: #523f6d;
$icon-color: #ece6f6; $icon-color: #ece6f6;
$highlight-color: #a3b745; $highlight-color: #a3b745;

View File

@ -704,6 +704,15 @@ div#wp-responsive-toggle a:before {
color: #0073aa; color: #0073aa;
} }
/* Welcome Panel */
.welcome-panel {
background-color: #04a4cc;
}
[class*=welcome-panel-icon] {
background-color: #999;
}
/* Override the theme filter highlight color for this scheme */ /* Override the theme filter highlight color for this scheme */
.theme-section.current, .theme-section.current,
.theme-filter.current { .theme-filter.current {

File diff suppressed because one or more lines are too long

View File

@ -704,6 +704,15 @@ div#wp-responsive-toggle a:before {
color: #0073aa; color: #0073aa;
} }
/* Welcome Panel */
.welcome-panel {
background-color: #04a4cc;
}
[class*=welcome-panel-icon] {
background-color: #999;
}
/* Override the theme filter highlight color for this scheme */ /* Override the theme filter highlight color for this scheme */
.theme-section.current, .theme-section.current,
.theme-filter.current { .theme-filter.current {

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,4 @@
$scheme-name: "light";
$base-color: #e5e5e5; $base-color: #e5e5e5;
$icon-color: #999; $icon-color: #999;
$text-color: #333; $text-color: #333;

View File

@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e14d43; border-bottom-color: #e14d43;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #e14d43;
}
[class*=welcome-panel-icon] {
background-color: #363b3f;
} }

File diff suppressed because one or more lines are too long

View File

@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e14d43; border-bottom-color: #e14d43;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #e14d43;
}
[class*=welcome-panel-icon] {
background-color: #363b3f;
} }

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,4 @@
$scheme-name: "midnight";
$base-color: #363b3f; $base-color: #363b3f;
$highlight-color: #e14d43; $highlight-color: #e14d43;
$notification-color: #69a8bb; $notification-color: #69a8bb;

View File

@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #3858e9; border-bottom-color: #3858e9;
color: #3858e9; color: #3858e9;
}
/* Welcome Panel */
.welcome-panel {
background-color: #3858e9;
}
[class*=welcome-panel-icon] {
background-color: #1e1e1e;
} }

File diff suppressed because one or more lines are too long

View File

@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #3858e9; border-bottom-color: #3858e9;
color: #3858e9; color: #3858e9;
}
/* Welcome Panel */
.welcome-panel {
background-color: #3858e9;
}
[class*=welcome-panel-icon] {
background-color: #1e1e1e;
} }

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,4 @@
$scheme-name: "modern";
$base-color: #1e1e1e; $base-color: #1e1e1e;
$highlight-color: #3858e9; $highlight-color: #3858e9;
$menu-submenu-focus-text: #33f078; $menu-submenu-focus-text: #33f078;

View File

@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #9ebaa0; border-bottom-color: #9ebaa0;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #9ebaa0;
}
[class*=welcome-panel-icon] {
background-color: #738e96;
} }

File diff suppressed because one or more lines are too long

View File

@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #9ebaa0; border-bottom-color: #9ebaa0;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #9ebaa0;
}
[class*=welcome-panel-icon] {
background-color: #738e96;
} }

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,4 @@
$scheme-name: "ocean";
$base-color: #738e96; $base-color: #738e96;
$icon-color: #f2fcff; $icon-color: #f2fcff;
$highlight-color: #9ebaa0; $highlight-color: #9ebaa0;

View File

@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #dd823b; border-bottom-color: #dd823b;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #dd823b;
}
[class*=welcome-panel-icon] {
background-color: #cf4944;
} }

File diff suppressed because one or more lines are too long

View File

@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #dd823b; border-bottom-color: #dd823b;
color: #0073aa; color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #dd823b;
}
[class*=welcome-panel-icon] {
background-color: #cf4944;
} }

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,4 @@
$scheme-name: "sunrise";
$base-color: #cf4944; $base-color: #cf4944;
$highlight-color: #dd823b; $highlight-color: #dd823b;
$notification-color: #ccaf0b; $notification-color: #ccaf0b;

View File

@ -418,7 +418,7 @@ code {
kbd, kbd,
code { code {
padding: 3px 5px 2px 5px; padding: 3px 5px 2px;
margin: 0 1px; margin: 0 1px;
background: #f0f0f1; background: #f0f0f1;
background: rgba(0, 0, 0, 0.07); background: rgba(0, 0, 0, 0.07);
@ -583,7 +583,7 @@ code {
font-size: 23px; font-size: 23px;
font-weight: 400; font-weight: 400;
margin: 0; margin: 0;
padding: 9px 0 4px 0; padding: 9px 0 4px;
line-height: 1.3; line-height: 1.3;
} }
@ -824,8 +824,6 @@ img.emoji {
outline: 0; outline: 0;
} }
.welcome-panel .welcome-panel-close:hover:before,
.welcome-panel .welcome-panel-close:focus:before,
.tagchecklist .ntdelbutton:hover .remove-tag-icon:before, .tagchecklist .ntdelbutton:hover .remove-tag-icon:before,
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before, .tagchecklist .ntdelbutton:focus .remove-tag-icon:before,
#bulk-titles div a:hover:before, #bulk-titles div a:hover:before,
@ -884,7 +882,8 @@ hr {
#media-items a.delete-permanently, #media-items a.delete-permanently,
#nav-menu-footer .menu-delete, #nav-menu-footer .menu-delete,
#delete-link a.delete, #delete-link a.delete,
a#remove-post-thumbnail { a#remove-post-thumbnail,
.privacy_requests .remove-personal-data .remove-personal-data-handle {
color: #b32d2e; color: #b32d2e;
} }
@ -902,7 +901,8 @@ span.required,
#media-items a.delete-permanently:hover, #media-items a.delete-permanently:hover,
#nav-menu-footer .menu-delete:hover, #nav-menu-footer .menu-delete:hover,
#delete-link a.delete:hover, #delete-link a.delete:hover,
a#remove-post-thumbnail:hover { a#remove-post-thumbnail:hover,
.privacy_requests .remove-personal-data .remove-personal-data-handle:hover {
color: #b32d2e; color: #b32d2e;
border: none; border: none;
} }
@ -958,7 +958,7 @@ a#remove-post-thumbnail:hover {
} }
#minor-publishing-actions { #minor-publishing-actions {
padding: 10px 10px 0 10px; padding: 10px 10px 0;
text-align: left; text-align: left;
} }
@ -1233,7 +1233,7 @@ th.action-links {
.filter-group .filter-group-feature label { .filter-group .filter-group-feature label {
display: block; display: block;
margin: 14px 23px 14px 0px; margin: 14px 23px 14px 0;
} }
.filter-drawer .buttons { .filter-drawer .buttons {
@ -1610,7 +1610,7 @@ form.upgrade {
form.upgrade .hint { form.upgrade .hint {
font-style: italic; font-style: italic;
font-size: 85%; font-size: 85%;
margin: -0.5em 0 2em 0; margin: -0.5em 0 2em;
} }
.update-php .spinner { .update-php .spinner {
@ -1708,7 +1708,7 @@ p.auto-update-status {
/* screen options and help tabs revert */ /* screen options and help tabs revert */
#screen-meta { #screen-meta {
display: none; display: none;
margin: 0 0px -1px 20px; margin: 0 0 -1px 20px;
position: relative; position: relative;
background-color: #fff; background-color: #fff;
border: 1px solid #c3c4c7; border: 1px solid #c3c4c7;
@ -3144,7 +3144,7 @@ img {
width: 300px; width: 300px;
} }
/* Theme/Plugin Editor */ /* Theme/Plugin file editor */
.alignleft h2 { .alignleft h2 {
margin: 0; margin: 0;
} }
@ -3197,7 +3197,7 @@ img {
} }
/* /*
* Styles for Theme and Plugin editors. * Styles for Theme and Plugin file editors.
*/ */
/* Hide collapsed items. */ /* Hide collapsed items. */
@ -3286,7 +3286,7 @@ img {
.tree-folder > .current-file::before { .tree-folder > .current-file::before {
right: 4px; right: 4px;
height: 15px; height: 15px;
width: 0px; width: 0;
border-right: none; border-right: none;
top: 3px; top: 3px;
} }
@ -3381,7 +3381,7 @@ img {
} }
#templateside li.howto { #templateside li.howto {
padding: 6px 12px 12px 12px; padding: 6px 12px 12px;
} }
.theme-editor-php .highlight { .theme-editor-php .highlight {
@ -3433,7 +3433,7 @@ img {
} }
.widget-top .widget-action .toggle-indicator:before { .widget-top .widget-action .toggle-indicator:before {
padding: 1px 0px 1px 2px; padding: 1px 0 1px 2px;
border-radius: 50%; border-radius: 50%;
} }
@ -3828,7 +3828,7 @@ img {
.wrap div.updated, .wrap div.updated,
.wrap div.error, .wrap div.error,
.media-upload-form div.error { .media-upload-form div.error {
margin: 20px 0 10px 0; margin: 20px 0 10px;
padding: 5px 10px; padding: 5px 10px;
font-size: 14px; font-size: 14px;
line-height: 175%; line-height: 175%;
@ -3938,7 +3938,7 @@ img {
right: -8px; right: -8px;
} }
.tree-folder > li::before { .tree-folder > li::before {
top: 0px; top: 0;
height: 13px; height: 13px;
} }
.tree-folder > .current-file::before { .tree-folder > .current-file::before {

File diff suppressed because one or more lines are too long

View File

@ -417,7 +417,7 @@ code {
kbd, kbd,
code { code {
padding: 3px 5px 2px 5px; padding: 3px 5px 2px;
margin: 0 1px; margin: 0 1px;
background: #f0f0f1; background: #f0f0f1;
background: rgba(0, 0, 0, 0.07); background: rgba(0, 0, 0, 0.07);
@ -582,7 +582,7 @@ code {
font-size: 23px; font-size: 23px;
font-weight: 400; font-weight: 400;
margin: 0; margin: 0;
padding: 9px 0 4px 0; padding: 9px 0 4px;
line-height: 1.3; line-height: 1.3;
} }
@ -823,8 +823,6 @@ img.emoji {
outline: 0; outline: 0;
} }
.welcome-panel .welcome-panel-close:hover:before,
.welcome-panel .welcome-panel-close:focus:before,
.tagchecklist .ntdelbutton:hover .remove-tag-icon:before, .tagchecklist .ntdelbutton:hover .remove-tag-icon:before,
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before, .tagchecklist .ntdelbutton:focus .remove-tag-icon:before,
#bulk-titles div a:hover:before, #bulk-titles div a:hover:before,
@ -883,7 +881,8 @@ hr {
#media-items a.delete-permanently, #media-items a.delete-permanently,
#nav-menu-footer .menu-delete, #nav-menu-footer .menu-delete,
#delete-link a.delete, #delete-link a.delete,
a#remove-post-thumbnail { a#remove-post-thumbnail,
.privacy_requests .remove-personal-data .remove-personal-data-handle {
color: #b32d2e; color: #b32d2e;
} }
@ -901,7 +900,8 @@ span.required,
#media-items a.delete-permanently:hover, #media-items a.delete-permanently:hover,
#nav-menu-footer .menu-delete:hover, #nav-menu-footer .menu-delete:hover,
#delete-link a.delete:hover, #delete-link a.delete:hover,
a#remove-post-thumbnail:hover { a#remove-post-thumbnail:hover,
.privacy_requests .remove-personal-data .remove-personal-data-handle:hover {
color: #b32d2e; color: #b32d2e;
border: none; border: none;
} }
@ -957,7 +957,7 @@ a#remove-post-thumbnail:hover {
} }
#minor-publishing-actions { #minor-publishing-actions {
padding: 10px 10px 0 10px; padding: 10px 10px 0;
text-align: right; text-align: right;
} }
@ -1232,7 +1232,7 @@ th.action-links {
.filter-group .filter-group-feature label { .filter-group .filter-group-feature label {
display: block; display: block;
margin: 14px 0px 14px 23px; margin: 14px 0 14px 23px;
} }
.filter-drawer .buttons { .filter-drawer .buttons {
@ -1609,7 +1609,7 @@ form.upgrade {
form.upgrade .hint { form.upgrade .hint {
font-style: italic; font-style: italic;
font-size: 85%; font-size: 85%;
margin: -0.5em 0 2em 0; margin: -0.5em 0 2em;
} }
.update-php .spinner { .update-php .spinner {
@ -1707,7 +1707,7 @@ p.auto-update-status {
/* screen options and help tabs revert */ /* screen options and help tabs revert */
#screen-meta { #screen-meta {
display: none; display: none;
margin: 0 20px -1px 0px; margin: 0 20px -1px 0;
position: relative; position: relative;
background-color: #fff; background-color: #fff;
border: 1px solid #c3c4c7; border: 1px solid #c3c4c7;
@ -3143,7 +3143,7 @@ img {
width: 300px; width: 300px;
} }
/* Theme/Plugin Editor */ /* Theme/Plugin file editor */
.alignleft h2 { .alignleft h2 {
margin: 0; margin: 0;
} }
@ -3196,7 +3196,7 @@ img {
} }
/* /*
* Styles for Theme and Plugin editors. * Styles for Theme and Plugin file editors.
*/ */
/* Hide collapsed items. */ /* Hide collapsed items. */
@ -3285,7 +3285,7 @@ img {
.tree-folder > .current-file::before { .tree-folder > .current-file::before {
left: 4px; left: 4px;
height: 15px; height: 15px;
width: 0px; width: 0;
border-left: none; border-left: none;
top: 3px; top: 3px;
} }
@ -3380,7 +3380,7 @@ img {
} }
#templateside li.howto { #templateside li.howto {
padding: 6px 12px 12px 12px; padding: 6px 12px 12px;
} }
.theme-editor-php .highlight { .theme-editor-php .highlight {
@ -3432,7 +3432,7 @@ img {
} }
.widget-top .widget-action .toggle-indicator:before { .widget-top .widget-action .toggle-indicator:before {
padding: 1px 2px 1px 0px; padding: 1px 2px 1px 0;
border-radius: 50%; border-radius: 50%;
} }
@ -3827,7 +3827,7 @@ img {
.wrap div.updated, .wrap div.updated,
.wrap div.error, .wrap div.error,
.media-upload-form div.error { .media-upload-form div.error {
margin: 20px 0 10px 0; margin: 20px 0 10px;
padding: 5px 10px; padding: 5px 10px;
font-size: 14px; font-size: 14px;
line-height: 175%; line-height: 175%;
@ -3937,7 +3937,7 @@ img {
left: -8px; left: -8px;
} }
.tree-folder > li::before { .tree-folder > li::before {
top: 0px; top: 0;
height: 13px; height: 13px;
} }
.tree-folder > .current-file::before { .tree-folder > .current-file::before {

File diff suppressed because one or more lines are too long

View File

@ -106,6 +106,12 @@ body:not(.ready) #customize-save-button-wrapper .save {
height: 100%; height: 100%;
} }
@media (prefers-reduced-motion: reduce) {
#customize-sidebar-outer-content {
transition: none;
}
}
#customize-theme-controls .control-section-outer { #customize-theme-controls .control-section-outer {
display: none !important; display: none !important;
} }
@ -124,6 +130,12 @@ body:not(.ready) #customize-save-button-wrapper .save {
transition: right .18s; transition: right .18s;
} }
@media (prefers-reduced-motion: reduce) {
.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content {
transition: none;
}
}
.customize-outer-pane-parent { .customize-outer-pane-parent {
margin: 0; margin: 0;
} }
@ -538,6 +550,13 @@ body.trashing #publish-settings {
.15s border-color ease-in-out; .15s border-color ease-in-out;
} }
@media (prefers-reduced-motion: reduce) {
#customize-theme-controls .accordion-section-title,
#customize-outer-theme-controls .accordion-section-title {
transition: none;
}
}
#customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title {
color: #50575e; color: #50575e;
background-color: #fff; background-color: #fff;
@ -636,6 +655,14 @@ body.trashing #publish-settings {
transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
} }
@media (prefers-reduced-motion: reduce) {
#customize-info,
#customize-theme-controls .customize-pane-parent,
#customize-theme-controls .customize-pane-child {
transition: none;
}
}
#customize-theme-controls .customize-pane-child.skip-transition { #customize-theme-controls .customize-pane-child.skip-transition {
transition: none; transition: none;
} }
@ -717,7 +744,7 @@ body.trashing #publish-settings {
} }
.customize-section-title { .customize-section-title {
margin: -12px -12px 0 -12px; margin: -12px -12px 0;
border-bottom: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde;
background: #fff; background: #fff;
} }
@ -740,11 +767,11 @@ div.customize-section-description p:last-child {
#customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
border-bottom: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde;
padding: 12px 12px 12px 12px; padding: 12px;
} }
.ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { .ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
padding: 12px 12px 13px 12px; padding: 12px 12px 13px;
} }
.customize-section-title h3, .customize-section-title h3,
@ -923,7 +950,8 @@ p.customize-section-description {
.customize-control input[type="number"], .customize-control input[type="number"],
.customize-control input[type="search"], .customize-control input[type="search"],
.customize-control input[type="tel"], .customize-control input[type="tel"],
.customize-control input[type="url"] { .customize-control input[type="url"],
.customize-control input[type="range"] {
width: 100%; width: 100%;
margin: 0; margin: 0;
} }
@ -1114,7 +1142,7 @@ p.customize-section-description {
*/ */
#customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */ #customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */
margin: 4px 0 8px 0; margin: 4px 0 8px;
padding: 0; padding: 0;
cursor: default; cursor: default;
} }
@ -1127,7 +1155,7 @@ p.customize-section-description {
#customize-controls .customize-control-notifications-container li.notice { #customize-controls .customize-control-notifications-container li.notice {
list-style: none; list-style: none;
margin: 0 0 6px 0; margin: 0 0 6px;
padding: 9px 14px; padding: 9px 14px;
overflow: hidden; overflow: hidden;
} }
@ -1429,7 +1457,7 @@ p.customize-section-description {
} }
.customize-control-header .header-view:last-child { .customize-control-header .header-view:last-child {
margin-bottom: 0px; margin-bottom: 0;
} }
/* Convoluted, but 'outline' support isn't good enough yet */ /* Convoluted, but 'outline' support isn't good enough yet */
@ -1665,7 +1693,7 @@ p.customize-section-description {
border-bottom: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde;
border-right: none; border-right: none;
border-left: none; border-left: none;
margin: 0 0 15px 0; margin: 0 0 15px;
padding-left: 100px; /* Space for the button */ padding-left: 100px; /* Space for the button */
} }
@ -1724,6 +1752,12 @@ p.customize-section-description {
z-index: 20; z-index: 20;
} }
@media (prefers-reduced-motion: reduce) {
.control-panel-themes .customize-themes-full-container {
transition: none;
}
}
@media screen and (min-width: 1670px) { @media screen and (min-width: 1670px) {
.control-panel-themes .customize-themes-full-container { .control-panel-themes .customize-themes-full-container {
width: 82%; width: 82%;
@ -1861,7 +1895,7 @@ p.customize-section-description {
} }
.control-panel-themes .customize-themes-notifications .notice { .control-panel-themes .customize-themes-notifications .notice {
margin: 0 0 25px 0; margin: 0 0 25px;
} }
.customize-themes-full-container .customize-themes-section { .customize-themes-full-container .customize-themes-section {
@ -1875,7 +1909,7 @@ p.customize-section-description {
.control-section .customize-section-text-before { .control-section .customize-section-text-before {
padding: 0 15px 8px 0; padding: 0 15px 8px 0;
margin: 15px 0 0 0; margin: 15px 0 0;
line-height: 16px; line-height: 16px;
border-bottom: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde;
color: #50575e; color: #50575e;
@ -2096,7 +2130,7 @@ p.customize-section-description {
position: relative; position: relative;
right: 0; right: 0;
width: 100%; width: 100%;
margin: 0 0 25px 0; margin: 0 0 25px;
} }
.filter-drawer { .filter-drawer {
top: 46px; top: 46px;
@ -2206,7 +2240,7 @@ p.customize-section-description {
width: 26px; width: 26px;
display: block; display: block;
line-height: 2.3; line-height: 2.3;
padding: 0 8px 0 8px; padding: 0 8px;
border-left: 1px solid #dcdcde; border-left: 1px solid #dcdcde;
} }
@ -2367,7 +2401,7 @@ body.cheatin h1 {
color: #50575e; color: #50575e;
font-size: 24px; font-size: 24px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin: 30px 0 0 0; margin: 30px 0 0;
padding: 0 0 7px; padding: 0 0 7px;
} }

File diff suppressed because one or more lines are too long

View File

@ -105,6 +105,12 @@ body:not(.ready) #customize-save-button-wrapper .save {
height: 100%; height: 100%;
} }
@media (prefers-reduced-motion: reduce) {
#customize-sidebar-outer-content {
transition: none;
}
}
#customize-theme-controls .control-section-outer { #customize-theme-controls .control-section-outer {
display: none !important; display: none !important;
} }
@ -123,6 +129,12 @@ body:not(.ready) #customize-save-button-wrapper .save {
transition: left .18s; transition: left .18s;
} }
@media (prefers-reduced-motion: reduce) {
.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content {
transition: none;
}
}
.customize-outer-pane-parent { .customize-outer-pane-parent {
margin: 0; margin: 0;
} }
@ -537,6 +549,13 @@ body.trashing #publish-settings {
.15s border-color ease-in-out; .15s border-color ease-in-out;
} }
@media (prefers-reduced-motion: reduce) {
#customize-theme-controls .accordion-section-title,
#customize-outer-theme-controls .accordion-section-title {
transition: none;
}
}
#customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title {
color: #50575e; color: #50575e;
background-color: #fff; background-color: #fff;
@ -635,6 +654,14 @@ body.trashing #publish-settings {
transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
} }
@media (prefers-reduced-motion: reduce) {
#customize-info,
#customize-theme-controls .customize-pane-parent,
#customize-theme-controls .customize-pane-child {
transition: none;
}
}
#customize-theme-controls .customize-pane-child.skip-transition { #customize-theme-controls .customize-pane-child.skip-transition {
transition: none; transition: none;
} }
@ -716,7 +743,7 @@ body.trashing #publish-settings {
} }
.customize-section-title { .customize-section-title {
margin: -12px -12px 0 -12px; margin: -12px -12px 0;
border-bottom: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde;
background: #fff; background: #fff;
} }
@ -739,11 +766,11 @@ div.customize-section-description p:last-child {
#customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
border-bottom: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde;
padding: 12px 12px 12px 12px; padding: 12px;
} }
.ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { .ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
padding: 12px 12px 13px 12px; padding: 12px 12px 13px;
} }
.customize-section-title h3, .customize-section-title h3,
@ -922,7 +949,8 @@ p.customize-section-description {
.customize-control input[type="number"], .customize-control input[type="number"],
.customize-control input[type="search"], .customize-control input[type="search"],
.customize-control input[type="tel"], .customize-control input[type="tel"],
.customize-control input[type="url"] { .customize-control input[type="url"],
.customize-control input[type="range"] {
width: 100%; width: 100%;
margin: 0; margin: 0;
} }
@ -1113,7 +1141,7 @@ p.customize-section-description {
*/ */
#customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */ #customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */
margin: 4px 0 8px 0; margin: 4px 0 8px;
padding: 0; padding: 0;
cursor: default; cursor: default;
} }
@ -1126,7 +1154,7 @@ p.customize-section-description {
#customize-controls .customize-control-notifications-container li.notice { #customize-controls .customize-control-notifications-container li.notice {
list-style: none; list-style: none;
margin: 0 0 6px 0; margin: 0 0 6px;
padding: 9px 14px; padding: 9px 14px;
overflow: hidden; overflow: hidden;
} }
@ -1428,7 +1456,7 @@ p.customize-section-description {
} }
.customize-control-header .header-view:last-child { .customize-control-header .header-view:last-child {
margin-bottom: 0px; margin-bottom: 0;
} }
/* Convoluted, but 'outline' support isn't good enough yet */ /* Convoluted, but 'outline' support isn't good enough yet */
@ -1664,7 +1692,7 @@ p.customize-section-description {
border-bottom: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde;
border-left: none; border-left: none;
border-right: none; border-right: none;
margin: 0 0 15px 0; margin: 0 0 15px;
padding-right: 100px; /* Space for the button */ padding-right: 100px; /* Space for the button */
} }
@ -1723,6 +1751,12 @@ p.customize-section-description {
z-index: 20; z-index: 20;
} }
@media (prefers-reduced-motion: reduce) {
.control-panel-themes .customize-themes-full-container {
transition: none;
}
}
@media screen and (min-width: 1670px) { @media screen and (min-width: 1670px) {
.control-panel-themes .customize-themes-full-container { .control-panel-themes .customize-themes-full-container {
width: 82%; width: 82%;
@ -1860,7 +1894,7 @@ p.customize-section-description {
} }
.control-panel-themes .customize-themes-notifications .notice { .control-panel-themes .customize-themes-notifications .notice {
margin: 0 0 25px 0; margin: 0 0 25px;
} }
.customize-themes-full-container .customize-themes-section { .customize-themes-full-container .customize-themes-section {
@ -1874,7 +1908,7 @@ p.customize-section-description {
.control-section .customize-section-text-before { .control-section .customize-section-text-before {
padding: 0 0 8px 15px; padding: 0 0 8px 15px;
margin: 15px 0 0 0; margin: 15px 0 0;
line-height: 16px; line-height: 16px;
border-bottom: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde;
color: #50575e; color: #50575e;
@ -2095,7 +2129,7 @@ p.customize-section-description {
position: relative; position: relative;
left: 0; left: 0;
width: 100%; width: 100%;
margin: 0 0 25px 0; margin: 0 0 25px;
} }
.filter-drawer { .filter-drawer {
top: 46px; top: 46px;
@ -2205,7 +2239,7 @@ p.customize-section-description {
width: 26px; width: 26px;
display: block; display: block;
line-height: 2.3; line-height: 2.3;
padding: 0 8px 0 8px; padding: 0 8px;
border-right: 1px solid #dcdcde; border-right: 1px solid #dcdcde;
} }
@ -2366,7 +2400,7 @@ body.cheatin h1 {
color: #50575e; color: #50575e;
font-size: 24px; font-size: 24px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin: 30px 0 0 0; margin: 30px 0 0;
padding: 0 0 7px; padding: 0 0 7px;
} }

File diff suppressed because one or more lines are too long

View File

@ -12,7 +12,7 @@
#customize-theme-controls .customize-section-title-nav_menus-heading, #customize-theme-controls .customize-section-title-nav_menus-heading,
#customize-theme-controls .customize-section-title-menu_locations-heading, #customize-theme-controls .customize-section-title-menu_locations-heading,
#customize-theme-controls .customize-section-title-menu_locations-description { #customize-theme-controls .customize-section-title-menu_locations-description {
padding: 0 12px 0 12px; padding: 0 12px;
} }
#customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description { #customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description {
@ -101,7 +101,7 @@
.wp-customizer .menu-item-settings .description-thin { .wp-customizer .menu-item-settings .description-thin {
width: 100%; width: 100%;
height: auto; height: auto;
margin: 0 0 8px 0; margin: 0 0 8px;
} }
.wp-customizer .menu-item-settings input[type="text"] { .wp-customizer .menu-item-settings input[type="text"] {
@ -186,7 +186,7 @@
} }
.wp-customizer .menu-settings dl { .wp-customizer .menu-settings dl {
margin: 12px 0 0 0; margin: 12px 0 0;
padding: 0; padding: 0;
} }
@ -323,7 +323,7 @@
#available-menu-items .accordion-section-title .toggle-indicator:before { #available-menu-items .accordion-section-title .toggle-indicator:before {
content: "\f140"; content: "\f140";
display: block; display: block;
padding: 1px 0px 1px 2px; padding: 1px 0 1px 2px;
speak: never; speak: never;
border-radius: 50%; border-radius: 50%;
color: #787c82; color: #787c82;
@ -582,8 +582,8 @@
} }
#available-menu-items .accordion-section-content .available-menu-items-list { #available-menu-items .accordion-section-content .available-menu-items-list {
margin: 0 0 45px 0; margin: 0 0 45px;
padding: 1px 15px 15px 15px; padding: 1px 15px 15px;
} }
#available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */ #available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */
@ -591,7 +591,7 @@
} }
#new-custom-menu-item .accordion-section-content { #new-custom-menu-item .accordion-section-content {
padding: 0 15px 15px 15px; padding: 0 15px 15px;
} }
#available-menu-items .menu-item-tpl { #available-menu-items .menu-item-tpl {
@ -691,7 +691,7 @@
position: absolute; position: absolute;
right: 0; right: 0;
top: 60px; /* below title div / search input */ top: 60px; /* below title div / search input */
bottom: 0px; /* 100% height that still triggers lazy load */ bottom: 0; /* 100% height that still triggers lazy load */
max-height: none; max-height: none;
width: 100%; width: 100%;
padding: 1px 15px 15px; padding: 1px 15px 15px;
@ -796,7 +796,7 @@ body.adding-menu-items #customize-preview iframe {
#create-new-menu-submit { #create-new-menu-submit {
float: left; float: left;
margin: 0 0 12px 0; margin: 0 0 12px;
} }
.menu-delete-item { .menu-delete-item {
@ -806,7 +806,7 @@ body.adding-menu-items #customize-preview iframe {
} }
.assigned-menu-locations-title p { .assigned-menu-locations-title p {
margin: 0 0 8px 0; margin: 0 0 8px;
} }
li.assigned-to-menu-location .menu-delete-item { li.assigned-to-menu-location .menu-delete-item {

File diff suppressed because one or more lines are too long

View File

@ -11,7 +11,7 @@
#customize-theme-controls .customize-section-title-nav_menus-heading, #customize-theme-controls .customize-section-title-nav_menus-heading,
#customize-theme-controls .customize-section-title-menu_locations-heading, #customize-theme-controls .customize-section-title-menu_locations-heading,
#customize-theme-controls .customize-section-title-menu_locations-description { #customize-theme-controls .customize-section-title-menu_locations-description {
padding: 0 12px 0 12px; padding: 0 12px;
} }
#customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description { #customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description {
@ -100,7 +100,7 @@
.wp-customizer .menu-item-settings .description-thin { .wp-customizer .menu-item-settings .description-thin {
width: 100%; width: 100%;
height: auto; height: auto;
margin: 0 0 8px 0; margin: 0 0 8px;
} }
.wp-customizer .menu-item-settings input[type="text"] { .wp-customizer .menu-item-settings input[type="text"] {
@ -185,7 +185,7 @@
} }
.wp-customizer .menu-settings dl { .wp-customizer .menu-settings dl {
margin: 12px 0 0 0; margin: 12px 0 0;
padding: 0; padding: 0;
} }
@ -322,7 +322,7 @@
#available-menu-items .accordion-section-title .toggle-indicator:before { #available-menu-items .accordion-section-title .toggle-indicator:before {
content: "\f140"; content: "\f140";
display: block; display: block;
padding: 1px 2px 1px 0px; padding: 1px 2px 1px 0;
speak: never; speak: never;
border-radius: 50%; border-radius: 50%;
color: #787c82; color: #787c82;
@ -581,8 +581,8 @@
} }
#available-menu-items .accordion-section-content .available-menu-items-list { #available-menu-items .accordion-section-content .available-menu-items-list {
margin: 0 0 45px 0; margin: 0 0 45px;
padding: 1px 15px 15px 15px; padding: 1px 15px 15px;
} }
#available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */ #available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */
@ -590,7 +590,7 @@
} }
#new-custom-menu-item .accordion-section-content { #new-custom-menu-item .accordion-section-content {
padding: 0 15px 15px 15px; padding: 0 15px 15px;
} }
#available-menu-items .menu-item-tpl { #available-menu-items .menu-item-tpl {
@ -690,7 +690,7 @@
position: absolute; position: absolute;
left: 0; left: 0;
top: 60px; /* below title div / search input */ top: 60px; /* below title div / search input */
bottom: 0px; /* 100% height that still triggers lazy load */ bottom: 0; /* 100% height that still triggers lazy load */
max-height: none; max-height: none;
width: 100%; width: 100%;
padding: 1px 15px 15px; padding: 1px 15px 15px;
@ -795,7 +795,7 @@ body.adding-menu-items #customize-preview iframe {
#create-new-menu-submit { #create-new-menu-submit {
float: right; float: right;
margin: 0 0 12px 0; margin: 0 0 12px;
} }
.menu-delete-item { .menu-delete-item {
@ -805,7 +805,7 @@ body.adding-menu-items #customize-preview iframe {
} }
.assigned-menu-locations-title p { .assigned-menu-locations-title p {
margin: 0 0 8px 0; margin: 0 0 8px;
} }
li.assigned-to-menu-location .menu-delete-item { li.assigned-to-menu-location .menu-delete-item {

File diff suppressed because one or more lines are too long

View File

@ -82,7 +82,7 @@
} }
.widget-inside { .widget-inside {
padding: 1px 10px 10px 10px; padding: 1px 10px 10px;
border-top: none; border-top: none;
line-height: 1.23076923; line-height: 1.23076923;
} }

File diff suppressed because one or more lines are too long

View File

@ -81,7 +81,7 @@
} }
.widget-inside { .widget-inside {
padding: 1px 10px 10px 10px; padding: 1px 10px 10px;
border-top: none; border-top: none;
line-height: 1.23076923; line-height: 1.23076923;
} }

File diff suppressed because one or more lines are too long

View File

@ -111,53 +111,88 @@
max-width: 100%; max-width: 100%;
} }
/* Screen meta exception for when the "Dashboard" heading is missing or located below the Welcome Panel. */
.index-php #screen-meta-links {
margin: 0 0 8px 20px;
}
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
position: relative; position: relative;
overflow: auto; overflow: auto;
margin: 16px 0; margin: 16px 0;
padding: 23px 10px 0; background: #2271b1 url(../images/about-texture.png) center repeat;
border: 1px solid #c3c4c7; background-size: 500px 500px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background-blend-mode: overlay;
background: #fff; font-size: 14px;
font-size: 13px; line-height: 1.3;
line-height: 1.7; clear: both;
}
.welcome-panel::before {
content: "";
position: absolute;
top: -16px;
left: 96px;
z-index: 0;
width: 300px;
height: 382px;
background: url(../images/about-header-about.svg) no-repeat center;
background-size: contain;
} }
.welcome-panel h2 { .welcome-panel h2 {
margin: 0; margin: 0;
font-size: 21px; font-size: 48px;
font-weight: 400; font-weight: 600;
line-height: 1.2; line-height: 1.25;
color: #fff;
} }
.welcome-panel h3 { .welcome-panel h3 {
margin: 1.33em 0 0; margin: 0;
font-size: 16px; font-size: 20px;
} font-weight: 400;
line-height: 1.4;
.welcome-panel li {
font-size: 14px;
} }
.welcome-panel p { .welcome-panel p {
color: #646970; font-size: inherit;
line-height: inherit;
} }
.welcome-panel li a { .welcome-panel-header {
color: #fff;
}
.welcome-panel-header a {
color: #fff;
}
.welcome-panel-header a:focus,
.welcome-panel-header a:hover {
color: #f5e6ab;
text-decoration: none; text-decoration: none;
} }
.welcome-panel .about-description { .welcome-panel-header a:focus,
font-size: 16px; .welcome-panel .welcome-panel-close:focus {
margin: 0; outline-color: currentColor;
outline-offset: 1px;
box-shadow: none;
}
.welcome-panel-header p {
margin: 0.5em 0 0;
font-size: 20px;
line-height: 1.4;
} }
.welcome-panel .welcome-panel-close { .welcome-panel .welcome-panel-close {
position: absolute; position: absolute;
top: 10px; top: 10px;
left: 10px; left: 10px;
padding: 10px 21px 10px 15px; padding: 10px 24px 10px 15px;
font-size: 13px; font-size: 13px;
line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */ line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */
text-decoration: none; text-decoration: none;
@ -168,8 +203,23 @@
top: 8px; top: 8px;
right: 0; right: 0;
transition: all .1s ease-in-out; transition: all .1s ease-in-out;
content: '\f335';
font-size: 24px;
color: #fff;
} }
.welcome-panel .welcome-panel-close {
color: #fff;
}
.welcome-panel .welcome-panel-close:hover,
.welcome-panel .welcome-panel-close:focus,
.welcome-panel .welcome-panel-close:hover::before,
.welcome-panel .welcome-panel-close:focus::before {
color: #f5e6ab;
}
/* @deprecated 5.9.0 -- Button removed from panel. */
.wp-core-ui .welcome-panel .button.button-hero { .wp-core-ui .welcome-panel .button.button-hero {
margin: 15px 0 3px 13px; margin: 15px 0 3px 13px;
padding: 12px 36px; padding: 12px 36px;
@ -179,54 +229,99 @@
} }
.welcome-panel-content { .welcome-panel-content {
margin-right: 13px; min-height: 400px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.welcome-panel-header {
box-sizing: border-box;
margin-right: auto;
margin-left: auto;
max-width: 1500px; max-width: 1500px;
width: 100%;
/* 408px = 300px (balloon width) + 96px (offset from edge) + 16px (spacing). */
padding: 48px 48px 48px 408px;
} }
.welcome-panel .welcome-panel-column-container { .welcome-panel .welcome-panel-column-container {
box-sizing: border-box;
width: 100%;
clear: both; clear: both;
position: relative; display: grid;
z-index: 1;
margin-top: 32px;
padding: 48px;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
align-self: flex-end;
background: #fff;
} }
.welcome-panel .welcome-panel-column { [class*="welcome-panel-icon"] {
width: 32%; height: 60px;
min-width: 200px; width: 60px;
float: right; background-color: #1d2327;
background-position: center;
background-size: 24px 24px;
background-repeat: no-repeat;
border-radius: 100%;
} }
.welcome-panel .welcome-panel-column:first-child { .welcome-panel-column {
width: 36%; display: grid;
grid-template-columns: min-content 1fr;
gap: 24px;
} }
.welcome-panel-column p.hide-if-no-customize { .welcome-panel-icon-pages {
margin-top: 10px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z' /%3E%3C/svg%3E");
} }
.welcome-panel-column p { .welcome-panel-icon-layout {
margin-top: 7px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z' /%3E%3C/svg%3E");
color: #3c434a;
} }
.welcome-panel-icon-styles {
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 4c-4.4 0-8 3.6-8 8v.1c0 4.1 3.2 7.5 7.2 7.9h.8c4.4 0 8-3.6 8-8s-3.6-8-8-8zm0 15V5c3.9 0 7 3.1 7 7s-3.1 7-7 7z' /%3E%3C/svg%3E");
}
/* @deprecated 5.9.0 -- Section removed from welcome panel. */
.welcome-panel .welcome-widgets-menus { .welcome-panel .welcome-widgets-menus {
line-height: 1.14285714; line-height: 1.14285714;
} }
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel .welcome-panel-column ul { .welcome-panel .welcome-panel-column ul {
margin: 0.8em 0 1em 1em; margin: 0.8em 0 1em 1em;
} }
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel li {
font-size: 14px;
}
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel li a {
text-decoration: none;
}
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel .welcome-panel-column li { .welcome-panel .welcome-panel-column li {
line-height: 1.14285714; line-height: 1.14285714;
list-style-type: none; list-style-type: none;
padding: 0 0 8px; padding: 0 0 8px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-icon { .welcome-panel .welcome-icon {
background: transparent !important; background: transparent !important;
} }
/* Welcome Panel and Right Now common Icons style */ /* Welcome Panel and Right Now common Icons style */
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-icon:before, .welcome-panel .welcome-icon:before,
#dashboard_right_now li a:before, #dashboard_right_now li a:before,
#dashboard_right_now li span:before, #dashboard_right_now li span:before,
@ -245,47 +340,56 @@
/* Welcome Panel specific Icons styles */ /* Welcome Panel specific Icons styles */
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-write-blog:before, .welcome-panel .welcome-write-blog:before,
.welcome-panel .welcome-edit-page:before { .welcome-panel .welcome-edit-page:before {
content: "\f119"; content: "\f119";
top: -3px; top: -3px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-add-page:before { .welcome-panel .welcome-add-page:before {
content: "\f132"; content: "\f132";
top: -1px; top: -1px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-setup-home:before { .welcome-panel .welcome-setup-home:before {
content: "\f102"; content: "\f102";
top: -1px; top: -1px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-view-site:before { .welcome-panel .welcome-view-site:before {
content: "\f115"; content: "\f115";
top: -2px; top: -2px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-widgets-menus:before { .welcome-panel .welcome-widgets-menus:before {
content: "\f116"; content: "\f116";
top: -2px; top: -2px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-widgets:before { .welcome-panel .welcome-widgets:before {
content: "\f538"; content: "\f538";
top: -2px; top: -2px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-menus:before { .welcome-panel .welcome-menus:before {
content: "\f163"; content: "\f163";
top: -2px; top: -2px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-comments:before { .welcome-panel .welcome-comments:before {
content: "\f117"; content: "\f117";
top: -1px; top: -1px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-learn-more:before { .welcome-panel .welcome-learn-more:before {
content: "\f118"; content: "\f118";
top: -1px; top: -1px;
@ -355,7 +459,7 @@
.community-events-errors [aria-hidden="true"], .community-events-errors [aria-hidden="true"],
.community-events-loading[aria-hidden="true"], .community-events-loading[aria-hidden="true"],
.community-events[aria-hidden="true"], .community-events[aria-hidden="true"],
.community-events [aria-hidden="true"] { .community-events form[aria-hidden="true"] {
display: none; display: none;
} }
@ -519,7 +623,7 @@ body #dashboard-widgets .postbox form .submit {
#dashboard_primary .rss-widget { #dashboard_primary .rss-widget {
font-size: 13px; font-size: 13px;
padding: 0 12px 0; padding: 0 12px;
} }
#dashboard_primary .rss-widget:last-child { #dashboard_primary .rss-widget:last-child {
@ -600,7 +704,7 @@ body #dashboard-widgets .postbox form .submit {
color: #50575e; color: #50575e;
background: #f6f7f7; background: #f6f7f7;
border-top: 1px solid #f0f0f1; border-top: 1px solid #f0f0f1;
padding: 10px 12px 6px 12px; padding: 10px 12px 6px;
} }
#dashboard_right_now .sub h3 { #dashboard_right_now .sub h3 {
@ -836,7 +940,7 @@ body #dashboard-widgets .postbox form .submit {
} }
#activity-widget #the-comment-list .comment-item p.row-actions { #activity-widget #the-comment-list .comment-item p.row-actions {
margin: 4px 0 0 0; margin: 4px 0 0;
} }
#activity-widget #the-comment-list .comment-item:first-child { #activity-widget #the-comment-list .comment-item:first-child {
@ -1103,6 +1207,18 @@ a.rsswidget {
/* =Media Queries /* =Media Queries
-------------------------------------------------------------- */ -------------------------------------------------------------- */
@media only screen and (min-width: 1600px) {
.welcome-panel .welcome-panel-column-container {
display: flex;
justify-content: center;
}
.welcome-panel-column {
width: 100%;
max-width: 460px;
}
}
/* one column on the dash */ /* one column on the dash */
@media only screen and (max-width: 799px) { @media only screen and (max-width: 799px) {
#wpbody-content #dashboard-widgets .postbox-container { #wpbody-content #dashboard-widgets .postbox-container {
@ -1214,25 +1330,69 @@ a.rsswidget {
} }
@media screen and (max-width: 870px) { @media screen and (max-width: 870px) {
.welcome-panel .welcome-panel-column, /* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel .welcome-panel-column:first-child {
display: block;
float: none;
width: 100%;
}
.welcome-panel .welcome-panel-column li { .welcome-panel .welcome-panel-column li {
display: inline-block; display: inline-block;
margin-left: 13px; margin-left: 13px;
} }
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel .welcome-panel-column ul { .welcome-panel .welcome-panel-column ul {
margin: 0.4em 0 0; margin: 0.4em 0 0;
} }
} }
@media screen and (max-width: 1180px) and (min-width: 783px) {
.welcome-panel-column {
grid-template-columns: 1fr;
}
[class*="welcome-panel-icon"] {
display: none;
}
}
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {
.welcome-panel::before {
width: 240px;
height: 305px;
left: 32px;
}
.welcome-panel-header {
/* 288px = 240px (balloon width) + 32px (offset from edge) + 16px (spacing). */
padding: 32px 32px 32px 288px;
}
.welcome-panel .welcome-panel-column-container {
grid-template-columns: 1fr;
box-sizing: border-box;
padding: 32px;
width: 100%;
}
.welcome-panel .welcome-panel-column-content {
max-width: 520px;
}
/* Keep the close icon from overlapping the Welcome text. */
.welcome-panel .welcome-panel-close {
overflow: hidden;
text-indent: 40px;
white-space: nowrap;
width: 20px;
height: 20px;
padding: 5px;
top: 5px;
left: 5px;
}
.welcome-panel .welcome-panel-close::before {
top: 5px;
right: -35px;
}
#dashboard-widgets h2 { #dashboard-widgets h2 {
padding: 12px; padding: 12px;
} }
@ -1275,23 +1435,28 @@ a.rsswidget {
/* Smartphone */ /* Smartphone */
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
/* Keep the close icon from overlapping the Welcome text. */ .welcome-panel::before {
.welcome-panel .welcome-panel-close { display: none;
overflow: hidden;
text-indent: 40px;
white-space: nowrap;
width: 20px;
height: 20px;
padding: 5px;
top: 5px;
left: 5px;
} }
/* Make the close icon larger for tappability. */ .welcome-panel-header {
.welcome-panel .welcome-panel-close:before { padding: 32px;
font-size: 20px; }
top: 5px; }
right: -35px;
@media screen and (max-width: 480px) {
.welcome-panel-column {
gap: 16px;
}
}
@media screen and (max-width: 360px) {
.welcome-panel-column {
grid-template-columns: 1fr;
}
[class*="welcome-panel-icon"] {
display: none;
} }
} }

File diff suppressed because one or more lines are too long

View File

@ -110,53 +110,88 @@
max-width: 100%; max-width: 100%;
} }
/* Screen meta exception for when the "Dashboard" heading is missing or located below the Welcome Panel. */
.index-php #screen-meta-links {
margin: 0 20px 8px 0;
}
/* Welcome Panel */ /* Welcome Panel */
.welcome-panel { .welcome-panel {
position: relative; position: relative;
overflow: auto; overflow: auto;
margin: 16px 0; margin: 16px 0;
padding: 23px 10px 0; background: #2271b1 url(../images/about-texture.png) center repeat;
border: 1px solid #c3c4c7; background-size: 500px 500px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background-blend-mode: overlay;
background: #fff; font-size: 14px;
font-size: 13px; line-height: 1.3;
line-height: 1.7; clear: both;
}
.welcome-panel::before {
content: "";
position: absolute;
top: -16px;
right: 96px;
z-index: 0;
width: 300px;
height: 382px;
background: url(../images/about-header-about.svg) no-repeat center;
background-size: contain;
} }
.welcome-panel h2 { .welcome-panel h2 {
margin: 0; margin: 0;
font-size: 21px; font-size: 48px;
font-weight: 400; font-weight: 600;
line-height: 1.2; line-height: 1.25;
color: #fff;
} }
.welcome-panel h3 { .welcome-panel h3 {
margin: 1.33em 0 0; margin: 0;
font-size: 16px; font-size: 20px;
} font-weight: 400;
line-height: 1.4;
.welcome-panel li {
font-size: 14px;
} }
.welcome-panel p { .welcome-panel p {
color: #646970; font-size: inherit;
line-height: inherit;
} }
.welcome-panel li a { .welcome-panel-header {
color: #fff;
}
.welcome-panel-header a {
color: #fff;
}
.welcome-panel-header a:focus,
.welcome-panel-header a:hover {
color: #f5e6ab;
text-decoration: none; text-decoration: none;
} }
.welcome-panel .about-description { .welcome-panel-header a:focus,
font-size: 16px; .welcome-panel .welcome-panel-close:focus {
margin: 0; outline-color: currentColor;
outline-offset: 1px;
box-shadow: none;
}
.welcome-panel-header p {
margin: 0.5em 0 0;
font-size: 20px;
line-height: 1.4;
} }
.welcome-panel .welcome-panel-close { .welcome-panel .welcome-panel-close {
position: absolute; position: absolute;
top: 10px; top: 10px;
right: 10px; right: 10px;
padding: 10px 15px 10px 21px; padding: 10px 15px 10px 24px;
font-size: 13px; font-size: 13px;
line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */ line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */
text-decoration: none; text-decoration: none;
@ -167,8 +202,23 @@
top: 8px; top: 8px;
left: 0; left: 0;
transition: all .1s ease-in-out; transition: all .1s ease-in-out;
content: '\f335';
font-size: 24px;
color: #fff;
} }
.welcome-panel .welcome-panel-close {
color: #fff;
}
.welcome-panel .welcome-panel-close:hover,
.welcome-panel .welcome-panel-close:focus,
.welcome-panel .welcome-panel-close:hover::before,
.welcome-panel .welcome-panel-close:focus::before {
color: #f5e6ab;
}
/* @deprecated 5.9.0 -- Button removed from panel. */
.wp-core-ui .welcome-panel .button.button-hero { .wp-core-ui .welcome-panel .button.button-hero {
margin: 15px 13px 3px 0; margin: 15px 13px 3px 0;
padding: 12px 36px; padding: 12px 36px;
@ -178,54 +228,99 @@
} }
.welcome-panel-content { .welcome-panel-content {
margin-left: 13px; min-height: 400px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.welcome-panel-header {
box-sizing: border-box;
margin-left: auto;
margin-right: auto;
max-width: 1500px; max-width: 1500px;
width: 100%;
/* 408px = 300px (balloon width) + 96px (offset from edge) + 16px (spacing). */
padding: 48px 408px 48px 48px;
} }
.welcome-panel .welcome-panel-column-container { .welcome-panel .welcome-panel-column-container {
box-sizing: border-box;
width: 100%;
clear: both; clear: both;
position: relative; display: grid;
z-index: 1;
margin-top: 32px;
padding: 48px;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
align-self: flex-end;
background: #fff;
} }
.welcome-panel .welcome-panel-column { [class*="welcome-panel-icon"] {
width: 32%; height: 60px;
min-width: 200px; width: 60px;
float: left; background-color: #1d2327;
background-position: center;
background-size: 24px 24px;
background-repeat: no-repeat;
border-radius: 100%;
} }
.welcome-panel .welcome-panel-column:first-child { .welcome-panel-column {
width: 36%; display: grid;
grid-template-columns: min-content 1fr;
gap: 24px;
} }
.welcome-panel-column p.hide-if-no-customize { .welcome-panel-icon-pages {
margin-top: 10px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z' /%3E%3C/svg%3E");
} }
.welcome-panel-column p { .welcome-panel-icon-layout {
margin-top: 7px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z' /%3E%3C/svg%3E");
color: #3c434a;
} }
.welcome-panel-icon-styles {
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 4c-4.4 0-8 3.6-8 8v.1c0 4.1 3.2 7.5 7.2 7.9h.8c4.4 0 8-3.6 8-8s-3.6-8-8-8zm0 15V5c3.9 0 7 3.1 7 7s-3.1 7-7 7z' /%3E%3C/svg%3E");
}
/* @deprecated 5.9.0 -- Section removed from welcome panel. */
.welcome-panel .welcome-widgets-menus { .welcome-panel .welcome-widgets-menus {
line-height: 1.14285714; line-height: 1.14285714;
} }
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel .welcome-panel-column ul { .welcome-panel .welcome-panel-column ul {
margin: 0.8em 1em 1em 0; margin: 0.8em 1em 1em 0;
} }
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel li {
font-size: 14px;
}
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel li a {
text-decoration: none;
}
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel .welcome-panel-column li { .welcome-panel .welcome-panel-column li {
line-height: 1.14285714; line-height: 1.14285714;
list-style-type: none; list-style-type: none;
padding: 0 0 8px; padding: 0 0 8px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-icon { .welcome-panel .welcome-icon {
background: transparent !important; background: transparent !important;
} }
/* Welcome Panel and Right Now common Icons style */ /* Welcome Panel and Right Now common Icons style */
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-icon:before, .welcome-panel .welcome-icon:before,
#dashboard_right_now li a:before, #dashboard_right_now li a:before,
#dashboard_right_now li span:before, #dashboard_right_now li span:before,
@ -244,47 +339,56 @@
/* Welcome Panel specific Icons styles */ /* Welcome Panel specific Icons styles */
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-write-blog:before, .welcome-panel .welcome-write-blog:before,
.welcome-panel .welcome-edit-page:before { .welcome-panel .welcome-edit-page:before {
content: "\f119"; content: "\f119";
top: -3px; top: -3px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-add-page:before { .welcome-panel .welcome-add-page:before {
content: "\f132"; content: "\f132";
top: -1px; top: -1px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-setup-home:before { .welcome-panel .welcome-setup-home:before {
content: "\f102"; content: "\f102";
top: -1px; top: -1px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-view-site:before { .welcome-panel .welcome-view-site:before {
content: "\f115"; content: "\f115";
top: -2px; top: -2px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-widgets-menus:before { .welcome-panel .welcome-widgets-menus:before {
content: "\f116"; content: "\f116";
top: -2px; top: -2px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-widgets:before { .welcome-panel .welcome-widgets:before {
content: "\f538"; content: "\f538";
top: -2px; top: -2px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-menus:before { .welcome-panel .welcome-menus:before {
content: "\f163"; content: "\f163";
top: -2px; top: -2px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-comments:before { .welcome-panel .welcome-comments:before {
content: "\f117"; content: "\f117";
top: -1px; top: -1px;
} }
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-learn-more:before { .welcome-panel .welcome-learn-more:before {
content: "\f118"; content: "\f118";
top: -1px; top: -1px;
@ -354,7 +458,7 @@
.community-events-errors [aria-hidden="true"], .community-events-errors [aria-hidden="true"],
.community-events-loading[aria-hidden="true"], .community-events-loading[aria-hidden="true"],
.community-events[aria-hidden="true"], .community-events[aria-hidden="true"],
.community-events [aria-hidden="true"] { .community-events form[aria-hidden="true"] {
display: none; display: none;
} }
@ -518,7 +622,7 @@ body #dashboard-widgets .postbox form .submit {
#dashboard_primary .rss-widget { #dashboard_primary .rss-widget {
font-size: 13px; font-size: 13px;
padding: 0 12px 0; padding: 0 12px;
} }
#dashboard_primary .rss-widget:last-child { #dashboard_primary .rss-widget:last-child {
@ -599,7 +703,7 @@ body #dashboard-widgets .postbox form .submit {
color: #50575e; color: #50575e;
background: #f6f7f7; background: #f6f7f7;
border-top: 1px solid #f0f0f1; border-top: 1px solid #f0f0f1;
padding: 10px 12px 6px 12px; padding: 10px 12px 6px;
} }
#dashboard_right_now .sub h3 { #dashboard_right_now .sub h3 {
@ -835,7 +939,7 @@ body #dashboard-widgets .postbox form .submit {
} }
#activity-widget #the-comment-list .comment-item p.row-actions { #activity-widget #the-comment-list .comment-item p.row-actions {
margin: 4px 0 0 0; margin: 4px 0 0;
} }
#activity-widget #the-comment-list .comment-item:first-child { #activity-widget #the-comment-list .comment-item:first-child {
@ -1102,6 +1206,18 @@ a.rsswidget {
/* =Media Queries /* =Media Queries
-------------------------------------------------------------- */ -------------------------------------------------------------- */
@media only screen and (min-width: 1600px) {
.welcome-panel .welcome-panel-column-container {
display: flex;
justify-content: center;
}
.welcome-panel-column {
width: 100%;
max-width: 460px;
}
}
/* one column on the dash */ /* one column on the dash */
@media only screen and (max-width: 799px) { @media only screen and (max-width: 799px) {
#wpbody-content #dashboard-widgets .postbox-container { #wpbody-content #dashboard-widgets .postbox-container {
@ -1213,25 +1329,69 @@ a.rsswidget {
} }
@media screen and (max-width: 870px) { @media screen and (max-width: 870px) {
.welcome-panel .welcome-panel-column, /* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel .welcome-panel-column:first-child {
display: block;
float: none;
width: 100%;
}
.welcome-panel .welcome-panel-column li { .welcome-panel .welcome-panel-column li {
display: inline-block; display: inline-block;
margin-right: 13px; margin-right: 13px;
} }
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
.welcome-panel .welcome-panel-column ul { .welcome-panel .welcome-panel-column ul {
margin: 0.4em 0 0; margin: 0.4em 0 0;
} }
} }
@media screen and (max-width: 1180px) and (min-width: 783px) {
.welcome-panel-column {
grid-template-columns: 1fr;
}
[class*="welcome-panel-icon"] {
display: none;
}
}
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {
.welcome-panel::before {
width: 240px;
height: 305px;
right: 32px;
}
.welcome-panel-header {
/* 288px = 240px (balloon width) + 32px (offset from edge) + 16px (spacing). */
padding: 32px 288px 32px 32px;
}
.welcome-panel .welcome-panel-column-container {
grid-template-columns: 1fr;
box-sizing: border-box;
padding: 32px;
width: 100%;
}
.welcome-panel .welcome-panel-column-content {
max-width: 520px;
}
/* Keep the close icon from overlapping the Welcome text. */
.welcome-panel .welcome-panel-close {
overflow: hidden;
text-indent: 40px;
white-space: nowrap;
width: 20px;
height: 20px;
padding: 5px;
top: 5px;
right: 5px;
}
.welcome-panel .welcome-panel-close::before {
top: 5px;
left: -35px;
}
#dashboard-widgets h2 { #dashboard-widgets h2 {
padding: 12px; padding: 12px;
} }
@ -1274,23 +1434,28 @@ a.rsswidget {
/* Smartphone */ /* Smartphone */
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
/* Keep the close icon from overlapping the Welcome text. */ .welcome-panel::before {
.welcome-panel .welcome-panel-close { display: none;
overflow: hidden;
text-indent: 40px;
white-space: nowrap;
width: 20px;
height: 20px;
padding: 5px;
top: 5px;
right: 5px;
} }
/* Make the close icon larger for tappability. */ .welcome-panel-header {
.welcome-panel .welcome-panel-close:before { padding: 32px;
font-size: 20px; }
top: 5px; }
left: -35px;
@media screen and (max-width: 480px) {
.welcome-panel-column {
gap: 16px;
}
}
@media screen and (max-width: 360px) {
.welcome-panel-column {
grid-template-columns: 1fr;
}
[class*="welcome-panel-icon"] {
display: none;
} }
} }

File diff suppressed because one or more lines are too long

View File

@ -101,7 +101,7 @@ th {
width: 100%; width: 100%;
border: none; border: none;
text-align: justify; text-align: justify;
margin: 0 0 1em 0; margin: 0 0 1em;
padding: 0; padding: 0;
} }

File diff suppressed because one or more lines are too long

View File

@ -100,7 +100,7 @@ th {
width: 100%; width: 100%;
border: none; border: none;
text-align: justify; text-align: justify;
margin: 0 0 1em 0; margin: 0 0 1em;
padding: 0; padding: 0;
} }

File diff suppressed because one or more lines are too long

View File

@ -147,6 +147,11 @@ body.post-new-php .submitbox .submitdelete {
margin-top: 3px; margin-top: 3px;
} }
body.post-type-wp_navigation div#minor-publishing,
body.post-type-wp_navigation .inline-edit-status {
display: none;
}
/* Post Screen */ /* Post Screen */
/* Only highlight drop zones when dragging and only in the 2 columns layout. */ /* Only highlight drop zones when dragging and only in the 2 columns layout. */
@ -451,7 +456,7 @@ form#tags-filter {
} }
.curtime #timestamp { .curtime #timestamp {
padding: 2px 0 1px 0; padding: 2px 0 1px;
display: inline !important; display: inline !important;
height: auto !important; height: auto !important;
} }
@ -651,7 +656,7 @@ form#tags-filter {
} }
#poststuff .inside { #poststuff .inside {
margin: 6px 0 0 0; margin: 6px 0 0;
} }
.link-php #poststuff .inside, .link-php #poststuff .inside,
@ -722,7 +727,7 @@ form#tags-filter {
font-weight: 600; font-weight: 600;
margin: 0 0.8rem 1rem; margin: 0 0.8rem 1rem;
font-size: 23px; font-size: 23px;
padding: 9px 0 4px 0; padding: 9px 0 4px;
line-height: 1.3; line-height: 1.3;
} }
@ -1364,7 +1369,7 @@ p.description code {
} }
#poststuff .tagsdiv .howto { #poststuff .tagsdiv .howto {
margin: 1em 0 6px 0; margin: 1em 0 6px;
} }
.ajaxtag .newtag { .ajaxtag .newtag {
@ -1773,7 +1778,7 @@ table.links-table {
} }
#titlediv #title-prompt-text { #titlediv #title-prompt-text {
padding: 10px 10px; padding: 10px;
} }
#poststuff .stuffbox .inside { #poststuff .stuffbox .inside {
@ -1956,7 +1961,7 @@ table.links-table {
} }
.misc-pub-section { .misc-pub-section {
padding: 20px 10px 20px; padding: 20px 10px;
} }
.misc-pub-section > a { .misc-pub-section > a {

File diff suppressed because one or more lines are too long

View File

@ -146,6 +146,11 @@ body.post-new-php .submitbox .submitdelete {
margin-top: 3px; margin-top: 3px;
} }
body.post-type-wp_navigation div#minor-publishing,
body.post-type-wp_navigation .inline-edit-status {
display: none;
}
/* Post Screen */ /* Post Screen */
/* Only highlight drop zones when dragging and only in the 2 columns layout. */ /* Only highlight drop zones when dragging and only in the 2 columns layout. */
@ -450,7 +455,7 @@ form#tags-filter {
} }
.curtime #timestamp { .curtime #timestamp {
padding: 2px 0 1px 0; padding: 2px 0 1px;
display: inline !important; display: inline !important;
height: auto !important; height: auto !important;
} }
@ -650,7 +655,7 @@ form#tags-filter {
} }
#poststuff .inside { #poststuff .inside {
margin: 6px 0 0 0; margin: 6px 0 0;
} }
.link-php #poststuff .inside, .link-php #poststuff .inside,
@ -721,7 +726,7 @@ form#tags-filter {
font-weight: 600; font-weight: 600;
margin: 0 0.8rem 1rem; margin: 0 0.8rem 1rem;
font-size: 23px; font-size: 23px;
padding: 9px 0 4px 0; padding: 9px 0 4px;
line-height: 1.3; line-height: 1.3;
} }
@ -1363,7 +1368,7 @@ p.description code {
} }
#poststuff .tagsdiv .howto { #poststuff .tagsdiv .howto {
margin: 1em 0 6px 0; margin: 1em 0 6px;
} }
.ajaxtag .newtag { .ajaxtag .newtag {
@ -1772,7 +1777,7 @@ table.links-table {
} }
#titlediv #title-prompt-text { #titlediv #title-prompt-text {
padding: 10px 10px; padding: 10px;
} }
#poststuff .stuffbox .inside { #poststuff .stuffbox .inside {
@ -1955,7 +1960,7 @@ table.links-table {
} }
.misc-pub-section { .misc-pub-section {
padding: 20px 10px 20px; padding: 20px 10px;
} }
.misc-pub-section > a { .misc-pub-section > a {

File diff suppressed because one or more lines are too long

View File

@ -33,7 +33,7 @@ select {
} }
textarea.code { textarea.code {
padding: 4px 6px 1px 6px; padding: 4px 6px 1px;
} }
input[type="text"], input[type="text"],
@ -1000,8 +1000,8 @@ table.form-table td .updated p {
.pressthis-bookmarklet span { .pressthis-bookmarklet span {
display: inline-block; display: inline-block;
margin: 0px 0 0; margin: 0;
padding: 0px 9px 8px 12px; padding: 0 9px 8px 12px;
} }
.pressthis-bookmarklet span:before { .pressthis-bookmarklet span:before {
@ -1226,7 +1226,7 @@ table.form-table td .updated p {
} }
.request-filesystem-credentials-form .notice { .request-filesystem-credentials-form .notice {
margin: 0 0 20px 0; margin: 0 0 20px;
clear: both; clear: both;
} }
@ -1237,11 +1237,14 @@ table.form-table td .updated p {
margin-bottom: 1.3em; margin-bottom: 1.3em;
} }
.tools-privacy-policy-page input.button, .tools-privacy-policy-page input.button {
.tools-privacy-policy-page select {
margin: 0 6px 0 1px; margin: 0 6px 0 1px;
} }
.tools-privacy-policy-page select {
margin: 0 6px 0.5em 1px;
}
.tools-privacy-edit { .tools-privacy-edit {
margin: 1.5em 0; margin: 1.5em 0;
} }
@ -1560,13 +1563,13 @@ table.form-table td .updated p {
} }
.form-table th { .form-table th {
padding: 10px 0 0 0; padding: 10px 0 0;
border-bottom: 0; border-bottom: 0;
} }
.form-table td { .form-table td {
margin-bottom: 0; margin-bottom: 0;
padding: 4px 0 6px 0; padding: 4px 0 6px;
} }
.form-table.permalink-structure td code { .form-table.permalink-structure td code {

File diff suppressed because one or more lines are too long

View File

@ -32,7 +32,7 @@ select {
} }
textarea.code { textarea.code {
padding: 4px 6px 1px 6px; padding: 4px 6px 1px;
} }
input[type="text"], input[type="text"],
@ -999,8 +999,8 @@ table.form-table td .updated p {
.pressthis-bookmarklet span { .pressthis-bookmarklet span {
display: inline-block; display: inline-block;
margin: 0px 0 0; margin: 0;
padding: 0px 12px 8px 9px; padding: 0 12px 8px 9px;
} }
.pressthis-bookmarklet span:before { .pressthis-bookmarklet span:before {
@ -1225,7 +1225,7 @@ table.form-table td .updated p {
} }
.request-filesystem-credentials-form .notice { .request-filesystem-credentials-form .notice {
margin: 0 0 20px 0; margin: 0 0 20px;
clear: both; clear: both;
} }
@ -1236,11 +1236,14 @@ table.form-table td .updated p {
margin-bottom: 1.3em; margin-bottom: 1.3em;
} }
.tools-privacy-policy-page input.button, .tools-privacy-policy-page input.button {
.tools-privacy-policy-page select {
margin: 0 1px 0 6px; margin: 0 1px 0 6px;
} }
.tools-privacy-policy-page select {
margin: 0 1px 0.5em 6px;
}
.tools-privacy-edit { .tools-privacy-edit {
margin: 1.5em 0; margin: 1.5em 0;
} }
@ -1559,13 +1562,13 @@ table.form-table td .updated p {
} }
.form-table th { .form-table th {
padding: 10px 0 0 0; padding: 10px 0 0;
border-bottom: 0; border-bottom: 0;
} }
.form-table td { .form-table td {
margin-bottom: 0; margin-bottom: 0;
padding: 4px 0 6px 0; padding: 4px 0 6px;
} }
.form-table.permalink-structure td code { .form-table.permalink-structure td code {

File diff suppressed because one or more lines are too long

View File

@ -10,7 +10,7 @@ body {
color: #3c434a; color: #3c434a;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin: 140px auto 25px; margin: 140px auto 25px;
padding: 20px 20px 10px 20px; padding: 20px 20px 10px;
max-width: 700px; max-width: 700px;
-webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: subpixel-antialiased;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
@ -79,7 +79,7 @@ label {
#logo { #logo {
margin: -130px auto 25px; margin: -130px auto 25px;
padding: 0 0 25px 0; padding: 0 0 25px;
width: 84px; width: 84px;
height: 84px; height: 84px;
overflow: hidden; overflow: hidden;
@ -142,7 +142,7 @@ textarea {
} }
.form-table p { .form-table p {
margin: 4px 0 0 0; margin: 4px 0 0;
font-size: 11px; font-size: 11px;
} }

View File

@ -1,2 +1,2 @@
/*! This file is auto-generated */ /*! This file is auto-generated */
html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px 20px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:#2271b1}a:active,a:hover{color:#135e96}a:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 22px 5px 5px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}label{cursor:pointer}#logo{margin:-130px auto 25px;padding:0 0 25px 0;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:right;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 0 10px 20px;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:right;padding:10px 0 10px 20px;width:140px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0 0;font-size:11px}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:218px}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 0 16px 20px}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-right:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}.wp-pwd #pass1{padding-left:50px}.wp-pwd .button.wp-hide-pw{left:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:#0a4b78}.language-chooser .step{text-align:left}.screen-reader-input,.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-left:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}} html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:#2271b1}a:active,a:hover{color:#135e96}a:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 22px 5px 5px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}label{cursor:pointer}#logo{margin:-130px auto 25px;padding:0 0 25px;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:right;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 0 10px 20px;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:right;padding:10px 0 10px 20px;width:140px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0;font-size:11px}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:218px}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 0 16px 20px}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-right:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}.wp-pwd #pass1{padding-left:50px}.wp-pwd .button.wp-hide-pw{left:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:#0a4b78}.language-chooser .step{text-align:left}.screen-reader-input,.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-left:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}}

View File

@ -9,7 +9,7 @@ body {
color: #3c434a; color: #3c434a;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin: 140px auto 25px; margin: 140px auto 25px;
padding: 20px 20px 10px 20px; padding: 20px 20px 10px;
max-width: 700px; max-width: 700px;
-webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: subpixel-antialiased;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
@ -78,7 +78,7 @@ label {
#logo { #logo {
margin: -130px auto 25px; margin: -130px auto 25px;
padding: 0 0 25px 0; padding: 0 0 25px;
width: 84px; width: 84px;
height: 84px; height: 84px;
overflow: hidden; overflow: hidden;
@ -141,7 +141,7 @@ textarea {
} }
.form-table p { .form-table p {
margin: 4px 0 0 0; margin: 4px 0 0;
font-size: 11px; font-size: 11px;
} }

View File

@ -1,2 +1,2 @@
/*! This file is auto-generated */ /*! This file is auto-generated */
html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px 20px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:#2271b1}a:active,a:hover{color:#135e96}a:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 5px 5px 22px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}label{cursor:pointer}#logo{margin:-130px auto 25px;padding:0 0 25px 0;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:left;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 20px 10px 0;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:left;padding:10px 20px 10px 0;width:140px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0 0;font-size:11px}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:218px}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 20px 16px 0}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-left:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}.wp-pwd #pass1{padding-right:50px}.wp-pwd .button.wp-hide-pw{right:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:#0a4b78}.language-chooser .step{text-align:right}.screen-reader-input,.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-right:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}} html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:#2271b1}a:active,a:hover{color:#135e96}a:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 5px 5px 22px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}label{cursor:pointer}#logo{margin:-130px auto 25px;padding:0 0 25px;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:left;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 20px 10px 0;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:left;padding:10px 20px 10px 0;width:140px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0;font-size:11px}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:218px}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 20px 16px 0}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-left:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}.wp-pwd #pass1{padding-right:50px}.wp-pwd .button.wp-hide-pw{right:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:#0a4b78}.language-chooser .step{text-align:right}.screen-reader-input,.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-right:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}}

View File

@ -798,7 +798,7 @@ p.pagenav {
} }
.row-actions { .row-actions {
color: #dcdcde; color: #a7aaad;
font-size: 13px; font-size: 13px;
padding: 2px 0 0; padding: 2px 0 0;
position: relative; position: relative;
@ -1255,6 +1255,11 @@ ul.cat-checklist {
padding: 0 0 5px; padding: 0 0 5px;
} }
.plugins .row-actions {
white-space: normal;
min-width: 12em;
}
.plugins .update .second, .plugins .update .second,
.plugins .update .row-actions, .plugins .update .row-actions,
.plugins .updated .second, .plugins .updated .second,
@ -1553,7 +1558,7 @@ div.action-links,
} }
.plugin-card .notice { .plugin-card .notice {
margin: 20px 20px 0 20px; margin: 20px 20px 0;
} }
.plugin-icon { .plugin-icon {
@ -1644,7 +1649,7 @@ div.action-links,
} }
.tablenav.top { .tablenav.top {
margin: 20px 0 5px 0; margin: 20px 0 5px;
} }
.tablenav.bottom { .tablenav.bottom {

File diff suppressed because one or more lines are too long

View File

@ -797,7 +797,7 @@ p.pagenav {
} }
.row-actions { .row-actions {
color: #dcdcde; color: #a7aaad;
font-size: 13px; font-size: 13px;
padding: 2px 0 0; padding: 2px 0 0;
position: relative; position: relative;
@ -1254,6 +1254,11 @@ ul.cat-checklist {
padding: 0 0 5px; padding: 0 0 5px;
} }
.plugins .row-actions {
white-space: normal;
min-width: 12em;
}
.plugins .update .second, .plugins .update .second,
.plugins .update .row-actions, .plugins .update .row-actions,
.plugins .updated .second, .plugins .updated .second,
@ -1552,7 +1557,7 @@ div.action-links,
} }
.plugin-card .notice { .plugin-card .notice {
margin: 20px 20px 0 20px; margin: 20px 20px 0;
} }
.plugin-icon { .plugin-icon {
@ -1643,7 +1648,7 @@ div.action-links,
} }
.tablenav.top { .tablenav.top {
margin: 20px 0 5px 0; margin: 20px 0 5px;
} }
.tablenav.bottom { .tablenav.bottom {

File diff suppressed because one or more lines are too long

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