Compare commits
30 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
058f990367 | ||
|
|
9072030480 | ||
|
|
c63ebe7525 | ||
|
|
6137b9efe0 | ||
|
|
a9d4c88ff1 | ||
|
|
95694600e8 | ||
|
|
5737a63b49 | ||
|
|
c696886f57 | ||
|
|
7bb43234fb | ||
|
|
eed48e29b8 | ||
|
|
8538424c7f | ||
|
|
ad6d163cfa | ||
|
|
8d05380afc | ||
|
|
cd0cb23aca | ||
|
|
0447adfdbf | ||
|
|
64d9828155 | ||
|
|
b5e412fc3e | ||
|
|
41f4aae738 | ||
|
|
1adcc5bb83 | ||
|
|
b18d2e5fda | ||
|
|
e0058af83d | ||
|
|
11ce2fe256 | ||
|
|
9588f78d86 | ||
|
|
23f58f8af4 | ||
|
|
b997fb4eac | ||
|
|
fea7422a14 | ||
|
|
6072eb4497 | ||
|
|
a531b8f403 | ||
|
|
6d6beaec8c | ||
|
|
932518e519 |
@@ -1,6 +1,6 @@
|
||||
WordPress - Web publishing software
|
||||
|
||||
Copyright 2011-2022 by the contributors
|
||||
Copyright 2011-2021 by the contributors
|
||||
|
||||
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
|
||||
|
||||
10
readme.html
10
readme.html
@@ -51,14 +51,14 @@
|
||||
|
||||
<h2>System Requirements</h2>
|
||||
<ul>
|
||||
<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 greater.</li>
|
||||
<li><a href="https://secure.php.net/">PHP</a> version <strong>5.6.20</strong> or higher.</li>
|
||||
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li>
|
||||
</ul>
|
||||
|
||||
<h3>Recommendations</h3>
|
||||
<ul>
|
||||
<li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li>
|
||||
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.7</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.2</strong> or greater.</li>
|
||||
<li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or higher.</li>
|
||||
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.6</strong> or higher.</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 link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li>
|
||||
@@ -76,7 +76,7 @@
|
||||
<dt><a href="https://wordpress.org/support/forums/">WordPress Support Forums</a></dt>
|
||||
<dd>If you’ve looked everywhere and still can’t find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="https://make.wordpress.org/support/handbook/appendix/other-support-locations/introduction-to-irc/">WordPress <abbr>IRC</abbr> (Internet Relay Chat) Channel</a></dt>
|
||||
<dd>There is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="https://web.libera.chat/#wordpress">irc.libera.chat #wordpress</a>)</dd>
|
||||
<dd>There is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h2>Final Notes</h2>
|
||||
|
||||
@@ -9,7 +9,9 @@
|
||||
/** WordPress Administration Bootstrap */
|
||||
require_once __DIR__ . '/admin.php';
|
||||
|
||||
// Used in the HTML title tag.
|
||||
wp_enqueue_script( 'wp-components' );
|
||||
wp_enqueue_style( 'wp-components' );
|
||||
|
||||
/* translators: Page title of the About WordPress page in the admin. */
|
||||
$title = _x( 'About', 'page title' );
|
||||
|
||||
@@ -20,15 +22,19 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
<div class="wrap about__container">
|
||||
|
||||
<div class="about__header">
|
||||
<div class="about__header-image">
|
||||
<img alt="<?php _e( 'Code is Poetry' ); ?>" src="images/about-badge.svg" />
|
||||
</div>
|
||||
|
||||
<div class="about__header-title">
|
||||
<h1>
|
||||
<p>
|
||||
<?php _e( 'WordPress' ); ?>
|
||||
<span class="screen-reader-text"><?php echo $display_version; ?></span>
|
||||
</h1>
|
||||
<?php echo $display_version; ?>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="about__header-text">
|
||||
<?php _e( 'Build the site you’ve always wanted — with blocks' ); ?>
|
||||
<?php _e( 'Jazz up your stories in an editor that’s cleaner, crisper, and does more to get out of your way.' ); ?>
|
||||
</div>
|
||||
|
||||
<nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
|
||||
@@ -39,168 +45,20 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="about__section changelog">
|
||||
<div class="about__section is-feature has-subtle-background-color">
|
||||
<div class="column">
|
||||
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
|
||||
<h1 class="is-smaller-heading">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: The current WordPress version number. */
|
||||
__( 'Step into WordPress %s.' ),
|
||||
$display_version
|
||||
);
|
||||
?>
|
||||
</h1>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */
|
||||
_n(
|
||||
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
|
||||
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',
|
||||
1
|
||||
),
|
||||
'5.9.7',
|
||||
'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.7' )
|
||||
)
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: WordPress version number. */
|
||||
__( '<strong>Version %s</strong> addressed some security issues.' ),
|
||||
'5.9.6'
|
||||
);
|
||||
?>
|
||||
<?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.6' )
|
||||
)
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: WordPress version number. */
|
||||
__( '<strong>Version %s</strong> addressed some security issues.' ),
|
||||
'5.9.5'
|
||||
);
|
||||
?>
|
||||
<?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.5' )
|
||||
)
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: WordPress version number. */
|
||||
__( '<strong>Version %s</strong> addressed some security issues.' ),
|
||||
'5.9.4'
|
||||
);
|
||||
?>
|
||||
<?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.4' )
|
||||
)
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: WordPress version number, 2: plural number of bugs. */
|
||||
_n(
|
||||
'<strong>Version %1$s</strong> addressed %2$s bug.',
|
||||
'<strong>Version %1$s</strong> addressed %2$s bugs.',
|
||||
19
|
||||
),
|
||||
'5.9.3',
|
||||
number_format_i18n( 19 )
|
||||
);
|
||||
?>
|
||||
<?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.3' )
|
||||
)
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */
|
||||
_n(
|
||||
'<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>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: WordPress version number, 2: plural number of bugs. */
|
||||
_n(
|
||||
'<strong>Version %1$s</strong> addressed %2$s bug.',
|
||||
'<strong>Version %1$s</strong> addressed %2$s bugs.',
|
||||
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' )
|
||||
)
|
||||
);
|
||||
_e( 'With this new version, WordPress brings you fresh colors. The editor helps you work in a few places you couldn’t before—at least, not without getting into code or hiring a pro. The controls you use most, like changing font sizes, are in more places—right where you need them. And layout changes that should be simple, like full-height images, are even simpler to make.' );
|
||||
?>
|
||||
</p>
|
||||
</div>
|
||||
@@ -208,244 +66,148 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
|
||||
<hr class="is-large" />
|
||||
|
||||
<div class="about__section">
|
||||
<h2 class="aligncenter">
|
||||
<?php _e( 'Full Site Editing is here' ); ?>
|
||||
<div class="about__section has-2-columns">
|
||||
<h2 class="is-section-header is-smaller-heading">
|
||||
<?php _e( 'Now the editor is easier to use' ); ?>
|
||||
</h2>
|
||||
<p class="aligncenter is-subheading">
|
||||
<?php _e( 'It puts you in control of your whole site, right in the WordPress Admin.' ); ?>
|
||||
</p>
|
||||
<div class="column">
|
||||
<p>
|
||||
<?php
|
||||
_e( '<strong>Font-size adjustment in more places:</strong> now, font-size controls are right where you need them in the List and Code blocks. No more trekking to another screen to make that single change!' );
|
||||
?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
_e( '<strong>Reusable blocks:</strong> several enhancements make reusable blocks more stable and easier to use. And now they save automatically with the post when you click the Update button.' );
|
||||
?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
_e( '<strong>Inserter drag-and-drop:</strong> drag blocks and block patterns from the inserter right into your post.' );
|
||||
?>
|
||||
</p>
|
||||
</div>
|
||||
<div class="column about__image">
|
||||
<video controls>
|
||||
<source src="https://s.w.org/images/core/5.7/about-57-drag-drop-image.mp4" type="video/mp4" />
|
||||
<source src="https://s.w.org/images/core/5.7/about-57-drag-drop-image.mp4" type="video/webm" />
|
||||
</video>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="about__section has-2-columns">
|
||||
<h2 class="is-section-header is-smaller-heading">
|
||||
<?php _e( 'You can do more without writing custom code' ); ?>
|
||||
</h2>
|
||||
<div class="column">
|
||||
<p>
|
||||
<?php
|
||||
_e( '<strong>Full-height alignment:</strong> have you ever wanted to make a block, like the Cover block, fill the whole window? Now you can.' );
|
||||
?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
_e( '<strong>Buttons block:</strong> now you can choose a vertical or a horizontal layout. And you can set the width of a button to a preset percentage.' );
|
||||
?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
_e( '<strong>Social Icons block:</strong> now you can change the size of the icons.' );
|
||||
?>
|
||||
</p>
|
||||
</div>
|
||||
<div class="column about__image">
|
||||
<img src="https://s.w.org/images/core/5.7/about-57-cover.jpg" alt="" />
|
||||
</div>
|
||||
</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/twenty-twenty-two.png" alt="" />
|
||||
<div class="about__section has-subtle-background-color">
|
||||
<div class="column">
|
||||
<h2 class="is-smaller-heading"><?php _e( 'A Simpler Default Color Palette' ); ?></h2>
|
||||
</div>
|
||||
<div class="column is-edge-to-edge">
|
||||
<h3>
|
||||
<?php _e( 'Say hello to Twenty Twenty‑Two' ); ?>
|
||||
</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’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 — all together, in the site editing interface. By making changes in one place, you can give Twenty Twenty‑Two the same look and feel as your brand or other websites — or take your site’s look in another direction.' ); ?>
|
||||
</p>
|
||||
<?php if ( current_user_can( 'switch_themes' ) ) : ?>
|
||||
</div>
|
||||
|
||||
<div class="about__section has-subtle-background-color">
|
||||
<figure class="column about__image" id="about-image-comparison">
|
||||
<div class="about__image-comparison no-js">
|
||||
<img src="https://s.w.org/images/core/5.7/about-57-color-old.png" alt="<?php esc_attr_e( 'Dashboard with old color scheme.' ); ?>" />
|
||||
<div class="about__image-comparison-resize">
|
||||
<img src="https://s.w.org/images/core/5.7/about-57-color-new.png" alt="<?php esc_attr_e( 'Dashboard with new color scheme.' ); ?>" />
|
||||
</div>
|
||||
</div>
|
||||
<figcaption><?php _e( 'Above, the Dashboard before and after the color update in 5.7.' ); ?></figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<div class="about__section has-2-columns has-subtle-background-color">
|
||||
<div class="column">
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: Link to Themes screen. */
|
||||
__( 'The Twenty Twenty‑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' )
|
||||
/* translators: %s: WCAG information link. */
|
||||
__( 'This new streamlined color palette collapses all the colors that used to be in the WordPress source code down to seven core colors and a range of 56 shades that meet the <a href="%s">WCAG 2.0 AA recommended contrast ratio</a> against white or black.' ),
|
||||
'https://www.w3.org/WAI/WCAG2AAA-Conformance'
|
||||
);
|
||||
?>
|
||||
</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‑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‑Two, you build your site’s look and feel there, with the tools you need for the job in a fluid interface that practically comes alive in your hands.' ); ?>
|
||||
<?php
|
||||
_e( 'The colors are perceptually uniform from light to dark in each range, which means they start at white and get darker by the same amount with each step.' );
|
||||
?>
|
||||
</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>
|
||||
<div class="column">
|
||||
<p>
|
||||
<?php _e( 'Blocks come to site navigation, the heart of user experience.' ); ?>
|
||||
<?php
|
||||
_e( 'Half the range has a 4.5 or higher contrast ratio against black, and the other half maintains the same contrast against white.' );
|
||||
?>
|
||||
</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’s screen size. Whatever you create, know it’s there to reuse wherever you like, whether in a brand new template or after switching themes.' ); ?>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: Color palette dev note link. */
|
||||
__( 'Find the new palette in the default WordPress Dashboard color scheme, and use it when you’re building themes, plugins, or any other components. For all the details, <a href="%s">check out the Color Palette dev note</a>.' ),
|
||||
'https://make.wordpress.org/core/2021/02/23/standardization-of-wp-admin-colors-in-wordpress-5-7'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="is-large" />
|
||||
|
||||
<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 class="about__section has-subtle-background-color">
|
||||
<div class="column about__image">
|
||||
<picture>
|
||||
<source media="(max-width: 600px)" srcset="images/about-color-palette-vert.svg" />
|
||||
<img alt="" src="images/about-color-palette.svg" />
|
||||
</picture>
|
||||
</div>
|
||||
</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>
|
||||
<?php _e( 'Better block controls' ); ?>
|
||||
</h3>
|
||||
<p>
|
||||
<?php _e( 'WordPress 5.9 features new typography tools, flexible layout controls, and finer control over details like spacing, borders, and more — to help you get not just the look, but the polish that says you care about details.' ); ?>
|
||||
</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( 'The power of patterns' ); ?>
|
||||
</h3>
|
||||
<p>
|
||||
<?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.' ); ?>
|
||||
</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 — 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>
|
||||
|
||||
<hr class="is-large" />
|
||||
|
||||
<div class="about__section">
|
||||
<h2 class="aligncenter" style="margin-bottom:0;">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: Version number. */
|
||||
__( 'WordPress %s for developers' ),
|
||||
$display_version
|
||||
);
|
||||
?>
|
||||
</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>
|
||||
<div class="about__section has-2-columns">
|
||||
<div class="column">
|
||||
<h3><?php _e( 'From HTTP to HTTPS in a single click' ); ?></h3>
|
||||
<p><?php _e( 'Starting now, switching a site from HTTP to HTTPS is a one-click move. WordPress will automatically update database URLs when you make the switch. No more hunting and guessing!' ); ?></p>
|
||||
<h3><?php _e( 'New Robots API' ); ?></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/'
|
||||
);
|
||||
_e( 'The new Robots API lets you include the filter directives in the robots meta tag, and the API includes the <code>max-image-preview: large</code> directive by default. That means search engines can show bigger image previews, which can boost your traffic (unless the site is marked <em>not-public</em>).' );
|
||||
?>
|
||||
</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‑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 — 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">
|
||||
<img src="https://s.w.org/images/core/5.9/learn-video.png" alt="" />
|
||||
</div>
|
||||
<div class="column">
|
||||
<h3><?php _e( 'Learn more about the new features in 5.9' ); ?></h3>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: Learn WordPress link. */
|
||||
__( 'Want to dive into 5.9 but don’t know where to start? Visit <a href="%s">learn.wordpress.org</a> for expanding resources on new features in WordPress 5.9.' ),
|
||||
'https://learn.wordpress.org'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
<h3><?php _e( 'Ongoing cleanup after update to jQuery 3.5.1' ); ?></h3>
|
||||
<p><?php _e( 'For years jQuery helped make things move on the screen in ways the basic tools couldn’t—but that keeps changing, and so does jQuery.' ); ?></p>
|
||||
<p><?php _e( 'In 5.7, jQuery gets more focused and less intrusive, with fewer messages in the console.' ); ?></p>
|
||||
<h3><?php _e( 'Lazy-load your iframes' ); ?></h3>
|
||||
<p><?php _e( 'Now it’s simple to let iframes lazy-load. By default, WordPress will add a <code>loading="lazy"</code> attribute to iframe tags when both width and height are specified.' ); ?></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="is-large" />
|
||||
<hr class="is-small" />
|
||||
|
||||
<div class="about__section">
|
||||
<div class="column">
|
||||
@@ -453,9 +215,9 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* 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.9 Field Guide.</a>' ),
|
||||
'https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/'
|
||||
/* translators: %s: WordPress 5.7 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.7 Field Guide.</a>' ),
|
||||
'https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
@@ -476,6 +238,83 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
|
||||
<?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>
|
||||
|
||||
<script>
|
||||
wp.domReady( function() {
|
||||
var createElement = wp.element.createElement;
|
||||
var Fragment = wp.element.Fragment;
|
||||
var render = wp.element.render;
|
||||
var useState = wp.element.useState;
|
||||
var ResizableBox = wp.components.ResizableBox;
|
||||
|
||||
var container = document.getElementById( 'about-image-comparison' );
|
||||
var images = container ? container.querySelectorAll( 'img' ) : [];
|
||||
if ( ! images.length ) {
|
||||
// Something's wrong, return early.
|
||||
return;
|
||||
}
|
||||
|
||||
var beforeImage = images.item( 0 );
|
||||
var afterImage = images.item( 1 );
|
||||
var caption = container.querySelector( 'figcaption' ).innerText;
|
||||
|
||||
function ImageComparison( props ) {
|
||||
var stateHelper = useState( props.width );
|
||||
var width = stateHelper[0];
|
||||
var setWidth = stateHelper[1];
|
||||
|
||||
return createElement(
|
||||
'div',
|
||||
{
|
||||
className: 'about__image-comparison'
|
||||
},
|
||||
createElement( 'img', { src: beforeImage.src, alt: beforeImage.alt } ),
|
||||
createElement(
|
||||
ResizableBox,
|
||||
{
|
||||
size: {
|
||||
width: width,
|
||||
height: props.height
|
||||
},
|
||||
onResizeStop: function( event, direction, elt, delta ) {
|
||||
setWidth( parseInt( width + delta.width, 10 ) );
|
||||
},
|
||||
showHandle: true,
|
||||
enable: {
|
||||
top: false,
|
||||
right: ! wp.i18n.isRTL(),
|
||||
bottom: false,
|
||||
left: wp.i18n.isRTL(),
|
||||
},
|
||||
className: 'about__image-comparison-resize'
|
||||
},
|
||||
createElement(
|
||||
'div',
|
||||
{
|
||||
style: { width: '100%', height: '100%', overflow: 'hidden' }
|
||||
},
|
||||
createElement('img', { src: afterImage.src, alt: afterImage.alt } )
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
render(
|
||||
createElement(
|
||||
Fragment,
|
||||
{},
|
||||
createElement(
|
||||
ImageComparison,
|
||||
{
|
||||
width: beforeImage.clientWidth / 2,
|
||||
height: beforeImage.clientHeight
|
||||
}
|
||||
),
|
||||
createElement( 'figcaption', {}, caption )
|
||||
),
|
||||
container
|
||||
);
|
||||
} );
|
||||
</script>
|
||||
<?php
|
||||
|
||||
// These are strings we may use to describe maintenance/security releases, where we aim for no new strings.
|
||||
@@ -515,15 +354,3 @@ _n_noop(
|
||||
|
||||
/* translators: %s: Documentation URL. */
|
||||
__( 'For more information, see <a href="%s">the release notes</a>.' );
|
||||
|
||||
/* translators: 1: WordPress version number, 2: Link to update WordPress */
|
||||
__( 'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' );
|
||||
|
||||
/* translators: 1: WordPress version number, 2: Link to update WordPress */
|
||||
__( 'Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' );
|
||||
|
||||
/* translators: %s: The major version of WordPress for this branch. */
|
||||
__( 'This is the final release of WordPress %s' );
|
||||
|
||||
/* translators: The localized WordPress download URL. */
|
||||
__( 'https://wordpress.org/download/' );
|
||||
|
||||
@@ -105,15 +105,15 @@ do_action( 'admin_print_footer_scripts' );
|
||||
do_action( "admin_footer-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||
|
||||
// get_site_option() won't exist when auto upgrading from <= 2.7.
|
||||
if ( function_exists( 'get_site_option' )
|
||||
&& false === get_site_option( 'can_compress_scripts' )
|
||||
) {
|
||||
compression_test();
|
||||
if ( function_exists( 'get_site_option' ) ) {
|
||||
if ( false === get_site_option( 'can_compress_scripts' ) ) {
|
||||
compression_test();
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<div class="clear"></div></div><!-- wpwrap -->
|
||||
<script type="text/javascript">if(typeof wpOnload==='function')wpOnload();</script>
|
||||
<script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -22,10 +22,9 @@ if ( ! defined( 'WP_ADMIN' ) ) {
|
||||
* @global string $update_title
|
||||
* @global int $total_update_count
|
||||
* @global string $parent_file
|
||||
* @global string $typenow
|
||||
*/
|
||||
global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow,
|
||||
$update_title, $total_update_count, $parent_file, $typenow;
|
||||
$update_title, $total_update_count, $parent_file;
|
||||
|
||||
// Catch plugins that include admin-header.php before admin.php completes.
|
||||
if ( empty( $current_screen ) ) {
|
||||
@@ -49,23 +48,8 @@ if ( $admin_title === $title ) {
|
||||
/* translators: Admin screen title. %s: Admin screen name. */
|
||||
$admin_title = sprintf( __( '%s — WordPress' ), $title );
|
||||
} 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 “%2$s”' ),
|
||||
$post_type_obj->labels->edit_item,
|
||||
$post_title
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/* translators: Admin screen title. 1: Admin screen name, 2: Network or site name. */
|
||||
$admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $screen_title, $admin_title );
|
||||
$admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $title, $admin_title );
|
||||
}
|
||||
|
||||
if ( wp_is_recovery_mode() ) {
|
||||
@@ -97,7 +81,7 @@ wp_enqueue_script( 'svg-painter' );
|
||||
$admin_body_class = preg_replace( '/[^a-z0-9_-]+/i', '-', $hook_suffix );
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
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();}}};
|
||||
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();}}};
|
||||
var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>',
|
||||
pagenow = '<?php echo esc_js( $current_screen->id ); ?>',
|
||||
typenow = '<?php echo esc_js( $current_screen->post_type ); ?>',
|
||||
@@ -148,7 +132,7 @@ do_action( 'admin_print_scripts' );
|
||||
/**
|
||||
* Fires in head section for a specific admin page.
|
||||
*
|
||||
* The dynamic portion of the hook name, `$hook_suffix`, refers to the hook suffix
|
||||
* The dynamic portion of the hook, `$hook_suffix`, refers to the hook suffix
|
||||
* for the admin page.
|
||||
*
|
||||
* @since 2.1.0
|
||||
@@ -206,7 +190,8 @@ if ( is_network_admin() ) {
|
||||
$admin_body_class .= ' no-customize-support no-svg';
|
||||
|
||||
if ( $current_screen->is_block_editor() ) {
|
||||
$admin_body_class .= ' block-editor-page wp-embed-responsive';
|
||||
// Default to is-fullscreen-mode to avoid jumps in the UI.
|
||||
$admin_body_class .= ' block-editor-page is-fullscreen-mode wp-embed-responsive';
|
||||
}
|
||||
|
||||
$error_get_last = error_get_last();
|
||||
|
||||
@@ -320,24 +320,13 @@ if ( isset( $plugin_page ) ) {
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
do_action( "load-importer-{$importer}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||
|
||||
// Used in the HTML title tag.
|
||||
$title = __( 'Import' );
|
||||
$parent_file = 'tools.php';
|
||||
$submenu_file = 'import.php';
|
||||
$title = __( 'Import' );
|
||||
|
||||
if ( ! isset( $_GET['noheader'] ) ) {
|
||||
require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
|
||||
@@ -48,40 +48,20 @@ if ( isset( $_REQUEST['attachment_id'] ) && (int) $_REQUEST['attachment_id'] &&
|
||||
|
||||
switch ( $_REQUEST['fetch'] ) {
|
||||
case 3:
|
||||
?>
|
||||
<div class="media-item-wrapper">
|
||||
<div class="attachment-details">
|
||||
<?php
|
||||
$thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true );
|
||||
if ( $thumb_url ) {
|
||||
echo '<img class="pinkynail" src="' . esc_url( $thumb_url[0] ) . '" alt="" />';
|
||||
}
|
||||
$thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true );
|
||||
if ( $thumb_url ) {
|
||||
echo '<img class="pinkynail" src="' . esc_url( $thumb_url[0] ) . '" alt="" />';
|
||||
}
|
||||
if ( current_user_can( 'edit_post', $id ) ) {
|
||||
echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '" target="_blank">' . _x( 'Edit', 'media item' ) . '</a>';
|
||||
} else {
|
||||
echo '<span class="edit-attachment">' . _x( 'Success', 'media item' ) . '</span>';
|
||||
}
|
||||
|
||||
// Title shouldn't ever be empty, but use filename just in case.
|
||||
$file = get_attached_file( $post->ID );
|
||||
$file_url = wp_get_attachment_url( $post->ID );
|
||||
$title = $post->post_title ? $post->post_title : wp_basename( $file );
|
||||
?>
|
||||
<div class="filename new">
|
||||
<span class="media-list-title"><strong><?php echo esc_html( wp_html_excerpt( $title, 60, '…' ) ); ?></strong></span>
|
||||
<span class="media-list-subtitle"><?php echo wp_basename( $file ); ?></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="attachment-tools">
|
||||
<span class="media-item-copy-container copy-to-clipboard-container edit-attachment">
|
||||
<button type="button" class="button button-small copy-attachment-url" data-clipboard-text="<?php echo $file_url; ?>"><?php _e( 'Copy URL to clipboard' ); ?></button>
|
||||
<span class="success hidden" aria-hidden="true"><?php _e( 'Copied!' ); ?></span>
|
||||
</span>
|
||||
<?php
|
||||
if ( current_user_can( 'edit_post', $id ) ) {
|
||||
echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '" target="_blank">' . _x( 'Edit', 'media item' ) . '</a>';
|
||||
} else {
|
||||
echo '<span class="edit-attachment">' . _x( 'Success', 'media item' ) . '</span>';
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
// Title shouldn't ever be empty, but use filename just in case.
|
||||
$file = get_attached_file( $post->ID );
|
||||
$title = $post->post_title ? $post->post_title : wp_basename( $file );
|
||||
echo '<div class="filename new"><span class="title">' . esc_html( wp_html_excerpt( $title, 60, '…' ) ) . '</span></div>';
|
||||
break;
|
||||
case 2:
|
||||
add_filter( 'attachment_fields_to_edit', 'media_single_attachment_fields_to_edit', 10, 2 );
|
||||
@@ -139,14 +119,8 @@ if ( $_REQUEST['short'] ) {
|
||||
/**
|
||||
* Filters the returned ID of an uploaded attachment.
|
||||
*
|
||||
* The dynamic portion of the hook name, `$type`, refers to the attachment type.
|
||||
*
|
||||
* Possible hook names include:
|
||||
*
|
||||
* - `async_upload_audio`
|
||||
* - `async_upload_file`
|
||||
* - `async_upload_image`
|
||||
* - `async_upload_video`
|
||||
* The dynamic portion of the hook name, `$type`, refers to the attachment type,
|
||||
* such as 'image', 'audio', 'video', 'file', etc.
|
||||
*
|
||||
* @since 2.5.0
|
||||
*
|
||||
|
||||
@@ -12,7 +12,7 @@ require_once __DIR__ . '/admin.php';
|
||||
$error = null;
|
||||
$new_password = '';
|
||||
|
||||
// This is the no-js fallback script. Generally this will all be handled by `auth-app.js`.
|
||||
// This is the no-js fallback script. Generally this will all be handled by `auth-app.js`
|
||||
if ( isset( $_POST['action'] ) && 'authorize_application_password' === $_POST['action'] ) {
|
||||
check_admin_referer( 'authorize_application_password' );
|
||||
|
||||
@@ -62,7 +62,6 @@ if ( isset( $_POST['action'] ) && 'authorize_application_password' === $_POST['a
|
||||
}
|
||||
}
|
||||
|
||||
// Used in the HTML title tag.
|
||||
$title = __( 'Authorize Application' );
|
||||
|
||||
$app_name = ! empty( $_REQUEST['app_name'] ) ? $_REQUEST['app_name'] : '';
|
||||
@@ -91,7 +90,7 @@ if ( is_wp_error( $is_valid ) ) {
|
||||
|
||||
if ( wp_is_site_protected_by_basic_auth( 'front' ) ) {
|
||||
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' ),
|
||||
array(
|
||||
'response' => 501,
|
||||
@@ -148,13 +147,13 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
<?php
|
||||
printf(
|
||||
/* 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 application 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 app in question.' ),
|
||||
'<strong>' . esc_html( $app_name ) . '</strong>'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
<?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 application 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 app in question.' ); ?></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
@@ -166,10 +165,10 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */
|
||||
/* translators: 1: URL to my-sites.php, 2: Number of blogs the user has. */
|
||||
_n(
|
||||
'This will grant access to <a href="%1$s">the %2$s site in this installation that you have permissions on</a>.',
|
||||
'This will grant access to <a href="%1$s">all %2$s sites in this installation that you have permissions on</a>.',
|
||||
'This will grant access to <a href="%1$s">the %2$s blog in this installation that you have permissions on</a>.',
|
||||
'This will grant access to <a href="%1$s">all %2$s blogs in this installation that you have permissions on</a>.',
|
||||
$blogs_count
|
||||
),
|
||||
admin_url( 'my-sites.php' ),
|
||||
@@ -225,7 +224,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
|
||||
<div class="form-field">
|
||||
<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 ); ?>" required />
|
||||
<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 />
|
||||
</div>
|
||||
|
||||
<?php
|
||||
@@ -248,7 +247,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
|
||||
<?php
|
||||
submit_button(
|
||||
__( 'Yes, I approve of this connection' ),
|
||||
__( 'Yes, I approve of this connection.' ),
|
||||
'primary',
|
||||
'approve',
|
||||
false,
|
||||
@@ -263,7 +262,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
printf(
|
||||
/* translators: %s: The URL the user is being redirected to. */
|
||||
__( 'You will be sent to %s' ),
|
||||
'<strong><code>' . esc_html(
|
||||
'<strong><kbd>' . esc_html(
|
||||
add_query_arg(
|
||||
array(
|
||||
'site_url' => site_url(),
|
||||
@@ -272,7 +271,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
),
|
||||
$success_url
|
||||
)
|
||||
) . '</code></strong>'
|
||||
) . '</kbd></strong>'
|
||||
);
|
||||
} else {
|
||||
_e( 'You will be given a password to manually enter into the application in question.' );
|
||||
@@ -282,7 +281,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
|
||||
<?php
|
||||
submit_button(
|
||||
__( 'No, I do not approve of this connection' ),
|
||||
__( 'No, I do not approve of this connection.' ),
|
||||
'secondary',
|
||||
'reject',
|
||||
false,
|
||||
@@ -297,7 +296,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
printf(
|
||||
/* translators: %s: The URL the user is being redirected to. */
|
||||
__( 'You will be sent to %s' ),
|
||||
'<strong><code>' . esc_html( $reject_url ) . '</code></strong>'
|
||||
'<strong><kbd>' . esc_html( $reject_url ) . '</kbd></strong>'
|
||||
);
|
||||
} else {
|
||||
_e( 'You will be returned to the WordPress Dashboard, and no changes will be made.' );
|
||||
|
||||
@@ -53,7 +53,6 @@ if ( isset( $_REQUEST['c'] ) ) {
|
||||
switch ( $action ) {
|
||||
|
||||
case 'editcomment':
|
||||
// Used in the HTML title tag.
|
||||
$title = __( 'Edit Comment' );
|
||||
|
||||
get_current_screen()->add_help_tab(
|
||||
@@ -97,7 +96,6 @@ switch ( $action ) {
|
||||
case 'approve':
|
||||
case 'trash':
|
||||
case 'spam':
|
||||
// Used in the HTML title tag.
|
||||
$title = __( 'Moderate Comment' );
|
||||
|
||||
if ( ! $comment ) {
|
||||
@@ -169,19 +167,19 @@ switch ( $action ) {
|
||||
|
||||
<table class="form-table comment-ays">
|
||||
<tr>
|
||||
<th scope="row"><?php _e( 'Author' ); ?></th>
|
||||
<td><?php comment_author( $comment ); ?></td>
|
||||
<th scope="row"><?php _e( 'Author' ); ?></th>
|
||||
<td><?php comment_author( $comment ); ?></td>
|
||||
</tr>
|
||||
<?php if ( get_comment_author_email( $comment ) ) { ?>
|
||||
<tr>
|
||||
<th scope="row"><?php _e( 'Email' ); ?></th>
|
||||
<td><?php comment_author_email( $comment ); ?></td>
|
||||
<th scope="row"><?php _e( 'Email' ); ?></th>
|
||||
<td><?php comment_author_email( $comment ); ?></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
<?php if ( get_comment_author_url( $comment ) ) { ?>
|
||||
<tr>
|
||||
<th scope="row"><?php _e( 'URL' ); ?></th>
|
||||
<td><a href="<?php comment_author_url( $comment ); ?>"><?php comment_author_url( $comment ); ?></a></td>
|
||||
<th scope="row"><?php _e( 'URL' ); ?></th>
|
||||
<td><a href="<?php comment_author_url( $comment ); ?>"><?php comment_author_url( $comment ); ?></a></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
<tr>
|
||||
@@ -209,8 +207,8 @@ switch ( $action ) {
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><?php _e( 'Submitted on' ); ?></th>
|
||||
<td>
|
||||
<?php
|
||||
@@ -228,32 +226,31 @@ switch ( $action ) {
|
||||
echo $submitted;
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><?php /* translators: Field name in comment form. */ _ex( 'Comment', 'noun' ); ?></th>
|
||||
<td class="comment-content">
|
||||
<?php comment_text( $comment ); ?>
|
||||
<p class="edit-comment">
|
||||
<a href="<?php echo esc_url( admin_url( "comment.php?action=editcomment&c={$comment->comment_ID}" ) ); ?>"><?php esc_html_e( 'Edit' ); ?></a>
|
||||
</p>
|
||||
<p class="edit-comment"><a href="<?php echo admin_url( "comment.php?action=editcomment&c={$comment->comment_ID}" ); ?>"><?php esc_html_e( 'Edit' ); ?></a></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<form action="comment.php" method="get" class="comment-ays-submit">
|
||||
|
||||
<form action="comment.php" method="get" class="comment-ays-submit">
|
||||
<p>
|
||||
<?php submit_button( $button, 'primary', 'submit', false ); ?>
|
||||
<a href="<?php echo esc_url( admin_url( 'edit-comments.php' ) ); ?>" class="button-cancel"><?php esc_html_e( 'Cancel' ); ?></a>
|
||||
<a href="<?php echo admin_url( 'edit-comments.php' ); ?>" class="button-cancel"><?php esc_html_e( 'Cancel' ); ?></a>
|
||||
</p>
|
||||
|
||||
<?php wp_nonce_field( $nonce_action ); ?>
|
||||
<input type="hidden" name="action" value="<?php echo esc_attr( $formaction ); ?>" />
|
||||
<input type="hidden" name="c" value="<?php echo esc_attr( $comment->comment_ID ); ?>" />
|
||||
<input type="hidden" name="noredir" value="1" />
|
||||
</form>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
break;
|
||||
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
require_once __DIR__ . '/admin.php';
|
||||
require_once __DIR__ . '/includes/credits.php';
|
||||
|
||||
// Used in the HTML title tag.
|
||||
$title = __( 'Credits' );
|
||||
|
||||
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
|
||||
@@ -22,20 +21,21 @@ $credits = wp_credits();
|
||||
<div class="wrap about__container">
|
||||
|
||||
<div class="about__header">
|
||||
<div class="about__header-title">
|
||||
<h1>
|
||||
<?php _e( 'Contributors' ); ?>
|
||||
</h1>
|
||||
<div class="about__header-image">
|
||||
<img alt="<?php _e( 'Code is Poetry' ); ?>" src="images/about-badge.svg" />
|
||||
</div>
|
||||
|
||||
<div class="about__header-text">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: Version number. */
|
||||
__( 'WordPress %s was created by a worldwide team of passionate individuals' ),
|
||||
$display_version
|
||||
);
|
||||
?>
|
||||
<div class="about__header-container">
|
||||
<div class="about__header-title">
|
||||
<p>
|
||||
<?php _e( 'WordPress' ); ?>
|
||||
<?php echo $display_version; ?>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="about__header-text">
|
||||
<?php _e( 'Jazz up your stories in an editor that’s cleaner, crisper, and does more to get out of your way.' ); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
|
||||
@@ -46,28 +46,36 @@ $credits = wp_credits();
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="about__section has-1-column">
|
||||
<div class="column aligncenter">
|
||||
<div class="about__section is-feature">
|
||||
<div class="column">
|
||||
<h1><?php _e( 'Credits' ); ?></h1>
|
||||
|
||||
<?php if ( ! $credits ) : ?>
|
||||
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: https://wordpress.org/about/ */
|
||||
__( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals.' ),
|
||||
__( 'https://wordpress.org/about/' )
|
||||
/* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */
|
||||
__( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ),
|
||||
__( 'https://wordpress.org/about/' ),
|
||||
__( 'https://make.wordpress.org/' )
|
||||
);
|
||||
?>
|
||||
<br />
|
||||
<a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a>
|
||||
</p>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<p>
|
||||
<?php _e( 'Want to see your name in lights on this page?' ); ?>
|
||||
<br />
|
||||
<a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a>
|
||||
<?php _e( 'WordPress is created by a worldwide team of passionate individuals.' ); ?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: https://make.wordpress.org/ */
|
||||
__( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
|
||||
__( 'https://make.wordpress.org/' )
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
|
||||
<?php endif; ?>
|
||||
@@ -85,7 +93,7 @@ if ( ! $credits ) {
|
||||
<hr />
|
||||
|
||||
<div class="about__section">
|
||||
<div class="column is-edge-to-edge">
|
||||
<div class="column has-subtle-background-color">
|
||||
<?php wp_credits_section_title( $credits['groups']['core-developers'] ); ?>
|
||||
<?php wp_credits_section_list( $credits, 'core-developers' ); ?>
|
||||
<?php wp_credits_section_list( $credits, 'contributing-developers' ); ?>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
2
wp-admin/css/about-rtl.min.css
vendored
2
wp-admin/css/about-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
2
wp-admin/css/about.min.css
vendored
2
wp-admin/css/about.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -40,7 +40,7 @@
|
||||
.icon16 {
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
padding: 6px;
|
||||
padding: 6px 6px;
|
||||
margin: -6px -8px 0 0;
|
||||
float: right;
|
||||
}
|
||||
@@ -156,12 +156,14 @@
|
||||
/* side admin menu */
|
||||
#adminmenu * {
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#adminmenu li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#adminmenu a {
|
||||
@@ -212,6 +214,11 @@
|
||||
right: 160px;
|
||||
overflow: visible;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu,
|
||||
.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
padding: 7px 0 8px;
|
||||
z-index: 9999;
|
||||
background-color: #2c3338;
|
||||
@@ -225,12 +232,9 @@
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
.no-js li.wp-has-current-submenu:hover .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu {
|
||||
position: relative;
|
||||
@@ -242,10 +246,7 @@
|
||||
border: 0 none;
|
||||
margin-top: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
|
||||
background-color: #2c3338;
|
||||
}
|
||||
|
||||
/* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */
|
||||
@@ -265,6 +266,8 @@
|
||||
|
||||
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||
#adminmenu li.current a.menu-top,
|
||||
.folded #adminmenu li.wp-has-current-submenu,
|
||||
.folded #adminmenu li.current.menu-top,
|
||||
#adminmenu .wp-menu-arrow,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||
#adminmenu .wp-menu-arrow div {
|
||||
@@ -345,7 +348,7 @@
|
||||
}
|
||||
|
||||
#adminmenu .wp-menu-image img {
|
||||
padding: 9px 0 0;
|
||||
padding: 9px 0 0 0;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
@@ -356,6 +359,7 @@
|
||||
word-wrap: break-word;
|
||||
-ms-word-break: break-all;
|
||||
word-break: break-word;
|
||||
-ms-hyphens: auto;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
@@ -442,8 +446,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
margin-top: -8px;
|
||||
}
|
||||
|
||||
.folded ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||
.folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after {
|
||||
.folded ul#adminmenu li:hover a.wp-has-current-submenu:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -454,8 +457,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* flyout menu arrow */
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
|
||||
left: 0;
|
||||
border: 8px solid transparent;
|
||||
content: " ";
|
||||
@@ -467,15 +469,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
|
||||
border-width: 4px;
|
||||
margin-top: -4px;
|
||||
top: 18px;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-left-color: #2c3338;
|
||||
}
|
||||
|
||||
@@ -488,7 +488,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li.wp-menu-separator {
|
||||
height: 5px;
|
||||
padding: 0;
|
||||
margin: 0 0 6px;
|
||||
margin: 0 0 6px 0;
|
||||
cursor: inherit;
|
||||
}
|
||||
|
||||
@@ -503,7 +503,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
padding: 5px 11px 5px 4px;
|
||||
margin: -7px -5px 4px 0;
|
||||
margin: -7px -5px 4px 0px;
|
||||
border-width: 3px 5px 3px 0;
|
||||
border-style: solid;
|
||||
border-color: transparent;
|
||||
@@ -654,7 +654,7 @@ li#wp-admin-bar-menu-toggle {
|
||||
.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
|
||||
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
|
||||
top: 0;
|
||||
top: 0px;
|
||||
right: 36px;
|
||||
}
|
||||
|
||||
@@ -710,13 +710,11 @@ li#wp-admin-bar-menu-toggle {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||
.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after {
|
||||
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
|
||||
border-width: 4px;
|
||||
margin-top: -4px;
|
||||
top: 16px;
|
||||
@@ -811,8 +809,7 @@ li#wp-admin-bar-menu-toggle {
|
||||
margin-top: -8px;
|
||||
}
|
||||
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -844,8 +841,7 @@ li#wp-admin-bar-menu-toggle {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||
.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after {
|
||||
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
2
wp-admin/css/admin-menu-rtl.min.css
vendored
2
wp-admin/css/admin-menu-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -39,7 +39,7 @@
|
||||
.icon16 {
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
padding: 6px;
|
||||
padding: 6px 6px;
|
||||
margin: -6px 0 0 -8px;
|
||||
float: left;
|
||||
}
|
||||
@@ -155,12 +155,14 @@
|
||||
/* side admin menu */
|
||||
#adminmenu * {
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#adminmenu li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#adminmenu a {
|
||||
@@ -211,6 +213,11 @@
|
||||
left: 160px;
|
||||
overflow: visible;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu,
|
||||
.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
padding: 7px 0 8px;
|
||||
z-index: 9999;
|
||||
background-color: #2c3338;
|
||||
@@ -224,12 +231,9 @@
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
.no-js li.wp-has-current-submenu:hover .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu {
|
||||
position: relative;
|
||||
@@ -241,10 +245,7 @@
|
||||
border: 0 none;
|
||||
margin-top: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
|
||||
background-color: #2c3338;
|
||||
}
|
||||
|
||||
/* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */
|
||||
@@ -264,6 +265,8 @@
|
||||
|
||||
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||
#adminmenu li.current a.menu-top,
|
||||
.folded #adminmenu li.wp-has-current-submenu,
|
||||
.folded #adminmenu li.current.menu-top,
|
||||
#adminmenu .wp-menu-arrow,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||
#adminmenu .wp-menu-arrow div {
|
||||
@@ -344,7 +347,7 @@
|
||||
}
|
||||
|
||||
#adminmenu .wp-menu-image img {
|
||||
padding: 9px 0 0;
|
||||
padding: 9px 0 0 0;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
@@ -355,6 +358,7 @@
|
||||
word-wrap: break-word;
|
||||
-ms-word-break: break-all;
|
||||
word-break: break-word;
|
||||
-ms-hyphens: auto;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
@@ -441,8 +445,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
margin-top: -8px;
|
||||
}
|
||||
|
||||
.folded ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||
.folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after {
|
||||
.folded ul#adminmenu li:hover a.wp-has-current-submenu:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -453,8 +456,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* flyout menu arrow */
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
|
||||
right: 0;
|
||||
border: 8px solid transparent;
|
||||
content: " ";
|
||||
@@ -466,15 +468,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
|
||||
border-width: 4px;
|
||||
margin-top: -4px;
|
||||
top: 18px;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-right-color: #2c3338;
|
||||
}
|
||||
|
||||
@@ -487,7 +487,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li.wp-menu-separator {
|
||||
height: 5px;
|
||||
padding: 0;
|
||||
margin: 0 0 6px;
|
||||
margin: 0 0 6px 0;
|
||||
cursor: inherit;
|
||||
}
|
||||
|
||||
@@ -502,7 +502,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
padding: 5px 4px 5px 11px;
|
||||
margin: -7px 0 4px -5px;
|
||||
margin: -7px 0px 4px -5px;
|
||||
border-width: 3px 0 3px 5px;
|
||||
border-style: solid;
|
||||
border-color: transparent;
|
||||
@@ -653,7 +653,7 @@ li#wp-admin-bar-menu-toggle {
|
||||
.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
|
||||
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
|
||||
top: 0;
|
||||
top: 0px;
|
||||
left: 36px;
|
||||
}
|
||||
|
||||
@@ -709,13 +709,11 @@ li#wp-admin-bar-menu-toggle {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||
.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after {
|
||||
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
|
||||
border-width: 4px;
|
||||
margin-top: -4px;
|
||||
top: 16px;
|
||||
@@ -810,8 +808,7 @@ li#wp-admin-bar-menu-toggle {
|
||||
margin-top: -8px;
|
||||
}
|
||||
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -843,8 +840,7 @@ li#wp-admin-bar-menu-toggle {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||
.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after {
|
||||
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
2
wp-admin/css/admin-menu.min.css
vendored
2
wp-admin/css/admin-menu.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -12,7 +12,7 @@
|
||||
/* Needs higher specificiity. */
|
||||
.wp-picker-container .wp-color-result.button {
|
||||
min-height: 30px;
|
||||
margin: 0 0 6px 6px;
|
||||
margin: 0 0px 6px 6px;
|
||||
padding: 0 30px 0 0;
|
||||
font-size: 11px;
|
||||
}
|
||||
@@ -103,16 +103,16 @@
|
||||
}
|
||||
|
||||
.wp-color-picker::-webkit-input-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.wp-color-picker::-moz-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.wp-color-picker:-ms-input-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.wp-picker-container input[type="text"].iris-error {
|
||||
|
||||
2
wp-admin/css/color-picker-rtl.min.css
vendored
2
wp-admin/css/color-picker-rtl.min.css
vendored
@@ -1,2 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
.wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:30px;margin:0 0 6px 6px;padding:0 30px 0 0;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:2px 0 0 2px;border-right:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-right:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-right:6px;padding:0 8px;line-height:2.54545455;min-height:30px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;line-height:2.33333333;margin:0;padding:0 5px;vertical-align:top;min-height:30px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 2px #3582c4}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 40px 0 0;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}
|
||||
.wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:30px;margin:0 0 6px 6px;padding:0 30px 0 0;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:2px 0 0 2px;border-right:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-right:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-right:6px;padding:0 8px;line-height:2.54545455;min-height:30px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;line-height:2.33333333;margin:0;padding:0 5px;vertical-align:top;min-height:30px}.wp-color-picker::-webkit-input-placeholder{color:#787c82}.wp-color-picker::-moz-placeholder{color:#787c82;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#787c82}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 2px #3582c4}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 40px 0 0;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}
|
||||
@@ -11,7 +11,7 @@
|
||||
/* Needs higher specificiity. */
|
||||
.wp-picker-container .wp-color-result.button {
|
||||
min-height: 30px;
|
||||
margin: 0 6px 6px 0;
|
||||
margin: 0 6px 6px 0px;
|
||||
padding: 0 0 0 30px;
|
||||
font-size: 11px;
|
||||
}
|
||||
@@ -102,16 +102,16 @@
|
||||
}
|
||||
|
||||
.wp-color-picker::-webkit-input-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.wp-color-picker::-moz-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.wp-color-picker:-ms-input-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.wp-picker-container input[type="text"].iris-error {
|
||||
|
||||
2
wp-admin/css/color-picker.min.css
vendored
2
wp-admin/css/color-picker.min.css
vendored
@@ -1,2 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
.wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:30px;margin:0 6px 6px 0;padding:0 0 0 30px;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:0 2px 2px 0;border-left:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-left:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-left:6px;padding:0 8px;line-height:2.54545455;min-height:30px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;line-height:2.33333333;margin:0;padding:0 5px;vertical-align:top;min-height:30px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 2px #3582c4}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 0 0 40px;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}
|
||||
.wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:30px;margin:0 6px 6px 0;padding:0 0 0 30px;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:0 2px 2px 0;border-left:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-left:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-left:6px;padding:0 8px;line-height:2.54545455;min-height:30px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;line-height:2.33333333;margin:0;padding:0 5px;vertical-align:top;min-height:30px}.wp-color-picker::-webkit-input-placeholder{color:#787c82}.wp-color-picker::-moz-placeholder{color:#787c82;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#787c82}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 2px #3582c4}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 0 0 40px;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}
|
||||
@@ -286,12 +286,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: $menu-submenu-background;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-right-color: $menu-submenu-background;
|
||||
}
|
||||
|
||||
@@ -301,6 +301,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: $menu-submenu-text;
|
||||
@@ -781,17 +782,3 @@ div#wp-responsive-toggle a:before {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
// assign default value to all undefined variables
|
||||
|
||||
$scheme-name: "default" !default;
|
||||
|
||||
// core variables
|
||||
|
||||
|
||||
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #4796b3;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-left-color: #4796b3;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #e2ecf1;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -702,13 +705,4 @@ 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 {
|
||||
border-bottom-color: #e1a948;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
background-color: #096484;
|
||||
}
|
||||
|
||||
[class*=welcome-panel-icon] {
|
||||
background-color: #52accc;
|
||||
}
|
||||
2
wp-admin/css/colors/blue/colors-rtl.min.css
vendored
2
wp-admin/css/colors/blue/colors-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #4796b3;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-right-color: #4796b3;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #e2ecf1;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -702,13 +705,4 @@ 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 {
|
||||
border-bottom-color: #e1a948;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
background-color: #096484;
|
||||
}
|
||||
|
||||
[class*=welcome-panel-icon] {
|
||||
background-color: #52accc;
|
||||
}
|
||||
2
wp-admin/css/colors/blue/colors.min.css
vendored
2
wp-admin/css/colors/blue/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,4 +1,3 @@
|
||||
$scheme-name: "blue";
|
||||
$base-color: #52accc;
|
||||
$icon-color: #e5f8ff;
|
||||
$highlight-color: #096484;
|
||||
|
||||
@@ -224,12 +224,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #46403c;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-left-color: #46403c;
|
||||
}
|
||||
|
||||
@@ -239,6 +239,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #cdcbc9;
|
||||
@@ -246,6 +247,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -669,13 +672,4 @@ 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 {
|
||||
border-bottom-color: #c7a589;
|
||||
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
@@ -224,12 +224,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #46403c;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-right-color: #46403c;
|
||||
}
|
||||
|
||||
@@ -239,6 +239,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #cdcbc9;
|
||||
@@ -246,6 +247,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -669,13 +672,4 @@ 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 {
|
||||
border-bottom-color: #c7a589;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
background-color: #c7a589;
|
||||
}
|
||||
|
||||
[class*=welcome-panel-icon] {
|
||||
background-color: #59524c;
|
||||
}
|
||||
2
wp-admin/css/colors/coffee/colors.min.css
vendored
2
wp-admin/css/colors/coffee/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,4 +1,3 @@
|
||||
$scheme-name: "coffee";
|
||||
$base-color: #59524c;
|
||||
$highlight-color: #c7a589;
|
||||
$notification-color: #9ea476;
|
||||
|
||||
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #413256;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-left-color: #413256;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #cbc5d3;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -702,13 +705,4 @@ 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 {
|
||||
border-bottom-color: #a3b745;
|
||||
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
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #413256;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-right-color: #413256;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #cbc5d3;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -702,13 +705,4 @@ 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 {
|
||||
border-bottom-color: #a3b745;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
background-color: #a3b745;
|
||||
}
|
||||
|
||||
[class*=welcome-panel-icon] {
|
||||
background-color: #523f6d;
|
||||
}
|
||||
2
wp-admin/css/colors/ectoplasm/colors.min.css
vendored
2
wp-admin/css/colors/ectoplasm/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,4 +1,3 @@
|
||||
$scheme-name: "ectoplasm";
|
||||
$base-color: #523f6d;
|
||||
$icon-color: #ece6f6;
|
||||
$highlight-color: #a3b745;
|
||||
|
||||
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-left-color: #fff;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #686868;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -704,15 +707,6 @@ div#wp-responsive-toggle a:before {
|
||||
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 */
|
||||
.theme-section.current,
|
||||
.theme-filter.current {
|
||||
|
||||
2
wp-admin/css/colors/light/colors-rtl.min.css
vendored
2
wp-admin/css/colors/light/colors-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-right-color: #fff;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #686868;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -704,15 +707,6 @@ div#wp-responsive-toggle a:before {
|
||||
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 */
|
||||
.theme-section.current,
|
||||
.theme-filter.current {
|
||||
|
||||
2
wp-admin/css/colors/light/colors.min.css
vendored
2
wp-admin/css/colors/light/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,4 +1,3 @@
|
||||
$scheme-name: "light";
|
||||
$base-color: #e5e5e5;
|
||||
$icon-color: #999;
|
||||
$text-color: #333;
|
||||
|
||||
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #26292c;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-left-color: #26292c;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #c3c4c5;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -702,13 +705,4 @@ 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 {
|
||||
border-bottom-color: #e14d43;
|
||||
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
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #26292c;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-right-color: #26292c;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #c3c4c5;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -702,13 +705,4 @@ 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 {
|
||||
border-bottom-color: #e14d43;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
background-color: #e14d43;
|
||||
}
|
||||
|
||||
[class*=welcome-panel-icon] {
|
||||
background-color: #363b3f;
|
||||
}
|
||||
2
wp-admin/css/colors/midnight/colors.min.css
vendored
2
wp-admin/css/colors/midnight/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,4 +1,3 @@
|
||||
$scheme-name: "midnight";
|
||||
$base-color: #363b3f;
|
||||
$highlight-color: #e14d43;
|
||||
$notification-color: #69a8bb;
|
||||
|
||||
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #0c0c0c;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-left-color: #0c0c0c;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #bcbcbc;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -702,13 +705,4 @@ 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 {
|
||||
border-bottom-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
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #0c0c0c;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-right-color: #0c0c0c;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #bcbcbc;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -702,13 +705,4 @@ 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 {
|
||||
border-bottom-color: #3858e9;
|
||||
color: #3858e9;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
background-color: #3858e9;
|
||||
}
|
||||
|
||||
[class*=welcome-panel-icon] {
|
||||
background-color: #1e1e1e;
|
||||
}
|
||||
2
wp-admin/css/colors/modern/colors.min.css
vendored
2
wp-admin/css/colors/modern/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,4 +1,3 @@
|
||||
$scheme-name: "modern";
|
||||
$base-color: #1e1e1e;
|
||||
$highlight-color: #3858e9;
|
||||
$menu-submenu-focus-text: #33f078;
|
||||
|
||||
@@ -224,12 +224,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #627c83;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-left-color: #627c83;
|
||||
}
|
||||
|
||||
@@ -239,6 +239,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #d5dde0;
|
||||
@@ -246,6 +247,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -669,13 +672,4 @@ 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 {
|
||||
border-bottom-color: #9ebaa0;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
background-color: #9ebaa0;
|
||||
}
|
||||
|
||||
[class*=welcome-panel-icon] {
|
||||
background-color: #738e96;
|
||||
}
|
||||
2
wp-admin/css/colors/ocean/colors-rtl.min.css
vendored
2
wp-admin/css/colors/ocean/colors-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -224,12 +224,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #627c83;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-right-color: #627c83;
|
||||
}
|
||||
|
||||
@@ -239,6 +239,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #d5dde0;
|
||||
@@ -246,6 +247,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -669,13 +672,4 @@ 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 {
|
||||
border-bottom-color: #9ebaa0;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
background-color: #9ebaa0;
|
||||
}
|
||||
|
||||
[class*=welcome-panel-icon] {
|
||||
background-color: #738e96;
|
||||
}
|
||||
2
wp-admin/css/colors/ocean/colors.min.css
vendored
2
wp-admin/css/colors/ocean/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,4 +1,3 @@
|
||||
$scheme-name: "ocean";
|
||||
$base-color: #738e96;
|
||||
$icon-color: #f2fcff;
|
||||
$highlight-color: #9ebaa0;
|
||||
|
||||
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #be3631;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-left-color: #be3631;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #f1c8c7;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -702,13 +705,4 @@ 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 {
|
||||
border-bottom-color: #dd823b;
|
||||
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
@@ -257,12 +257,12 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #be3631;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||
border-right-color: #be3631;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ textarea:focus {
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #f1c8c7;
|
||||
@@ -279,6 +280,8 @@ textarea:focus {
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
@@ -702,13 +705,4 @@ 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 {
|
||||
border-bottom-color: #dd823b;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
background-color: #dd823b;
|
||||
}
|
||||
|
||||
[class*=welcome-panel-icon] {
|
||||
background-color: #cf4944;
|
||||
}
|
||||
2
wp-admin/css/colors/sunrise/colors.min.css
vendored
2
wp-admin/css/colors/sunrise/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,4 +1,3 @@
|
||||
$scheme-name: "sunrise";
|
||||
$base-color: #cf4944;
|
||||
$highlight-color: #dd823b;
|
||||
$notification-color: #ccaf0b;
|
||||
|
||||
@@ -418,7 +418,7 @@ code {
|
||||
|
||||
kbd,
|
||||
code {
|
||||
padding: 3px 5px 2px;
|
||||
padding: 3px 5px 2px 5px;
|
||||
margin: 0 1px;
|
||||
background: #f0f0f1;
|
||||
background: rgba(0, 0, 0, 0.07);
|
||||
@@ -583,7 +583,7 @@ code {
|
||||
font-size: 23px;
|
||||
font-weight: 400;
|
||||
margin: 0;
|
||||
padding: 9px 0 4px;
|
||||
padding: 9px 0 4px 0;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
@@ -606,10 +606,6 @@ code {
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.subtitle strong {
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.wrap .add-new-h2, /* deprecated */
|
||||
.wrap .add-new-h2:active, /* deprecated */
|
||||
.wrap .page-title-action,
|
||||
@@ -824,6 +820,8 @@ img.emoji {
|
||||
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:focus .remove-tag-icon:before,
|
||||
#bulk-titles div a:hover:before,
|
||||
@@ -881,9 +879,7 @@ hr {
|
||||
#media-items a.delete,
|
||||
#media-items a.delete-permanently,
|
||||
#nav-menu-footer .menu-delete,
|
||||
#delete-link a.delete,
|
||||
a#remove-post-thumbnail,
|
||||
.privacy_requests .remove-personal-data .remove-personal-data-handle {
|
||||
#delete-link a.delete {
|
||||
color: #b32d2e;
|
||||
}
|
||||
|
||||
@@ -900,9 +896,7 @@ span.required,
|
||||
#media-items a.delete:hover,
|
||||
#media-items a.delete-permanently:hover,
|
||||
#nav-menu-footer .menu-delete:hover,
|
||||
#delete-link a.delete:hover,
|
||||
a#remove-post-thumbnail:hover,
|
||||
.privacy_requests .remove-personal-data .remove-personal-data-handle:hover {
|
||||
#delete-link a.delete:hover {
|
||||
color: #b32d2e;
|
||||
border: none;
|
||||
}
|
||||
@@ -958,7 +952,7 @@ a#remove-post-thumbnail:hover,
|
||||
}
|
||||
|
||||
#minor-publishing-actions {
|
||||
padding: 10px 10px 0;
|
||||
padding: 10px 10px 0 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
@@ -1027,7 +1021,7 @@ th.action-links {
|
||||
top: -1px;
|
||||
padding: 4px 10px;
|
||||
border-radius: 30px;
|
||||
background: #646970;
|
||||
background: #787c82;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
@@ -1125,7 +1119,7 @@ th.action-links {
|
||||
.wp-filter .drawer-toggle:before {
|
||||
content: "\f111";
|
||||
margin: 0 0 0 5px;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
font: normal 16px/1 dashicons;
|
||||
vertical-align: text-bottom;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
@@ -1180,13 +1174,13 @@ th.action-links {
|
||||
|
||||
.show-filters .wp-filter .button.drawer-toggle {
|
||||
border-radius: 2px;
|
||||
background: #646970;
|
||||
background: #787c82;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.show-filters .wp-filter .drawer-toggle:hover,
|
||||
.show-filters .wp-filter .drawer-toggle:focus {
|
||||
background: #2271b1;
|
||||
background: #72aee6;
|
||||
}
|
||||
|
||||
.show-filters .wp-filter .drawer-toggle:before {
|
||||
@@ -1233,7 +1227,7 @@ th.action-links {
|
||||
|
||||
.filter-group .filter-group-feature label {
|
||||
display: block;
|
||||
margin: 14px 23px 14px 0;
|
||||
margin: 14px 23px 14px 0px;
|
||||
}
|
||||
|
||||
.filter-drawer .buttons {
|
||||
@@ -1610,7 +1604,7 @@ form.upgrade {
|
||||
form.upgrade .hint {
|
||||
font-style: italic;
|
||||
font-size: 85%;
|
||||
margin: -0.5em 0 2em;
|
||||
margin: -0.5em 0 2em 0;
|
||||
}
|
||||
|
||||
.update-php .spinner {
|
||||
@@ -1708,7 +1702,7 @@ p.auto-update-status {
|
||||
/* screen options and help tabs revert */
|
||||
#screen-meta {
|
||||
display: none;
|
||||
margin: 0 0 -1px 20px;
|
||||
margin: 0 0px -1px 20px;
|
||||
position: relative;
|
||||
background-color: #fff;
|
||||
border: 1px solid #c3c4c7;
|
||||
@@ -2135,6 +2129,7 @@ html.wp-toolbar {
|
||||
.postbox .hndle,
|
||||
.stuffbox .hndle {
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@@ -3144,7 +3139,7 @@ img {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
/* Theme/Plugin file editor */
|
||||
/* Theme/Plugin Editor */
|
||||
.alignleft h2 {
|
||||
margin: 0;
|
||||
}
|
||||
@@ -3197,7 +3192,7 @@ img {
|
||||
}
|
||||
|
||||
/*
|
||||
* Styles for Theme and Plugin file editors.
|
||||
* Styles for Theme and Plugin editors.
|
||||
*/
|
||||
|
||||
/* Hide collapsed items. */
|
||||
@@ -3286,7 +3281,7 @@ img {
|
||||
.tree-folder > .current-file::before {
|
||||
right: 4px;
|
||||
height: 15px;
|
||||
width: 0;
|
||||
width: 0px;
|
||||
border-right: none;
|
||||
top: 3px;
|
||||
}
|
||||
@@ -3381,7 +3376,7 @@ img {
|
||||
}
|
||||
|
||||
#templateside li.howto {
|
||||
padding: 6px 12px 12px;
|
||||
padding: 6px 12px 12px 12px;
|
||||
}
|
||||
|
||||
.theme-editor-php .highlight {
|
||||
@@ -3433,7 +3428,7 @@ img {
|
||||
}
|
||||
|
||||
.widget-top .widget-action .toggle-indicator:before {
|
||||
padding: 1px 0 1px 2px;
|
||||
padding: 1px 0px 1px 2px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
@@ -3527,6 +3522,7 @@ img {
|
||||
border-right: 1px solid #dcdcde;
|
||||
border-left: 1px solid #dcdcde;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@@ -3758,6 +3754,10 @@ img {
|
||||
|
||||
}
|
||||
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
html.wp-toolbar {
|
||||
padding-top: 46px;
|
||||
@@ -3828,7 +3828,7 @@ img {
|
||||
.wrap div.updated,
|
||||
.wrap div.error,
|
||||
.media-upload-form div.error {
|
||||
margin: 20px 0 10px;
|
||||
margin: 20px 0 10px 0;
|
||||
padding: 5px 10px;
|
||||
font-size: 14px;
|
||||
line-height: 175%;
|
||||
@@ -3938,7 +3938,7 @@ img {
|
||||
right: -8px;
|
||||
}
|
||||
.tree-folder > li::before {
|
||||
top: 0;
|
||||
top: 0px;
|
||||
height: 13px;
|
||||
}
|
||||
.tree-folder > .current-file::before {
|
||||
|
||||
4
wp-admin/css/common-rtl.min.css
vendored
4
wp-admin/css/common-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -417,7 +417,7 @@ code {
|
||||
|
||||
kbd,
|
||||
code {
|
||||
padding: 3px 5px 2px;
|
||||
padding: 3px 5px 2px 5px;
|
||||
margin: 0 1px;
|
||||
background: #f0f0f1;
|
||||
background: rgba(0, 0, 0, 0.07);
|
||||
@@ -582,7 +582,7 @@ code {
|
||||
font-size: 23px;
|
||||
font-weight: 400;
|
||||
margin: 0;
|
||||
padding: 9px 0 4px;
|
||||
padding: 9px 0 4px 0;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
@@ -605,10 +605,6 @@ code {
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.subtitle strong {
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.wrap .add-new-h2, /* deprecated */
|
||||
.wrap .add-new-h2:active, /* deprecated */
|
||||
.wrap .page-title-action,
|
||||
@@ -823,6 +819,8 @@ img.emoji {
|
||||
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:focus .remove-tag-icon:before,
|
||||
#bulk-titles div a:hover:before,
|
||||
@@ -880,9 +878,7 @@ hr {
|
||||
#media-items a.delete,
|
||||
#media-items a.delete-permanently,
|
||||
#nav-menu-footer .menu-delete,
|
||||
#delete-link a.delete,
|
||||
a#remove-post-thumbnail,
|
||||
.privacy_requests .remove-personal-data .remove-personal-data-handle {
|
||||
#delete-link a.delete {
|
||||
color: #b32d2e;
|
||||
}
|
||||
|
||||
@@ -899,9 +895,7 @@ span.required,
|
||||
#media-items a.delete:hover,
|
||||
#media-items a.delete-permanently:hover,
|
||||
#nav-menu-footer .menu-delete:hover,
|
||||
#delete-link a.delete:hover,
|
||||
a#remove-post-thumbnail:hover,
|
||||
.privacy_requests .remove-personal-data .remove-personal-data-handle:hover {
|
||||
#delete-link a.delete:hover {
|
||||
color: #b32d2e;
|
||||
border: none;
|
||||
}
|
||||
@@ -957,7 +951,7 @@ a#remove-post-thumbnail:hover,
|
||||
}
|
||||
|
||||
#minor-publishing-actions {
|
||||
padding: 10px 10px 0;
|
||||
padding: 10px 10px 0 10px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
@@ -1026,7 +1020,7 @@ th.action-links {
|
||||
top: -1px;
|
||||
padding: 4px 10px;
|
||||
border-radius: 30px;
|
||||
background: #646970;
|
||||
background: #787c82;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
@@ -1124,7 +1118,7 @@ th.action-links {
|
||||
.wp-filter .drawer-toggle:before {
|
||||
content: "\f111";
|
||||
margin: 0 5px 0 0;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
font: normal 16px/1 dashicons;
|
||||
vertical-align: text-bottom;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
@@ -1179,13 +1173,13 @@ th.action-links {
|
||||
|
||||
.show-filters .wp-filter .button.drawer-toggle {
|
||||
border-radius: 2px;
|
||||
background: #646970;
|
||||
background: #787c82;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.show-filters .wp-filter .drawer-toggle:hover,
|
||||
.show-filters .wp-filter .drawer-toggle:focus {
|
||||
background: #2271b1;
|
||||
background: #72aee6;
|
||||
}
|
||||
|
||||
.show-filters .wp-filter .drawer-toggle:before {
|
||||
@@ -1232,7 +1226,7 @@ th.action-links {
|
||||
|
||||
.filter-group .filter-group-feature label {
|
||||
display: block;
|
||||
margin: 14px 0 14px 23px;
|
||||
margin: 14px 0px 14px 23px;
|
||||
}
|
||||
|
||||
.filter-drawer .buttons {
|
||||
@@ -1609,7 +1603,7 @@ form.upgrade {
|
||||
form.upgrade .hint {
|
||||
font-style: italic;
|
||||
font-size: 85%;
|
||||
margin: -0.5em 0 2em;
|
||||
margin: -0.5em 0 2em 0;
|
||||
}
|
||||
|
||||
.update-php .spinner {
|
||||
@@ -1707,7 +1701,7 @@ p.auto-update-status {
|
||||
/* screen options and help tabs revert */
|
||||
#screen-meta {
|
||||
display: none;
|
||||
margin: 0 20px -1px 0;
|
||||
margin: 0 20px -1px 0px;
|
||||
position: relative;
|
||||
background-color: #fff;
|
||||
border: 1px solid #c3c4c7;
|
||||
@@ -2134,6 +2128,7 @@ html.wp-toolbar {
|
||||
.postbox .hndle,
|
||||
.stuffbox .hndle {
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@@ -3143,7 +3138,7 @@ img {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
/* Theme/Plugin file editor */
|
||||
/* Theme/Plugin Editor */
|
||||
.alignleft h2 {
|
||||
margin: 0;
|
||||
}
|
||||
@@ -3196,7 +3191,7 @@ img {
|
||||
}
|
||||
|
||||
/*
|
||||
* Styles for Theme and Plugin file editors.
|
||||
* Styles for Theme and Plugin editors.
|
||||
*/
|
||||
|
||||
/* Hide collapsed items. */
|
||||
@@ -3285,7 +3280,7 @@ img {
|
||||
.tree-folder > .current-file::before {
|
||||
left: 4px;
|
||||
height: 15px;
|
||||
width: 0;
|
||||
width: 0px;
|
||||
border-left: none;
|
||||
top: 3px;
|
||||
}
|
||||
@@ -3380,7 +3375,7 @@ img {
|
||||
}
|
||||
|
||||
#templateside li.howto {
|
||||
padding: 6px 12px 12px;
|
||||
padding: 6px 12px 12px 12px;
|
||||
}
|
||||
|
||||
.theme-editor-php .highlight {
|
||||
@@ -3432,7 +3427,7 @@ img {
|
||||
}
|
||||
|
||||
.widget-top .widget-action .toggle-indicator:before {
|
||||
padding: 1px 2px 1px 0;
|
||||
padding: 1px 2px 1px 0px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
@@ -3526,6 +3521,7 @@ img {
|
||||
border-left: 1px solid #dcdcde;
|
||||
border-right: 1px solid #dcdcde;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@@ -3757,6 +3753,10 @@ img {
|
||||
|
||||
}
|
||||
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
html.wp-toolbar {
|
||||
padding-top: 46px;
|
||||
@@ -3827,7 +3827,7 @@ img {
|
||||
.wrap div.updated,
|
||||
.wrap div.error,
|
||||
.media-upload-form div.error {
|
||||
margin: 20px 0 10px;
|
||||
margin: 20px 0 10px 0;
|
||||
padding: 5px 10px;
|
||||
font-size: 14px;
|
||||
line-height: 175%;
|
||||
@@ -3937,7 +3937,7 @@ img {
|
||||
left: -8px;
|
||||
}
|
||||
.tree-folder > li::before {
|
||||
top: 0;
|
||||
top: 0px;
|
||||
height: 13px;
|
||||
}
|
||||
.tree-folder > .current-file::before {
|
||||
|
||||
4
wp-admin/css/common.min.css
vendored
4
wp-admin/css/common.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -106,12 +106,6 @@ body:not(.ready) #customize-save-button-wrapper .save {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
#customize-sidebar-outer-content {
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section-outer {
|
||||
display: none !important;
|
||||
}
|
||||
@@ -130,12 +124,6 @@ body:not(.ready) #customize-save-button-wrapper .save {
|
||||
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 {
|
||||
margin: 0;
|
||||
}
|
||||
@@ -550,13 +538,6 @@ body.trashing #publish-settings {
|
||||
.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 {
|
||||
color: #50575e;
|
||||
background-color: #fff;
|
||||
@@ -655,14 +636,6 @@ body.trashing #publish-settings {
|
||||
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 {
|
||||
transition: none;
|
||||
}
|
||||
@@ -744,7 +717,7 @@ body.trashing #publish-settings {
|
||||
}
|
||||
|
||||
.customize-section-title {
|
||||
margin: -12px -12px 0;
|
||||
margin: -12px -12px 0 -12px;
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
background: #fff;
|
||||
}
|
||||
@@ -767,11 +740,11 @@ div.customize-section-description p:last-child {
|
||||
|
||||
#customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
padding: 12px;
|
||||
padding: 12px 12px 12px 12px;
|
||||
}
|
||||
|
||||
.ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
|
||||
padding: 12px 12px 13px;
|
||||
padding: 12px 12px 13px 12px;
|
||||
}
|
||||
|
||||
.customize-section-title h3,
|
||||
@@ -950,8 +923,7 @@ p.customize-section-description {
|
||||
.customize-control input[type="number"],
|
||||
.customize-control input[type="search"],
|
||||
.customize-control input[type="tel"],
|
||||
.customize-control input[type="url"],
|
||||
.customize-control input[type="range"] {
|
||||
.customize-control input[type="url"] {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
@@ -1142,7 +1114,7 @@ p.customize-section-description {
|
||||
*/
|
||||
|
||||
#customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */
|
||||
margin: 4px 0 8px;
|
||||
margin: 4px 0 8px 0;
|
||||
padding: 0;
|
||||
cursor: default;
|
||||
}
|
||||
@@ -1155,7 +1127,7 @@ p.customize-section-description {
|
||||
|
||||
#customize-controls .customize-control-notifications-container li.notice {
|
||||
list-style: none;
|
||||
margin: 0 0 6px;
|
||||
margin: 0 0 6px 0;
|
||||
padding: 9px 14px;
|
||||
overflow: hidden;
|
||||
}
|
||||
@@ -1294,6 +1266,7 @@ p.customize-section-description {
|
||||
padding: 4px 5px;
|
||||
border: 2px solid #f0f0f1;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@@ -1457,7 +1430,7 @@ p.customize-section-description {
|
||||
}
|
||||
|
||||
.customize-control-header .header-view:last-child {
|
||||
margin-bottom: 0;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
/* Convoluted, but 'outline' support isn't good enough yet */
|
||||
@@ -1693,7 +1666,7 @@ p.customize-section-description {
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
border-right: none;
|
||||
border-left: none;
|
||||
margin: 0 0 15px;
|
||||
margin: 0 0 15px 0;
|
||||
padding-left: 100px; /* Space for the button */
|
||||
}
|
||||
|
||||
@@ -1734,12 +1707,6 @@ p.customize-section-description {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
#customize-notifications-area .notification-message button.switch-to-editor {
|
||||
display: block;
|
||||
margin-top: 6px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-panel-themes > .accordion-section-title:after {
|
||||
display: none;
|
||||
}
|
||||
@@ -1758,12 +1725,6 @@ p.customize-section-description {
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.control-panel-themes .customize-themes-full-container {
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1670px) {
|
||||
.control-panel-themes .customize-themes-full-container {
|
||||
width: 82%;
|
||||
@@ -1901,7 +1862,7 @@ p.customize-section-description {
|
||||
}
|
||||
|
||||
.control-panel-themes .customize-themes-notifications .notice {
|
||||
margin: 0 0 25px;
|
||||
margin: 0 0 25px 0;
|
||||
}
|
||||
|
||||
.customize-themes-full-container .customize-themes-section {
|
||||
@@ -1915,7 +1876,7 @@ p.customize-section-description {
|
||||
|
||||
.control-section .customize-section-text-before {
|
||||
padding: 0 15px 8px 0;
|
||||
margin: 15px 0 0;
|
||||
margin: 15px 0 0 0;
|
||||
line-height: 16px;
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
color: #50575e;
|
||||
@@ -2136,7 +2097,7 @@ p.customize-section-description {
|
||||
position: relative;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
margin: 0 0 25px;
|
||||
margin: 0 0 25px 0;
|
||||
}
|
||||
.filter-drawer {
|
||||
top: 46px;
|
||||
@@ -2246,7 +2207,7 @@ p.customize-section-description {
|
||||
width: 26px;
|
||||
display: block;
|
||||
line-height: 2.3;
|
||||
padding: 0 8px;
|
||||
padding: 0 8px 0 8px;
|
||||
border-left: 1px solid #dcdcde;
|
||||
}
|
||||
|
||||
@@ -2407,7 +2368,7 @@ body.cheatin h1 {
|
||||
color: #50575e;
|
||||
font-size: 24px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
margin: 30px 0 0;
|
||||
margin: 30px 0 0 0;
|
||||
padding: 0 0 7px;
|
||||
}
|
||||
|
||||
@@ -2429,6 +2390,7 @@ body.cheatin p {
|
||||
margin: 0 10px 0 0;
|
||||
transition: all 0.2s;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
outline: none;
|
||||
}
|
||||
@@ -2642,7 +2604,7 @@ body.adding-widget .add-new-widget:before,
|
||||
height: 30px;
|
||||
line-height: 2.1;
|
||||
text-align: center;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
#available-widgets-filter .clear-results,
|
||||
@@ -2710,7 +2672,7 @@ body.adding-widget .add-new-widget:before,
|
||||
top: 7px;
|
||||
right: 26px;
|
||||
z-index: 1;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
line-height: 2;
|
||||
|
||||
2
wp-admin/css/customize-controls-rtl.min.css
vendored
2
wp-admin/css/customize-controls-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -105,12 +105,6 @@ body:not(.ready) #customize-save-button-wrapper .save {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
#customize-sidebar-outer-content {
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section-outer {
|
||||
display: none !important;
|
||||
}
|
||||
@@ -129,12 +123,6 @@ body:not(.ready) #customize-save-button-wrapper .save {
|
||||
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 {
|
||||
margin: 0;
|
||||
}
|
||||
@@ -549,13 +537,6 @@ body.trashing #publish-settings {
|
||||
.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 {
|
||||
color: #50575e;
|
||||
background-color: #fff;
|
||||
@@ -654,14 +635,6 @@ body.trashing #publish-settings {
|
||||
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 {
|
||||
transition: none;
|
||||
}
|
||||
@@ -743,7 +716,7 @@ body.trashing #publish-settings {
|
||||
}
|
||||
|
||||
.customize-section-title {
|
||||
margin: -12px -12px 0;
|
||||
margin: -12px -12px 0 -12px;
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
background: #fff;
|
||||
}
|
||||
@@ -766,11 +739,11 @@ div.customize-section-description p:last-child {
|
||||
|
||||
#customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
padding: 12px;
|
||||
padding: 12px 12px 12px 12px;
|
||||
}
|
||||
|
||||
.ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
|
||||
padding: 12px 12px 13px;
|
||||
padding: 12px 12px 13px 12px;
|
||||
}
|
||||
|
||||
.customize-section-title h3,
|
||||
@@ -949,8 +922,7 @@ p.customize-section-description {
|
||||
.customize-control input[type="number"],
|
||||
.customize-control input[type="search"],
|
||||
.customize-control input[type="tel"],
|
||||
.customize-control input[type="url"],
|
||||
.customize-control input[type="range"] {
|
||||
.customize-control input[type="url"] {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
@@ -1141,7 +1113,7 @@ p.customize-section-description {
|
||||
*/
|
||||
|
||||
#customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */
|
||||
margin: 4px 0 8px;
|
||||
margin: 4px 0 8px 0;
|
||||
padding: 0;
|
||||
cursor: default;
|
||||
}
|
||||
@@ -1154,7 +1126,7 @@ p.customize-section-description {
|
||||
|
||||
#customize-controls .customize-control-notifications-container li.notice {
|
||||
list-style: none;
|
||||
margin: 0 0 6px;
|
||||
margin: 0 0 6px 0;
|
||||
padding: 9px 14px;
|
||||
overflow: hidden;
|
||||
}
|
||||
@@ -1293,6 +1265,7 @@ p.customize-section-description {
|
||||
padding: 4px 5px;
|
||||
border: 2px solid #f0f0f1;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@@ -1456,7 +1429,7 @@ p.customize-section-description {
|
||||
}
|
||||
|
||||
.customize-control-header .header-view:last-child {
|
||||
margin-bottom: 0;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
/* Convoluted, but 'outline' support isn't good enough yet */
|
||||
@@ -1692,7 +1665,7 @@ p.customize-section-description {
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
margin: 0 0 15px;
|
||||
margin: 0 0 15px 0;
|
||||
padding-right: 100px; /* Space for the button */
|
||||
}
|
||||
|
||||
@@ -1733,12 +1706,6 @@ p.customize-section-description {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
#customize-notifications-area .notification-message button.switch-to-editor {
|
||||
display: block;
|
||||
margin-top: 6px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-panel-themes > .accordion-section-title:after {
|
||||
display: none;
|
||||
}
|
||||
@@ -1757,12 +1724,6 @@ p.customize-section-description {
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.control-panel-themes .customize-themes-full-container {
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1670px) {
|
||||
.control-panel-themes .customize-themes-full-container {
|
||||
width: 82%;
|
||||
@@ -1900,7 +1861,7 @@ p.customize-section-description {
|
||||
}
|
||||
|
||||
.control-panel-themes .customize-themes-notifications .notice {
|
||||
margin: 0 0 25px;
|
||||
margin: 0 0 25px 0;
|
||||
}
|
||||
|
||||
.customize-themes-full-container .customize-themes-section {
|
||||
@@ -1914,7 +1875,7 @@ p.customize-section-description {
|
||||
|
||||
.control-section .customize-section-text-before {
|
||||
padding: 0 0 8px 15px;
|
||||
margin: 15px 0 0;
|
||||
margin: 15px 0 0 0;
|
||||
line-height: 16px;
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
color: #50575e;
|
||||
@@ -2135,7 +2096,7 @@ p.customize-section-description {
|
||||
position: relative;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
margin: 0 0 25px;
|
||||
margin: 0 0 25px 0;
|
||||
}
|
||||
.filter-drawer {
|
||||
top: 46px;
|
||||
@@ -2245,7 +2206,7 @@ p.customize-section-description {
|
||||
width: 26px;
|
||||
display: block;
|
||||
line-height: 2.3;
|
||||
padding: 0 8px;
|
||||
padding: 0 8px 0 8px;
|
||||
border-right: 1px solid #dcdcde;
|
||||
}
|
||||
|
||||
@@ -2406,7 +2367,7 @@ body.cheatin h1 {
|
||||
color: #50575e;
|
||||
font-size: 24px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
margin: 30px 0 0;
|
||||
margin: 30px 0 0 0;
|
||||
padding: 0 0 7px;
|
||||
}
|
||||
|
||||
@@ -2428,6 +2389,7 @@ body.cheatin p {
|
||||
margin: 0 0 0 10px;
|
||||
transition: all 0.2s;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
outline: none;
|
||||
}
|
||||
@@ -2641,7 +2603,7 @@ body.adding-widget .add-new-widget:before,
|
||||
height: 30px;
|
||||
line-height: 2.1;
|
||||
text-align: center;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
#available-widgets-filter .clear-results,
|
||||
@@ -2709,7 +2671,7 @@ body.adding-widget .add-new-widget:before,
|
||||
top: 7px;
|
||||
left: 26px;
|
||||
z-index: 1;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
line-height: 2;
|
||||
|
||||
2
wp-admin/css/customize-controls.min.css
vendored
2
wp-admin/css/customize-controls.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -12,7 +12,7 @@
|
||||
#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-description {
|
||||
padding: 0 12px;
|
||||
padding: 0 12px 0 12px;
|
||||
}
|
||||
|
||||
#customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description {
|
||||
@@ -101,7 +101,7 @@
|
||||
.wp-customizer .menu-item-settings .description-thin {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin: 0 0 8px;
|
||||
margin: 0 0 8px 0;
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item-settings input[type="text"] {
|
||||
@@ -186,7 +186,7 @@
|
||||
}
|
||||
|
||||
.wp-customizer .menu-settings dl {
|
||||
margin: 12px 0 0;
|
||||
margin: 12px 0 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
@@ -323,7 +323,7 @@
|
||||
#available-menu-items .accordion-section-title .toggle-indicator:before {
|
||||
content: "\f140";
|
||||
display: block;
|
||||
padding: 1px 0 1px 2px;
|
||||
padding: 1px 0px 1px 2px;
|
||||
speak: never;
|
||||
border-radius: 50%;
|
||||
color: #787c82;
|
||||
@@ -513,6 +513,7 @@
|
||||
transition: background-color 0.15s;
|
||||
/* Reset the value inherited from the base .accordion-section-title style. Ticket #37589. */
|
||||
-webkit-user-select: auto;
|
||||
-ms-user-select: auto;
|
||||
user-select: auto;
|
||||
}
|
||||
|
||||
@@ -582,8 +583,8 @@
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-content .available-menu-items-list {
|
||||
margin: 0 0 45px;
|
||||
padding: 1px 15px 15px;
|
||||
margin: 0 0 45px 0;
|
||||
padding: 1px 15px 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 */
|
||||
@@ -591,7 +592,7 @@
|
||||
}
|
||||
|
||||
#new-custom-menu-item .accordion-section-content {
|
||||
padding: 0 15px 15px;
|
||||
padding: 0 15px 15px 15px;
|
||||
}
|
||||
|
||||
#available-menu-items .menu-item-tpl {
|
||||
@@ -691,7 +692,7 @@
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 60px; /* below title div / search input */
|
||||
bottom: 0; /* 100% height that still triggers lazy load */
|
||||
bottom: 0px; /* 100% height that still triggers lazy load */
|
||||
max-height: none;
|
||||
width: 100%;
|
||||
padding: 1px 15px 15px;
|
||||
@@ -796,7 +797,7 @@ body.adding-menu-items #customize-preview iframe {
|
||||
|
||||
#create-new-menu-submit {
|
||||
float: left;
|
||||
margin: 0 0 12px;
|
||||
margin: 0 0 12px 0;
|
||||
}
|
||||
|
||||
.menu-delete-item {
|
||||
@@ -806,7 +807,7 @@ body.adding-menu-items #customize-preview iframe {
|
||||
}
|
||||
|
||||
.assigned-menu-locations-title p {
|
||||
margin: 0 0 8px;
|
||||
margin: 0 0 8px 0;
|
||||
}
|
||||
|
||||
li.assigned-to-menu-location .menu-delete-item {
|
||||
|
||||
2
wp-admin/css/customize-nav-menus-rtl.min.css
vendored
2
wp-admin/css/customize-nav-menus-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -11,7 +11,7 @@
|
||||
#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-description {
|
||||
padding: 0 12px;
|
||||
padding: 0 12px 0 12px;
|
||||
}
|
||||
|
||||
#customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description {
|
||||
@@ -100,7 +100,7 @@
|
||||
.wp-customizer .menu-item-settings .description-thin {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin: 0 0 8px;
|
||||
margin: 0 0 8px 0;
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item-settings input[type="text"] {
|
||||
@@ -185,7 +185,7 @@
|
||||
}
|
||||
|
||||
.wp-customizer .menu-settings dl {
|
||||
margin: 12px 0 0;
|
||||
margin: 12px 0 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
@@ -322,7 +322,7 @@
|
||||
#available-menu-items .accordion-section-title .toggle-indicator:before {
|
||||
content: "\f140";
|
||||
display: block;
|
||||
padding: 1px 2px 1px 0;
|
||||
padding: 1px 2px 1px 0px;
|
||||
speak: never;
|
||||
border-radius: 50%;
|
||||
color: #787c82;
|
||||
@@ -512,6 +512,7 @@
|
||||
transition: background-color 0.15s;
|
||||
/* Reset the value inherited from the base .accordion-section-title style. Ticket #37589. */
|
||||
-webkit-user-select: auto;
|
||||
-ms-user-select: auto;
|
||||
user-select: auto;
|
||||
}
|
||||
|
||||
@@ -581,8 +582,8 @@
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-content .available-menu-items-list {
|
||||
margin: 0 0 45px;
|
||||
padding: 1px 15px 15px;
|
||||
margin: 0 0 45px 0;
|
||||
padding: 1px 15px 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 */
|
||||
@@ -590,7 +591,7 @@
|
||||
}
|
||||
|
||||
#new-custom-menu-item .accordion-section-content {
|
||||
padding: 0 15px 15px;
|
||||
padding: 0 15px 15px 15px;
|
||||
}
|
||||
|
||||
#available-menu-items .menu-item-tpl {
|
||||
@@ -690,7 +691,7 @@
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 60px; /* below title div / search input */
|
||||
bottom: 0; /* 100% height that still triggers lazy load */
|
||||
bottom: 0px; /* 100% height that still triggers lazy load */
|
||||
max-height: none;
|
||||
width: 100%;
|
||||
padding: 1px 15px 15px;
|
||||
@@ -795,7 +796,7 @@ body.adding-menu-items #customize-preview iframe {
|
||||
|
||||
#create-new-menu-submit {
|
||||
float: right;
|
||||
margin: 0 0 12px;
|
||||
margin: 0 0 12px 0;
|
||||
}
|
||||
|
||||
.menu-delete-item {
|
||||
@@ -805,7 +806,7 @@ body.adding-menu-items #customize-preview iframe {
|
||||
}
|
||||
|
||||
.assigned-menu-locations-title p {
|
||||
margin: 0 0 8px;
|
||||
margin: 0 0 8px 0;
|
||||
}
|
||||
|
||||
li.assigned-to-menu-location .menu-delete-item {
|
||||
|
||||
2
wp-admin/css/customize-nav-menus.min.css
vendored
2
wp-admin/css/customize-nav-menus.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -55,6 +55,7 @@
|
||||
opacity: 0.7;
|
||||
pointer-events: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@@ -82,7 +83,7 @@
|
||||
}
|
||||
|
||||
.widget-inside {
|
||||
padding: 1px 10px 10px;
|
||||
padding: 1px 10px 10px 10px;
|
||||
border-top: none;
|
||||
line-height: 1.23076923;
|
||||
}
|
||||
@@ -137,7 +138,7 @@
|
||||
#customize-theme-controls .move-widget-area {
|
||||
display: none;
|
||||
background: #fff;
|
||||
border: 1px solid #c3c4c7;
|
||||
border: 1px solid #dcdcde;
|
||||
border-top: none;
|
||||
cursor: auto;
|
||||
}
|
||||
@@ -163,9 +164,10 @@
|
||||
margin: 0;
|
||||
padding: 13px 42px 15px 15px;
|
||||
color: #50575e;
|
||||
border-top: 1px solid #c3c4c7;
|
||||
border-top: 1px solid #f0f0f1;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@@ -181,12 +183,13 @@
|
||||
}
|
||||
|
||||
#customize-theme-controls .widget-area-select li:last-child {
|
||||
border-bottom: 1px solid #c3c4c7;
|
||||
border-bottom: 1px solid #f0f0f1;
|
||||
}
|
||||
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
color: #fff;
|
||||
background: #2271b1;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
|
||||
background: #72aee6;
|
||||
}
|
||||
|
||||
#customize-theme-controls .widget-area-select .selected:before {
|
||||
@@ -259,7 +262,7 @@
|
||||
|
||||
#available-widgets .widget .widget-description {
|
||||
padding: 0;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
#customize-preview {
|
||||
|
||||
2
wp-admin/css/customize-widgets-rtl.min.css
vendored
2
wp-admin/css/customize-widgets-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -54,6 +54,7 @@
|
||||
opacity: 0.7;
|
||||
pointer-events: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@@ -81,7 +82,7 @@
|
||||
}
|
||||
|
||||
.widget-inside {
|
||||
padding: 1px 10px 10px;
|
||||
padding: 1px 10px 10px 10px;
|
||||
border-top: none;
|
||||
line-height: 1.23076923;
|
||||
}
|
||||
@@ -136,7 +137,7 @@
|
||||
#customize-theme-controls .move-widget-area {
|
||||
display: none;
|
||||
background: #fff;
|
||||
border: 1px solid #c3c4c7;
|
||||
border: 1px solid #dcdcde;
|
||||
border-top: none;
|
||||
cursor: auto;
|
||||
}
|
||||
@@ -162,9 +163,10 @@
|
||||
margin: 0;
|
||||
padding: 13px 15px 15px 42px;
|
||||
color: #50575e;
|
||||
border-top: 1px solid #c3c4c7;
|
||||
border-top: 1px solid #f0f0f1;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@@ -180,12 +182,13 @@
|
||||
}
|
||||
|
||||
#customize-theme-controls .widget-area-select li:last-child {
|
||||
border-bottom: 1px solid #c3c4c7;
|
||||
border-bottom: 1px solid #f0f0f1;
|
||||
}
|
||||
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
color: #fff;
|
||||
background: #2271b1;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
|
||||
background: #72aee6;
|
||||
}
|
||||
|
||||
#customize-theme-controls .widget-area-select .selected:before {
|
||||
@@ -258,7 +261,7 @@
|
||||
|
||||
#available-widgets .widget .widget-description {
|
||||
padding: 0;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
#customize-preview {
|
||||
|
||||
2
wp-admin/css/customize-widgets.min.css
vendored
2
wp-admin/css/customize-widgets.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -111,88 +111,53 @@
|
||||
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 {
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
margin: 16px 0;
|
||||
background: #2271b1 url(../images/about-texture.png) center repeat;
|
||||
background-size: 500px 500px;
|
||||
background-blend-mode: overlay;
|
||||
font-size: 14px;
|
||||
line-height: 1.3;
|
||||
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;
|
||||
padding: 23px 10px 0;
|
||||
border: 1px solid #c3c4c7;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
||||
background: #fff;
|
||||
font-size: 13px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.welcome-panel h2 {
|
||||
margin: 0;
|
||||
font-size: 48px;
|
||||
font-weight: 600;
|
||||
line-height: 1.25;
|
||||
color: #fff;
|
||||
font-size: 21px;
|
||||
font-weight: 400;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.welcome-panel h3 {
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
line-height: 1.4;
|
||||
margin: 1.33em 0 0;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.welcome-panel li {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.welcome-panel p {
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.welcome-panel-header {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.welcome-panel-header a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.welcome-panel-header a:focus,
|
||||
.welcome-panel-header a:hover {
|
||||
color: #f5e6ab;
|
||||
.welcome-panel li a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.welcome-panel-header a:focus,
|
||||
.welcome-panel .welcome-panel-close:focus {
|
||||
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 .about-description {
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.welcome-panel .welcome-panel-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
left: 10px;
|
||||
padding: 10px 24px 10px 15px;
|
||||
padding: 10px 21px 10px 15px;
|
||||
font-size: 13px;
|
||||
line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */
|
||||
text-decoration: none;
|
||||
@@ -203,23 +168,8 @@
|
||||
top: 8px;
|
||||
right: 0;
|
||||
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 {
|
||||
margin: 15px 0 3px 13px;
|
||||
padding: 12px 36px;
|
||||
@@ -229,99 +179,54 @@
|
||||
}
|
||||
|
||||
.welcome-panel-content {
|
||||
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;
|
||||
margin-right: 13px;
|
||||
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 {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
clear: both;
|
||||
display: grid;
|
||||
z-index: 1;
|
||||
margin-top: 32px;
|
||||
padding: 48px;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 32px;
|
||||
align-self: flex-end;
|
||||
background: #fff;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
[class*="welcome-panel-icon"] {
|
||||
height: 60px;
|
||||
width: 60px;
|
||||
background-color: #1d2327;
|
||||
background-position: center;
|
||||
background-size: 24px 24px;
|
||||
background-repeat: no-repeat;
|
||||
border-radius: 100%;
|
||||
.welcome-panel .welcome-panel-column {
|
||||
width: 32%;
|
||||
min-width: 200px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.welcome-panel-column {
|
||||
display: grid;
|
||||
grid-template-columns: min-content 1fr;
|
||||
gap: 24px;
|
||||
.welcome-panel .welcome-panel-column:first-child {
|
||||
width: 36%;
|
||||
}
|
||||
|
||||
.welcome-panel-icon-pages {
|
||||
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.hide-if-no-customize {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.welcome-panel-icon-layout {
|
||||
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");
|
||||
.welcome-panel-column p {
|
||||
margin-top: 7px;
|
||||
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 {
|
||||
line-height: 1.14285714;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
|
||||
.welcome-panel .welcome-panel-column ul {
|
||||
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 {
|
||||
line-height: 1.14285714;
|
||||
list-style-type: none;
|
||||
padding: 0 0 8px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-icon {
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
/* Welcome Panel and Right Now common Icons style */
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-icon:before,
|
||||
#dashboard_right_now li a:before,
|
||||
#dashboard_right_now li span:before,
|
||||
@@ -340,56 +245,47 @@
|
||||
|
||||
/* Welcome Panel specific Icons styles */
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-write-blog:before,
|
||||
.welcome-panel .welcome-edit-page:before {
|
||||
content: "\f119";
|
||||
top: -3px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-add-page:before {
|
||||
content: "\f132";
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-setup-home:before {
|
||||
content: "\f102";
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-view-site:before {
|
||||
content: "\f115";
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-widgets-menus:before {
|
||||
content: "\f116";
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-widgets:before {
|
||||
content: "\f538";
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-menus:before {
|
||||
content: "\f163";
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-comments:before {
|
||||
content: "\f117";
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-learn-more:before {
|
||||
content: "\f118";
|
||||
top: -1px;
|
||||
@@ -459,7 +355,7 @@
|
||||
.community-events-errors [aria-hidden="true"],
|
||||
.community-events-loading[aria-hidden="true"],
|
||||
.community-events[aria-hidden="true"],
|
||||
.community-events form[aria-hidden="true"] {
|
||||
.community-events [aria-hidden="true"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -617,13 +513,13 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
.rssSummary {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget {
|
||||
font-size: 13px;
|
||||
padding: 0 12px;
|
||||
padding: 0 12px 0;
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget:last-child {
|
||||
@@ -637,7 +533,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
|
||||
#dashboard_primary .rss-widget span,
|
||||
#dashboard_primary .rss-widget span.rss-date {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget span.rss-date {
|
||||
@@ -704,7 +600,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
color: #50575e;
|
||||
background: #f6f7f7;
|
||||
border-top: 1px solid #f0f0f1;
|
||||
padding: 10px 12px 6px;
|
||||
padding: 10px 12px 6px 12px;
|
||||
}
|
||||
|
||||
#dashboard_right_now .sub h3 {
|
||||
@@ -798,7 +694,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
#dashboard_quick_press .drafts li time {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
#dashboard_quick_press .drafts p {
|
||||
@@ -861,7 +757,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
#dashboard_activity .no-activity p {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
@@ -874,7 +770,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
|
||||
#dashboard_activity .subsubsub a .count,
|
||||
#dashboard_activity .subsubsub a.current .count {
|
||||
color: #646970; /* white background on the dashboard but #f0f0f1 on list tables */
|
||||
color: #787c82; /* white background on the dashboard but #f1f1f1 on list tables */
|
||||
}
|
||||
|
||||
#future-posts ul,
|
||||
@@ -893,7 +789,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
display: inline-block;
|
||||
margin-left: 5px;
|
||||
min-width: 150px;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.activity-block {
|
||||
@@ -940,7 +836,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
#activity-widget #the-comment-list .comment-item p.row-actions {
|
||||
margin: 4px 0 0;
|
||||
margin: 4px 0 0 0;
|
||||
}
|
||||
|
||||
#activity-widget #the-comment-list .comment-item:first-child {
|
||||
@@ -1100,7 +996,7 @@ a.rsswidget {
|
||||
}
|
||||
|
||||
.rss-widget span.rss-date {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
font-size: 13px;
|
||||
margin-right: 3px;
|
||||
}
|
||||
@@ -1131,23 +1027,33 @@ a.rsswidget {
|
||||
}
|
||||
|
||||
#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
|
||||
padding-left: 128px;
|
||||
padding-left: 125px;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag .browser-icon {
|
||||
margin-top: -32px;
|
||||
margin-top: -35px;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag.postbox.browser-insecure {
|
||||
background-color: #b32d2e;
|
||||
border-color: #b32d2e;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag.postbox {
|
||||
background-color: #b32d2e;
|
||||
background-color: #dba617;
|
||||
background-image: none;
|
||||
border-color: #b32d2e;
|
||||
border-color: #f0c33c;
|
||||
color: #fff;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag.postbox.browser-insecure h2 {
|
||||
border-bottom-color: #e65054;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag.postbox h2 {
|
||||
border-bottom-color: transparent;
|
||||
border-bottom-color: #f5e6ab;
|
||||
background: transparent none;
|
||||
color: #fff;
|
||||
box-shadow: none;
|
||||
@@ -1157,10 +1063,6 @@ a.rsswidget {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag.postbox .postbox-header {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag h2.hndle {
|
||||
border: none;
|
||||
font-weight: 600;
|
||||
@@ -1207,18 +1109,6 @@ a.rsswidget {
|
||||
/* =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 */
|
||||
@media only screen and (max-width: 799px) {
|
||||
#wpbody-content #dashboard-widgets .postbox-container {
|
||||
@@ -1330,69 +1220,25 @@ a.rsswidget {
|
||||
}
|
||||
|
||||
@media screen and (max-width: 870px) {
|
||||
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
|
||||
.welcome-panel .welcome-panel-column,
|
||||
.welcome-panel .welcome-panel-column:first-child {
|
||||
display: block;
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.welcome-panel .welcome-panel-column li {
|
||||
display: inline-block;
|
||||
margin-left: 13px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
|
||||
.welcome-panel .welcome-panel-column ul {
|
||||
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) {
|
||||
.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 {
|
||||
padding: 12px;
|
||||
}
|
||||
@@ -1435,28 +1281,23 @@ a.rsswidget {
|
||||
|
||||
/* Smartphone */
|
||||
@media screen and (max-width: 600px) {
|
||||
.welcome-panel::before {
|
||||
display: none;
|
||||
/* 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-header {
|
||||
padding: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
@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;
|
||||
/* Make the close icon larger for tappability. */
|
||||
.welcome-panel .welcome-panel-close:before {
|
||||
font-size: 20px;
|
||||
top: 5px;
|
||||
right: -35px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
2
wp-admin/css/dashboard-rtl.min.css
vendored
2
wp-admin/css/dashboard-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -110,88 +110,53 @@
|
||||
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 {
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
margin: 16px 0;
|
||||
background: #2271b1 url(../images/about-texture.png) center repeat;
|
||||
background-size: 500px 500px;
|
||||
background-blend-mode: overlay;
|
||||
font-size: 14px;
|
||||
line-height: 1.3;
|
||||
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;
|
||||
padding: 23px 10px 0;
|
||||
border: 1px solid #c3c4c7;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
||||
background: #fff;
|
||||
font-size: 13px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.welcome-panel h2 {
|
||||
margin: 0;
|
||||
font-size: 48px;
|
||||
font-weight: 600;
|
||||
line-height: 1.25;
|
||||
color: #fff;
|
||||
font-size: 21px;
|
||||
font-weight: 400;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.welcome-panel h3 {
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
line-height: 1.4;
|
||||
margin: 1.33em 0 0;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.welcome-panel li {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.welcome-panel p {
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.welcome-panel-header {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.welcome-panel-header a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.welcome-panel-header a:focus,
|
||||
.welcome-panel-header a:hover {
|
||||
color: #f5e6ab;
|
||||
.welcome-panel li a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.welcome-panel-header a:focus,
|
||||
.welcome-panel .welcome-panel-close:focus {
|
||||
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 .about-description {
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.welcome-panel .welcome-panel-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
padding: 10px 15px 10px 24px;
|
||||
padding: 10px 15px 10px 21px;
|
||||
font-size: 13px;
|
||||
line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */
|
||||
text-decoration: none;
|
||||
@@ -202,23 +167,8 @@
|
||||
top: 8px;
|
||||
left: 0;
|
||||
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 {
|
||||
margin: 15px 13px 3px 0;
|
||||
padding: 12px 36px;
|
||||
@@ -228,99 +178,54 @@
|
||||
}
|
||||
|
||||
.welcome-panel-content {
|
||||
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;
|
||||
margin-left: 13px;
|
||||
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 {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
clear: both;
|
||||
display: grid;
|
||||
z-index: 1;
|
||||
margin-top: 32px;
|
||||
padding: 48px;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 32px;
|
||||
align-self: flex-end;
|
||||
background: #fff;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
[class*="welcome-panel-icon"] {
|
||||
height: 60px;
|
||||
width: 60px;
|
||||
background-color: #1d2327;
|
||||
background-position: center;
|
||||
background-size: 24px 24px;
|
||||
background-repeat: no-repeat;
|
||||
border-radius: 100%;
|
||||
.welcome-panel .welcome-panel-column {
|
||||
width: 32%;
|
||||
min-width: 200px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.welcome-panel-column {
|
||||
display: grid;
|
||||
grid-template-columns: min-content 1fr;
|
||||
gap: 24px;
|
||||
.welcome-panel .welcome-panel-column:first-child {
|
||||
width: 36%;
|
||||
}
|
||||
|
||||
.welcome-panel-icon-pages {
|
||||
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.hide-if-no-customize {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.welcome-panel-icon-layout {
|
||||
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");
|
||||
.welcome-panel-column p {
|
||||
margin-top: 7px;
|
||||
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 {
|
||||
line-height: 1.14285714;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
|
||||
.welcome-panel .welcome-panel-column ul {
|
||||
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 {
|
||||
line-height: 1.14285714;
|
||||
list-style-type: none;
|
||||
padding: 0 0 8px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-icon {
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
/* Welcome Panel and Right Now common Icons style */
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-icon:before,
|
||||
#dashboard_right_now li a:before,
|
||||
#dashboard_right_now li span:before,
|
||||
@@ -339,56 +244,47 @@
|
||||
|
||||
/* Welcome Panel specific Icons styles */
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-write-blog:before,
|
||||
.welcome-panel .welcome-edit-page:before {
|
||||
content: "\f119";
|
||||
top: -3px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-add-page:before {
|
||||
content: "\f132";
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-setup-home:before {
|
||||
content: "\f102";
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-view-site:before {
|
||||
content: "\f115";
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-widgets-menus:before {
|
||||
content: "\f116";
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-widgets:before {
|
||||
content: "\f538";
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-menus:before {
|
||||
content: "\f163";
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-comments:before {
|
||||
content: "\f117";
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
|
||||
.welcome-panel .welcome-learn-more:before {
|
||||
content: "\f118";
|
||||
top: -1px;
|
||||
@@ -458,7 +354,7 @@
|
||||
.community-events-errors [aria-hidden="true"],
|
||||
.community-events-loading[aria-hidden="true"],
|
||||
.community-events[aria-hidden="true"],
|
||||
.community-events form[aria-hidden="true"] {
|
||||
.community-events [aria-hidden="true"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -616,13 +512,13 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
.rssSummary {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget {
|
||||
font-size: 13px;
|
||||
padding: 0 12px;
|
||||
padding: 0 12px 0;
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget:last-child {
|
||||
@@ -636,7 +532,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
|
||||
#dashboard_primary .rss-widget span,
|
||||
#dashboard_primary .rss-widget span.rss-date {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget span.rss-date {
|
||||
@@ -703,7 +599,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
color: #50575e;
|
||||
background: #f6f7f7;
|
||||
border-top: 1px solid #f0f0f1;
|
||||
padding: 10px 12px 6px;
|
||||
padding: 10px 12px 6px 12px;
|
||||
}
|
||||
|
||||
#dashboard_right_now .sub h3 {
|
||||
@@ -797,7 +693,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
#dashboard_quick_press .drafts li time {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
#dashboard_quick_press .drafts p {
|
||||
@@ -860,7 +756,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
#dashboard_activity .no-activity p {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
@@ -873,7 +769,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
|
||||
#dashboard_activity .subsubsub a .count,
|
||||
#dashboard_activity .subsubsub a.current .count {
|
||||
color: #646970; /* white background on the dashboard but #f0f0f1 on list tables */
|
||||
color: #787c82; /* white background on the dashboard but #f1f1f1 on list tables */
|
||||
}
|
||||
|
||||
#future-posts ul,
|
||||
@@ -892,7 +788,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
display: inline-block;
|
||||
margin-right: 5px;
|
||||
min-width: 150px;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.activity-block {
|
||||
@@ -939,7 +835,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
#activity-widget #the-comment-list .comment-item p.row-actions {
|
||||
margin: 4px 0 0;
|
||||
margin: 4px 0 0 0;
|
||||
}
|
||||
|
||||
#activity-widget #the-comment-list .comment-item:first-child {
|
||||
@@ -1099,7 +995,7 @@ a.rsswidget {
|
||||
}
|
||||
|
||||
.rss-widget span.rss-date {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
font-size: 13px;
|
||||
margin-left: 3px;
|
||||
}
|
||||
@@ -1130,23 +1026,33 @@ a.rsswidget {
|
||||
}
|
||||
|
||||
#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
|
||||
padding-right: 128px;
|
||||
padding-right: 125px;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag .browser-icon {
|
||||
margin-top: -32px;
|
||||
margin-top: -35px;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag.postbox.browser-insecure {
|
||||
background-color: #b32d2e;
|
||||
border-color: #b32d2e;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag.postbox {
|
||||
background-color: #b32d2e;
|
||||
background-color: #dba617;
|
||||
background-image: none;
|
||||
border-color: #b32d2e;
|
||||
border-color: #f0c33c;
|
||||
color: #fff;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag.postbox.browser-insecure h2 {
|
||||
border-bottom-color: #e65054;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag.postbox h2 {
|
||||
border-bottom-color: transparent;
|
||||
border-bottom-color: #f5e6ab;
|
||||
background: transparent none;
|
||||
color: #fff;
|
||||
box-shadow: none;
|
||||
@@ -1156,10 +1062,6 @@ a.rsswidget {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag.postbox .postbox-header {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
#dashboard_browser_nag h2.hndle {
|
||||
border: none;
|
||||
font-weight: 600;
|
||||
@@ -1206,18 +1108,6 @@ a.rsswidget {
|
||||
/* =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 */
|
||||
@media only screen and (max-width: 799px) {
|
||||
#wpbody-content #dashboard-widgets .postbox-container {
|
||||
@@ -1329,69 +1219,25 @@ a.rsswidget {
|
||||
}
|
||||
|
||||
@media screen and (max-width: 870px) {
|
||||
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
|
||||
.welcome-panel .welcome-panel-column,
|
||||
.welcome-panel .welcome-panel-column:first-child {
|
||||
display: block;
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.welcome-panel .welcome-panel-column li {
|
||||
display: inline-block;
|
||||
margin-right: 13px;
|
||||
}
|
||||
|
||||
/* @deprecated 5.9.0 -- Lists removed from welcome panel. */
|
||||
.welcome-panel .welcome-panel-column ul {
|
||||
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) {
|
||||
.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 {
|
||||
padding: 12px;
|
||||
}
|
||||
@@ -1434,28 +1280,23 @@ a.rsswidget {
|
||||
|
||||
/* Smartphone */
|
||||
@media screen and (max-width: 600px) {
|
||||
.welcome-panel::before {
|
||||
display: none;
|
||||
/* 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-header {
|
||||
padding: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
@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;
|
||||
/* Make the close icon larger for tappability. */
|
||||
.welcome-panel .welcome-panel-close:before {
|
||||
font-size: 20px;
|
||||
top: 5px;
|
||||
left: -35px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
2
wp-admin/css/dashboard.min.css
vendored
2
wp-admin/css/dashboard.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -71,7 +71,7 @@ div#media-upload-header {
|
||||
|
||||
.media-upload-form label.form-help,
|
||||
td.help {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
form {
|
||||
@@ -101,7 +101,7 @@ th {
|
||||
width: 100%;
|
||||
border: none;
|
||||
text-align: justify;
|
||||
margin: 0 0 1em;
|
||||
margin: 0 0 1em 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
2
wp-admin/css/deprecated-media-rtl.min.css
vendored
2
wp-admin/css/deprecated-media-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -70,7 +70,7 @@ div#media-upload-header {
|
||||
|
||||
.media-upload-form label.form-help,
|
||||
td.help {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
form {
|
||||
@@ -100,7 +100,7 @@ th {
|
||||
width: 100%;
|
||||
border: none;
|
||||
text-align: justify;
|
||||
margin: 0 0 1em;
|
||||
margin: 0 0 1em 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
2
wp-admin/css/deprecated-media.min.css
vendored
2
wp-admin/css/deprecated-media.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -69,7 +69,7 @@
|
||||
}
|
||||
|
||||
#titlediv #title-prompt-text {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
position: absolute;
|
||||
font-size: 1.7em;
|
||||
padding: 10px;
|
||||
@@ -147,11 +147,6 @@ body.post-new-php .submitbox .submitdelete {
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
body.post-type-wp_navigation div#minor-publishing,
|
||||
body.post-type-wp_navigation .inline-edit-status {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Post Screen */
|
||||
|
||||
/* Only highlight drop zones when dragging and only in the 2 columns layout. */
|
||||
@@ -369,6 +364,7 @@ form#tags-filter {
|
||||
}
|
||||
|
||||
#wp-word-count {
|
||||
display: block;
|
||||
padding: 2px 10px;
|
||||
}
|
||||
|
||||
@@ -456,7 +452,7 @@ form#tags-filter {
|
||||
}
|
||||
|
||||
.curtime #timestamp {
|
||||
padding: 2px 0 1px;
|
||||
padding: 2px 0 1px 0;
|
||||
display: inline !important;
|
||||
height: auto !important;
|
||||
}
|
||||
@@ -656,7 +652,7 @@ form#tags-filter {
|
||||
}
|
||||
|
||||
#poststuff .inside {
|
||||
margin: 6px 0 0;
|
||||
margin: 6px 0 0 0;
|
||||
}
|
||||
|
||||
.link-php #poststuff .inside,
|
||||
@@ -707,46 +703,36 @@ form#tags-filter {
|
||||
|
||||
/**
|
||||
* Privacy Settings section
|
||||
*
|
||||
* Note: This section includes selectors from
|
||||
* Site Health where duplicate styling is used.
|
||||
*/
|
||||
|
||||
/* General */
|
||||
.privacy-settings #wpcontent,
|
||||
.privacy-settings.auto-fold #wpcontent,
|
||||
.site-health #wpcontent,
|
||||
.site-health.auto-fold #wpcontent {
|
||||
.privacy-settings.auto-fold #wpcontent {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
/* Emulates .wrap h1 styling */
|
||||
.privacy-settings-header h1,
|
||||
.health-check-header h1 {
|
||||
.privacy-settings-header h1 {
|
||||
display: inline-block;
|
||||
font-weight: 600;
|
||||
margin: 0 0.8rem 1rem;
|
||||
font-size: 23px;
|
||||
padding: 9px 0 4px;
|
||||
padding: 9px 0 4px 0;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
.privacy-settings-header,
|
||||
.health-check-header {
|
||||
.privacy-settings-header {
|
||||
text-align: center;
|
||||
margin: 0 0 1rem;
|
||||
background: #fff;
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
}
|
||||
|
||||
.privacy-settings-title-section,
|
||||
.health-check-title-section {
|
||||
.privacy-settings-title-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
clear: both;
|
||||
padding-top: 8px;
|
||||
}
|
||||
|
||||
.privacy-settings-tabs-wrapper {
|
||||
@@ -768,32 +754,27 @@ form#tags-filter {
|
||||
transition: box-shadow 0.5s ease-in-out;
|
||||
}
|
||||
|
||||
.privacy-settings-tab:nth-child(1),
|
||||
.health-check-tab:nth-child(1) {
|
||||
.privacy-settings-tab:nth-child(1) {
|
||||
-ms-grid-column: 1; /* IE 11 */
|
||||
}
|
||||
|
||||
.privacy-settings-tab:nth-child(2),
|
||||
.health-check-tab:nth-child(2) {
|
||||
.privacy-settings-tab:nth-child(2) {
|
||||
-ms-grid-column: 2; /* IE 11 */
|
||||
}
|
||||
|
||||
.privacy-settings-tab:focus,
|
||||
.health-check-tab:focus {
|
||||
.privacy-settings-tab:focus {
|
||||
color: #1d2327;
|
||||
outline: 1px solid #787c82;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.privacy-settings-tab.active,
|
||||
.health-check-tab.active {
|
||||
.privacy-settings-tab.active {
|
||||
box-shadow: inset 0 -3px #3582c4;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* Body */
|
||||
.privacy-settings-body,
|
||||
.health-check-body {
|
||||
.privacy-settings-body {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
@@ -808,13 +789,11 @@ form#tags-filter {
|
||||
}
|
||||
|
||||
/* Accordions */
|
||||
.privacy-settings-accordion,
|
||||
.health-check-accordion {
|
||||
.privacy-settings-accordion {
|
||||
border: 1px solid #c3c4c7;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-heading,
|
||||
.health-check-accordion-heading {
|
||||
.privacy-settings-accordion-heading {
|
||||
margin: 0;
|
||||
border-top: 1px solid #c3c4c7;
|
||||
font-size: inherit;
|
||||
@@ -823,13 +802,11 @@ form#tags-filter {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-heading:first-child,
|
||||
.health-check-accordion-heading:first-child {
|
||||
.privacy-settings-accordion-heading:first-child {
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger,
|
||||
.health-check-accordion-trigger {
|
||||
.privacy-settings-accordion-trigger {
|
||||
background: #fff;
|
||||
border: 0;
|
||||
color: #2c3338;
|
||||
@@ -844,19 +821,14 @@ form#tags-filter {
|
||||
width: 100%;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
-webkit-user-select: auto;
|
||||
user-select: auto;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger:hover,
|
||||
.privacy-settings-accordion-trigger:active,
|
||||
.health-check-accordion-trigger:hover,
|
||||
.health-check-accordion-trigger:active {
|
||||
.privacy-settings-accordion-trigger:active {
|
||||
background: #f6f7f7;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger:focus,
|
||||
.health-check-accordion-trigger:focus {
|
||||
.privacy-settings-accordion-trigger:focus {
|
||||
color: #1d2327;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
@@ -865,17 +837,14 @@ form#tags-filter {
|
||||
background-color: #f6f7f7;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .title,
|
||||
.health-check-accordion-trigger .title {
|
||||
.privacy-settings-accordion-trigger .title {
|
||||
pointer-events: none;
|
||||
font-weight: 600;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .icon,
|
||||
.privacy-settings-view-read .icon,
|
||||
.health-check-accordion-trigger .icon,
|
||||
.site-health-view-passed .icon {
|
||||
.privacy-settings-view-read .icon {
|
||||
border: solid #50575e;
|
||||
border-width: 0 0 2px 2px;
|
||||
height: 0.5rem;
|
||||
@@ -887,68 +856,53 @@ form#tags-filter {
|
||||
width: 0.5rem;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge,
|
||||
.health-check-accordion-trigger .badge {
|
||||
.privacy-settings-accordion-trigger .badge {
|
||||
padding: 0.1rem 0.5rem 0.15rem;
|
||||
color: #2c3338;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.blue,
|
||||
.health-check-accordion-trigger .badge.blue {
|
||||
.privacy-settings-accordion-trigger .badge.blue {
|
||||
border: 1px solid #72aee6;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.orange,
|
||||
.health-check-accordion-trigger .badge.orange {
|
||||
.privacy-settings-accordion-trigger .badge.orange {
|
||||
border: 1px solid #dba617;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.red,
|
||||
.health-check-accordion-trigger .badge.red {
|
||||
.privacy-settings-accordion-trigger .badge.red {
|
||||
border: 1px solid #e65054;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.green,
|
||||
.health-check-accordion-trigger .badge.green {
|
||||
.privacy-settings-accordion-trigger .badge.green {
|
||||
border: 1px solid #00ba37;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.purple,
|
||||
.health-check-accordion-trigger .badge.purple {
|
||||
.privacy-settings-accordion-trigger .badge.purple {
|
||||
border: 1px solid #2271b1;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.gray,
|
||||
.health-check-accordion-trigger .badge.gray {
|
||||
.privacy-settings-accordion-trigger .badge.gray {
|
||||
border: 1px solid #c3c4c7;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger[aria-expanded="true"] .icon,
|
||||
.privacy-settings-view-passed[aria-expanded="true"] .icon,
|
||||
.health-check-accordion-trigger[aria-expanded="true"] .icon,
|
||||
.site-health-view-passed[aria-expanded="true"] .icon {
|
||||
.privacy-settings-view-passed[aria-expanded="true"] .icon {
|
||||
transform: translateY(-30%) rotate(135deg)
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-panel,
|
||||
.health-check-accordion-panel {
|
||||
.privacy-settings-accordion-panel {
|
||||
margin: 0;
|
||||
padding: 1em 1.5em;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-panel[hidden],
|
||||
.health-check-accordion-panel[hidden] {
|
||||
.privacy-settings-accordion-panel[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-panel a .dashicons,
|
||||
.health-check-accordion-panel a .dashicons {
|
||||
.privacy-settings-accordion-panel a .dashicons {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -981,10 +935,6 @@ form#tags-filter {
|
||||
margin: 0 0 1em;
|
||||
}
|
||||
|
||||
.privacy-text-copy span {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-panel .wp-suggested-text > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),
|
||||
.privacy-settings-accordion-panel .wp-suggested-text div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),
|
||||
.privacy-settings-accordion-panel > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),
|
||||
@@ -997,19 +947,16 @@ form#tags-filter {
|
||||
/* Media queries */
|
||||
@media screen and (max-width: 782px) {
|
||||
|
||||
.privacy-settings-body,
|
||||
.health-check-body {
|
||||
.privacy-settings-body {
|
||||
margin: 0 12px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.privacy-settings .notice,
|
||||
.site-health .notice {
|
||||
.privacy-settings .notice {
|
||||
margin: 5px 10px 15px;
|
||||
}
|
||||
|
||||
.privacy-settings .update-nag,
|
||||
.site-health .update-nag {
|
||||
.privacy-settings .update-nag {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
@@ -1017,17 +964,11 @@ form#tags-filter {
|
||||
input#create-page {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.wp-core-ui button.privacy-text-copy {
|
||||
white-space: normal;
|
||||
line-height: 1.8;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1004px) {
|
||||
|
||||
.privacy-settings-body,
|
||||
.health-check-body {
|
||||
.privacy-settings-body {
|
||||
margin: 0 22px;
|
||||
width: auto;
|
||||
}
|
||||
@@ -1369,7 +1310,7 @@ p.description code {
|
||||
}
|
||||
|
||||
#poststuff .tagsdiv .howto {
|
||||
margin: 1em 0 6px;
|
||||
margin: 1em 0 6px 0;
|
||||
}
|
||||
|
||||
.ajaxtag .newtag {
|
||||
@@ -1496,7 +1437,7 @@ p.popular-tags a {
|
||||
content: "(" attr( href ) ")";
|
||||
display: inline-block;
|
||||
padding: 0 4px;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
font-size: 13px;
|
||||
word-break: break-all;
|
||||
}
|
||||
@@ -1778,7 +1719,7 @@ table.links-table {
|
||||
}
|
||||
|
||||
#titlediv #title-prompt-text {
|
||||
padding: 10px;
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
#poststuff .stuffbox .inside {
|
||||
@@ -1961,7 +1902,7 @@ table.links-table {
|
||||
}
|
||||
|
||||
.misc-pub-section {
|
||||
padding: 20px 10px;
|
||||
padding: 20px 10px 20px;
|
||||
}
|
||||
|
||||
.misc-pub-section > a {
|
||||
|
||||
2
wp-admin/css/edit-rtl.min.css
vendored
2
wp-admin/css/edit-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -68,7 +68,7 @@
|
||||
}
|
||||
|
||||
#titlediv #title-prompt-text {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
position: absolute;
|
||||
font-size: 1.7em;
|
||||
padding: 10px;
|
||||
@@ -146,11 +146,6 @@ body.post-new-php .submitbox .submitdelete {
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
body.post-type-wp_navigation div#minor-publishing,
|
||||
body.post-type-wp_navigation .inline-edit-status {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Post Screen */
|
||||
|
||||
/* Only highlight drop zones when dragging and only in the 2 columns layout. */
|
||||
@@ -368,6 +363,7 @@ form#tags-filter {
|
||||
}
|
||||
|
||||
#wp-word-count {
|
||||
display: block;
|
||||
padding: 2px 10px;
|
||||
}
|
||||
|
||||
@@ -455,7 +451,7 @@ form#tags-filter {
|
||||
}
|
||||
|
||||
.curtime #timestamp {
|
||||
padding: 2px 0 1px;
|
||||
padding: 2px 0 1px 0;
|
||||
display: inline !important;
|
||||
height: auto !important;
|
||||
}
|
||||
@@ -655,7 +651,7 @@ form#tags-filter {
|
||||
}
|
||||
|
||||
#poststuff .inside {
|
||||
margin: 6px 0 0;
|
||||
margin: 6px 0 0 0;
|
||||
}
|
||||
|
||||
.link-php #poststuff .inside,
|
||||
@@ -706,46 +702,36 @@ form#tags-filter {
|
||||
|
||||
/**
|
||||
* Privacy Settings section
|
||||
*
|
||||
* Note: This section includes selectors from
|
||||
* Site Health where duplicate styling is used.
|
||||
*/
|
||||
|
||||
/* General */
|
||||
.privacy-settings #wpcontent,
|
||||
.privacy-settings.auto-fold #wpcontent,
|
||||
.site-health #wpcontent,
|
||||
.site-health.auto-fold #wpcontent {
|
||||
.privacy-settings.auto-fold #wpcontent {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
/* Emulates .wrap h1 styling */
|
||||
.privacy-settings-header h1,
|
||||
.health-check-header h1 {
|
||||
.privacy-settings-header h1 {
|
||||
display: inline-block;
|
||||
font-weight: 600;
|
||||
margin: 0 0.8rem 1rem;
|
||||
font-size: 23px;
|
||||
padding: 9px 0 4px;
|
||||
padding: 9px 0 4px 0;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
.privacy-settings-header,
|
||||
.health-check-header {
|
||||
.privacy-settings-header {
|
||||
text-align: center;
|
||||
margin: 0 0 1rem;
|
||||
background: #fff;
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
}
|
||||
|
||||
.privacy-settings-title-section,
|
||||
.health-check-title-section {
|
||||
.privacy-settings-title-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
clear: both;
|
||||
padding-top: 8px;
|
||||
}
|
||||
|
||||
.privacy-settings-tabs-wrapper {
|
||||
@@ -767,32 +753,27 @@ form#tags-filter {
|
||||
transition: box-shadow 0.5s ease-in-out;
|
||||
}
|
||||
|
||||
.privacy-settings-tab:nth-child(1),
|
||||
.health-check-tab:nth-child(1) {
|
||||
.privacy-settings-tab:nth-child(1) {
|
||||
-ms-grid-column: 1; /* IE 11 */
|
||||
}
|
||||
|
||||
.privacy-settings-tab:nth-child(2),
|
||||
.health-check-tab:nth-child(2) {
|
||||
.privacy-settings-tab:nth-child(2) {
|
||||
-ms-grid-column: 2; /* IE 11 */
|
||||
}
|
||||
|
||||
.privacy-settings-tab:focus,
|
||||
.health-check-tab:focus {
|
||||
.privacy-settings-tab:focus {
|
||||
color: #1d2327;
|
||||
outline: 1px solid #787c82;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.privacy-settings-tab.active,
|
||||
.health-check-tab.active {
|
||||
.privacy-settings-tab.active {
|
||||
box-shadow: inset 0 -3px #3582c4;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* Body */
|
||||
.privacy-settings-body,
|
||||
.health-check-body {
|
||||
.privacy-settings-body {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
@@ -807,13 +788,11 @@ form#tags-filter {
|
||||
}
|
||||
|
||||
/* Accordions */
|
||||
.privacy-settings-accordion,
|
||||
.health-check-accordion {
|
||||
.privacy-settings-accordion {
|
||||
border: 1px solid #c3c4c7;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-heading,
|
||||
.health-check-accordion-heading {
|
||||
.privacy-settings-accordion-heading {
|
||||
margin: 0;
|
||||
border-top: 1px solid #c3c4c7;
|
||||
font-size: inherit;
|
||||
@@ -822,13 +801,11 @@ form#tags-filter {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-heading:first-child,
|
||||
.health-check-accordion-heading:first-child {
|
||||
.privacy-settings-accordion-heading:first-child {
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger,
|
||||
.health-check-accordion-trigger {
|
||||
.privacy-settings-accordion-trigger {
|
||||
background: #fff;
|
||||
border: 0;
|
||||
color: #2c3338;
|
||||
@@ -843,19 +820,14 @@ form#tags-filter {
|
||||
width: 100%;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
-webkit-user-select: auto;
|
||||
user-select: auto;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger:hover,
|
||||
.privacy-settings-accordion-trigger:active,
|
||||
.health-check-accordion-trigger:hover,
|
||||
.health-check-accordion-trigger:active {
|
||||
.privacy-settings-accordion-trigger:active {
|
||||
background: #f6f7f7;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger:focus,
|
||||
.health-check-accordion-trigger:focus {
|
||||
.privacy-settings-accordion-trigger:focus {
|
||||
color: #1d2327;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
@@ -864,17 +836,14 @@ form#tags-filter {
|
||||
background-color: #f6f7f7;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .title,
|
||||
.health-check-accordion-trigger .title {
|
||||
.privacy-settings-accordion-trigger .title {
|
||||
pointer-events: none;
|
||||
font-weight: 600;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .icon,
|
||||
.privacy-settings-view-read .icon,
|
||||
.health-check-accordion-trigger .icon,
|
||||
.site-health-view-passed .icon {
|
||||
.privacy-settings-view-read .icon {
|
||||
border: solid #50575e;
|
||||
border-width: 0 2px 2px 0;
|
||||
height: 0.5rem;
|
||||
@@ -886,68 +855,53 @@ form#tags-filter {
|
||||
width: 0.5rem;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge,
|
||||
.health-check-accordion-trigger .badge {
|
||||
.privacy-settings-accordion-trigger .badge {
|
||||
padding: 0.1rem 0.5rem 0.15rem;
|
||||
color: #2c3338;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge {
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.blue,
|
||||
.health-check-accordion-trigger .badge.blue {
|
||||
.privacy-settings-accordion-trigger .badge.blue {
|
||||
border: 1px solid #72aee6;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.orange,
|
||||
.health-check-accordion-trigger .badge.orange {
|
||||
.privacy-settings-accordion-trigger .badge.orange {
|
||||
border: 1px solid #dba617;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.red,
|
||||
.health-check-accordion-trigger .badge.red {
|
||||
.privacy-settings-accordion-trigger .badge.red {
|
||||
border: 1px solid #e65054;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.green,
|
||||
.health-check-accordion-trigger .badge.green {
|
||||
.privacy-settings-accordion-trigger .badge.green {
|
||||
border: 1px solid #00ba37;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.purple,
|
||||
.health-check-accordion-trigger .badge.purple {
|
||||
.privacy-settings-accordion-trigger .badge.purple {
|
||||
border: 1px solid #2271b1;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger .badge.gray,
|
||||
.health-check-accordion-trigger .badge.gray {
|
||||
.privacy-settings-accordion-trigger .badge.gray {
|
||||
border: 1px solid #c3c4c7;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-trigger[aria-expanded="true"] .icon,
|
||||
.privacy-settings-view-passed[aria-expanded="true"] .icon,
|
||||
.health-check-accordion-trigger[aria-expanded="true"] .icon,
|
||||
.site-health-view-passed[aria-expanded="true"] .icon {
|
||||
.privacy-settings-view-passed[aria-expanded="true"] .icon {
|
||||
transform: translateY(-30%) rotate(-135deg)
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-panel,
|
||||
.health-check-accordion-panel {
|
||||
.privacy-settings-accordion-panel {
|
||||
margin: 0;
|
||||
padding: 1em 1.5em;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-panel[hidden],
|
||||
.health-check-accordion-panel[hidden] {
|
||||
.privacy-settings-accordion-panel[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-panel a .dashicons,
|
||||
.health-check-accordion-panel a .dashicons {
|
||||
.privacy-settings-accordion-panel a .dashicons {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -980,10 +934,6 @@ form#tags-filter {
|
||||
margin: 0 0 1em;
|
||||
}
|
||||
|
||||
.privacy-text-copy span {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.privacy-settings-accordion-panel .wp-suggested-text > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),
|
||||
.privacy-settings-accordion-panel .wp-suggested-text div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),
|
||||
.privacy-settings-accordion-panel > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),
|
||||
@@ -996,19 +946,16 @@ form#tags-filter {
|
||||
/* Media queries */
|
||||
@media screen and (max-width: 782px) {
|
||||
|
||||
.privacy-settings-body,
|
||||
.health-check-body {
|
||||
.privacy-settings-body {
|
||||
margin: 0 12px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.privacy-settings .notice,
|
||||
.site-health .notice {
|
||||
.privacy-settings .notice {
|
||||
margin: 5px 10px 15px;
|
||||
}
|
||||
|
||||
.privacy-settings .update-nag,
|
||||
.site-health .update-nag {
|
||||
.privacy-settings .update-nag {
|
||||
margin-right: 10px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
@@ -1016,17 +963,11 @@ form#tags-filter {
|
||||
input#create-page {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.wp-core-ui button.privacy-text-copy {
|
||||
white-space: normal;
|
||||
line-height: 1.8;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1004px) {
|
||||
|
||||
.privacy-settings-body,
|
||||
.health-check-body {
|
||||
.privacy-settings-body {
|
||||
margin: 0 22px;
|
||||
width: auto;
|
||||
}
|
||||
@@ -1368,7 +1309,7 @@ p.description code {
|
||||
}
|
||||
|
||||
#poststuff .tagsdiv .howto {
|
||||
margin: 1em 0 6px;
|
||||
margin: 1em 0 6px 0;
|
||||
}
|
||||
|
||||
.ajaxtag .newtag {
|
||||
@@ -1495,7 +1436,7 @@ p.popular-tags a {
|
||||
content: "(" attr( href ) ")";
|
||||
display: inline-block;
|
||||
padding: 0 4px;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
font-size: 13px;
|
||||
word-break: break-all;
|
||||
}
|
||||
@@ -1777,7 +1718,7 @@ table.links-table {
|
||||
}
|
||||
|
||||
#titlediv #title-prompt-text {
|
||||
padding: 10px;
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
#poststuff .stuffbox .inside {
|
||||
@@ -1960,7 +1901,7 @@ table.links-table {
|
||||
}
|
||||
|
||||
.misc-pub-section {
|
||||
padding: 20px 10px;
|
||||
padding: 20px 10px 20px;
|
||||
}
|
||||
|
||||
.misc-pub-section > a {
|
||||
|
||||
2
wp-admin/css/edit.min.css
vendored
2
wp-admin/css/edit.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -33,7 +33,7 @@ select {
|
||||
}
|
||||
|
||||
textarea.code {
|
||||
padding: 4px 6px 1px;
|
||||
padding: 4px 6px 1px 6px;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
@@ -227,16 +227,16 @@ textarea[readonly] {
|
||||
}
|
||||
|
||||
::-webkit-input-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
::-moz-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
:-ms-input-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.form-invalid .form-required,
|
||||
@@ -594,10 +594,6 @@ fieldset label,
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.password-input-wrapper input {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
}
|
||||
|
||||
#pass1.short, #pass1-text.short {
|
||||
border-color: #e65054;
|
||||
}
|
||||
@@ -1000,8 +996,8 @@ table.form-table td .updated p {
|
||||
|
||||
.pressthis-bookmarklet span {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
padding: 0 9px 8px 12px;
|
||||
margin: 0px 0 0;
|
||||
padding: 0px 9px 8px 12px;
|
||||
}
|
||||
|
||||
.pressthis-bookmarklet span:before {
|
||||
@@ -1226,7 +1222,7 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-form .notice {
|
||||
margin: 0 0 20px;
|
||||
margin: 0 0 20px 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
@@ -1237,12 +1233,9 @@ table.form-table td .updated p {
|
||||
margin-bottom: 1.3em;
|
||||
}
|
||||
|
||||
.tools-privacy-policy-page input.button {
|
||||
margin: 0 6px 0 1px;
|
||||
}
|
||||
|
||||
.tools-privacy-policy-page input.button,
|
||||
.tools-privacy-policy-page select {
|
||||
margin: 0 6px 0.5em 1px;
|
||||
margin: 0 6px 0 1px;
|
||||
}
|
||||
|
||||
.tools-privacy-edit {
|
||||
@@ -1325,7 +1318,7 @@ table.form-table td .updated p {
|
||||
.status-label.status-request-pending {
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.status-label.status-request-failed {
|
||||
@@ -1563,13 +1556,13 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
.form-table th {
|
||||
padding: 10px 0 0;
|
||||
padding: 10px 0 0 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.form-table td {
|
||||
margin-bottom: 0;
|
||||
padding: 4px 0 6px;
|
||||
padding: 4px 0 6px 0;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure td code {
|
||||
|
||||
2
wp-admin/css/forms-rtl.min.css
vendored
2
wp-admin/css/forms-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -32,7 +32,7 @@ select {
|
||||
}
|
||||
|
||||
textarea.code {
|
||||
padding: 4px 6px 1px;
|
||||
padding: 4px 6px 1px 6px;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
@@ -226,16 +226,16 @@ textarea[readonly] {
|
||||
}
|
||||
|
||||
::-webkit-input-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
::-moz-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
:-ms-input-placeholder {
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.form-invalid .form-required,
|
||||
@@ -593,10 +593,6 @@ fieldset label,
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.password-input-wrapper input {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
}
|
||||
|
||||
#pass1.short, #pass1-text.short {
|
||||
border-color: #e65054;
|
||||
}
|
||||
@@ -999,8 +995,8 @@ table.form-table td .updated p {
|
||||
|
||||
.pressthis-bookmarklet span {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
padding: 0 12px 8px 9px;
|
||||
margin: 0px 0 0;
|
||||
padding: 0px 12px 8px 9px;
|
||||
}
|
||||
|
||||
.pressthis-bookmarklet span:before {
|
||||
@@ -1225,7 +1221,7 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-form .notice {
|
||||
margin: 0 0 20px;
|
||||
margin: 0 0 20px 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
@@ -1236,12 +1232,9 @@ table.form-table td .updated p {
|
||||
margin-bottom: 1.3em;
|
||||
}
|
||||
|
||||
.tools-privacy-policy-page input.button {
|
||||
margin: 0 1px 0 6px;
|
||||
}
|
||||
|
||||
.tools-privacy-policy-page input.button,
|
||||
.tools-privacy-policy-page select {
|
||||
margin: 0 1px 0.5em 6px;
|
||||
margin: 0 1px 0 6px;
|
||||
}
|
||||
|
||||
.tools-privacy-edit {
|
||||
@@ -1324,7 +1317,7 @@ table.form-table td .updated p {
|
||||
.status-label.status-request-pending {
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
color: #646970;
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
.status-label.status-request-failed {
|
||||
@@ -1562,13 +1555,13 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
.form-table th {
|
||||
padding: 10px 0 0;
|
||||
padding: 10px 0 0 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.form-table td {
|
||||
margin-bottom: 0;
|
||||
padding: 4px 0 6px;
|
||||
padding: 4px 0 6px 0;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure td code {
|
||||
|
||||
2
wp-admin/css/forms.min.css
vendored
2
wp-admin/css/forms.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -10,7 +10,7 @@ body {
|
||||
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;
|
||||
padding: 20px 20px 10px 20px;
|
||||
max-width: 700px;
|
||||
-webkit-font-smoothing: subpixel-antialiased;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
||||
@@ -79,7 +79,7 @@ label {
|
||||
|
||||
#logo {
|
||||
margin: -130px auto 25px;
|
||||
padding: 0 0 25px;
|
||||
padding: 0 0 25px 0;
|
||||
width: 84px;
|
||||
height: 84px;
|
||||
overflow: hidden;
|
||||
@@ -142,7 +142,7 @@ textarea {
|
||||
}
|
||||
|
||||
.form-table p {
|
||||
margin: 4px 0 0;
|
||||
margin: 4px 0 0 0;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
@@ -325,7 +325,7 @@ body.language-chooser {
|
||||
color: #0a4b78;
|
||||
}
|
||||
|
||||
.language-chooser .step {
|
||||
.language-chooser p {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
||||
2
wp-admin/css/install-rtl.min.css
vendored
2
wp-admin/css/install-rtl.min.css
vendored
@@ -1,2 +1,2 @@
|
||||
/*! 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;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)}}
|
||||
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 p{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)}}
|
||||
@@ -9,7 +9,7 @@ body {
|
||||
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;
|
||||
padding: 20px 20px 10px 20px;
|
||||
max-width: 700px;
|
||||
-webkit-font-smoothing: subpixel-antialiased;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
||||
@@ -78,7 +78,7 @@ label {
|
||||
|
||||
#logo {
|
||||
margin: -130px auto 25px;
|
||||
padding: 0 0 25px;
|
||||
padding: 0 0 25px 0;
|
||||
width: 84px;
|
||||
height: 84px;
|
||||
overflow: hidden;
|
||||
@@ -141,7 +141,7 @@ textarea {
|
||||
}
|
||||
|
||||
.form-table p {
|
||||
margin: 4px 0 0;
|
||||
margin: 4px 0 0 0;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
@@ -324,7 +324,7 @@ body.language-chooser {
|
||||
color: #0a4b78;
|
||||
}
|
||||
|
||||
.language-chooser .step {
|
||||
.language-chooser p {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
||||
2
wp-admin/css/install.min.css
vendored
2
wp-admin/css/install.min.css
vendored
@@ -1,2 +1,2 @@
|
||||
/*! 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;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)}}
|
||||
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 p{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)}}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user