This commit is contained in:
Greta Thunberg 2023-09-26 10:33:34 +02:00
parent 5e05685a51
commit 7a6f287ffe
1080 changed files with 135902 additions and 84232 deletions

View File

@ -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://secure.php.net/">PHP</a> version <strong>7.0</strong> or greater.</li>
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or greater.</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.3</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.4</strong> or greater.</li>
<li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
<li><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>

View File

@ -87,7 +87,7 @@ do_action( 'activate_header' );
*/
function do_activate_header() {
/**
* Fires before the Site Activation page is loaded.
* Fires within the `<head>` section of the Site Activation page.
*
* Fires on the {@see 'wp_head'} action.
*
@ -120,7 +120,7 @@ add_filter( 'wp_robots', 'wp_robots_sensitive_page' );
get_header( 'wp-activate' );
$blog_details = get_blog_details();
$blog_details = get_site();
?>
<div id="signup-content" class="widecolumn">

File diff suppressed because one or more lines are too long

View File

@ -109,7 +109,7 @@ var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?
<?php
/**
* Enqueue scripts for all admin pages.
* Fires when enqueuing scripts for all admin pages.
*
* @since 2.8.0
*
@ -242,7 +242,7 @@ unset( $error_get_last );
$admin_body_classes = apply_filters( 'admin_body_class', '' );
$admin_body_classes = ltrim( $admin_body_classes . ' ' . $admin_body_class );
?>
<body class="wp-admin wp-core-ui no-js <?php echo $admin_body_classes; ?>">
<body class="wp-admin wp-core-ui no-js <?php echo esc_attr( $admin_body_classes ); ?>">
<script type="text/javascript">
document.body.className = document.body.className.replace('no-js','js');
</script>

View File

@ -348,7 +348,7 @@ if ( isset( $plugin_page ) ) {
define( 'WP_IMPORTING', true );
/**
* Whether to filter imported data through kses on import.
* Filters whether to filter imported data through kses on import.
*
* Multisite uses this hook to filter all data through kses by default,
* as a super administrator may be assisting an untrusted user.

View File

@ -282,7 +282,7 @@ switch ( $action ) {
comment_footer_die( __( 'Sorry, you are not allowed to edit comments on this post.' ) );
}
if ( wp_get_referer() && ! $noredir && false === strpos( wp_get_referer(), 'comment.php' ) ) {
if ( wp_get_referer() && ! $noredir && ! str_contains( wp_get_referer(), 'comment.php' ) ) {
$redir = wp_get_referer();
} elseif ( wp_get_original_referer() && ! $noredir ) {
$redir = wp_get_original_referer();

109
wp-admin/contribute.php Normal file
View File

@ -0,0 +1,109 @@
<?php
/**
* Contribute administration panel.
*
* @package WordPress
* @subpackage Administration
*/
/** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';
// Used in the HTML title tag.
$title = __( 'Get Involved' );
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
require_once ABSPATH . 'wp-admin/admin-header.php';
?>
<div class="wrap about__container">
<div class="about__header">
<div class="about__header-title">
<h1>
<?php _e( 'Get Involved' ); ?>
</h1>
</div>
<div class="about__header-text">
<?php _e( 'Be the future of WordPress' ); ?>
</div>
</div>
<nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
<a href="about.php" class="nav-tab"><?php _e( 'What&#8217;s New' ); ?></a>
<a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a>
<a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
<a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
<a href="contribute.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Get Involved' ); ?></a>
</nav>
<div class="about__section has-2-columns is-wider-right">
<div class="column about__image">
<img src="<?php echo esc_url( admin_url( 'images/contribute-main.svg?ver=6.3' ) ); ?>" alt="" />
</div>
<div class="column is-vertically-aligned-center">
<p><?php _e( 'Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.' ); ?></p>
<p><?php _e( 'Join the WordPress contributor community and connect with others who are passionate about maintaining a free and open web.' ); ?></p>
<ul>
<li><?php _e( 'Be part of a global open source community.' ); ?></li>
<li><?php _e( 'Apply your skills or learn new ones.' ); ?></li>
<li><?php _e( 'Grow your network and make friends.' ); ?></li>
</ul>
</div>
</div>
<div class="about__section has-2-columns is-wider-left">
<div class="column is-vertically-aligned-center">
<h3><?php _e( 'No-code contribution' ); ?></h3>
<p><?php _e( 'WordPress may thrive on technical contributions, but you don&#8217;t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:' ); ?></p>
<ul>
<li><?php _e( '<strong>Share</strong> your knowledge in the WordPress support forums.' ); ?></li>
<li><?php _e( '<strong>Write</strong> or improve documentation for WordPress.' ); ?></li>
<li><?php _e( '<strong>Translate</strong> WordPress into your local language.' ); ?></li>
<li><?php _e( '<strong>Create</strong> and improve WordPress educational materials.' ); ?></li>
<li><?php _e( '<strong>Promote</strong> the WordPress project to your community.' ); ?></li>
<li><?php _e( '<strong>Curate</strong> submissions or take photos for the WordPress Photos Directory.' ); ?></li>
<li><?php _e( '<strong>Organize</strong> or participate in local WordPress Meetups and WordCamps.' ); ?></li>
<li><?php _e( '<strong>Lend</strong> your creative imagination to the WordPress UI design.' ); ?></li>
<li><?php _e( '<strong>Edit</strong> videos and add captions to WordPress.tv.' ); ?></li>
<li><?php _e( '<strong>Explore</strong> ways to reduce the environmental impact of millions of websites.' ); ?></li>
</ul>
</div>
<div class="column">
<img src="<?php echo esc_url( admin_url( 'images/contribute-no-code.svg?ver=6.3' ) ); ?>" alt="" />
</div>
</div>
<div class="about__section has-2-columns is-wider-right">
<div class="column">
<img src="<?php echo esc_url( admin_url( 'images/contribute-code.svg?ver=6.3' ) ); ?>" alt="" />
</div>
<div class="column is-vertically-aligned-center">
<h3><?php _e( 'Code-based contribution' ); ?></h3>
<p><?php _e( 'If you do code, or want to learn how, you can contribute technically in numerous ways:' ); ?></p>
<ul>
<li><?php _e( '<strong>Find</strong> and report bugs in the WordPress core software.' ); ?></li>
<li><?php _e( '<strong>Test</strong> new releases and proposed features for the block editor.' ); ?></li>
<li><?php _e( '<strong>Write</strong> and submit patches to fix bugs or help build new features.' ); ?></li>
<li><?php _e( '<strong>Contribute</strong> to the code, improve the UX, and test the WordPress app.' ); ?></li>
</ul>
<p><?php _e( 'WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:' ); ?></p>
<ul>
<li><?php _e( 'Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React' ); ?></li>
<li><?php _e( 'WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript' ); ?></li>
</ul>
</div>
</div>
<div class="about__section is-feature has-subtle-background-color">
<div class="column">
<h2><?php _e( 'Shape the future of the web with WordPress' ); ?></h2>
<p><?php _e( 'Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there&#8217;s a place for everyone, no matter what your skill set is.' ); ?></p>
<p class="aligncenter"><a href="<?php echo esc_url( __( 'https://make.wordpress.org/contribute/' ) ); ?>"><?php _e( 'Find your team &rarr;' ); ?></a></p>
</div>
</div>
</div>
<?php
require_once ABSPATH . 'wp-admin/admin-footer.php';

View File

@ -44,6 +44,7 @@ $credits = wp_credits();
<a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a>
<a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
<a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
<a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a>
</nav>
<div class="about__section has-1-column has-gutters">
@ -59,7 +60,7 @@ $credits = wp_credits();
);
?>
<br />
<a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a>
<a href="<?php echo esc_url( __( 'https://make.wordpress.org/contribute/' ) ); ?>"><?php _e( 'Get involved in WordPress.' ); ?></a>
</p>
<?php else : ?>
@ -67,7 +68,7 @@ $credits = wp_credits();
<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>
<a href="<?php echo esc_url( __( 'https://make.wordpress.org/contribute/' ) ); ?>"><?php _e( 'Get involved in WordPress.' ); ?></a>
</p>
<?php endif; ?>

View File

@ -2,7 +2,7 @@
/*------------------------------------------------------------------------------
22.0 - About Pages
1.0 Global: About, Credits, Freedoms, Privacy
1.0 Global: About, Credits, Freedoms, Privacy, Get Involved
1.1 Layout
1.2 Typography & Elements
1.3 Header
@ -22,16 +22,17 @@
.about__container {
/* Section backgrounds */
--background: #1d35b4;
--background: #151515;
--subtle-background: #eff2ff;
/* Main text color */
--text: #000;
--text: #1e1e1e;
--text-light: #fff;
/* Accent colors: used in header, on special classes. */
--accent-1: #1d35b4; /* Link color, credit image overlay */
--accent-2: #33f078; /* Accent background */
--accent-1: #3858e9; /* Link color */
--accent-2: #c7b9f2; /* Accent background */
--accent-3: #f0f0f1; /* hr background */
/* Navigation colors. */
--nav-background: #fff;
@ -43,20 +44,22 @@
}
/*------------------------------------------------------------------------------
1.0 - Global: About, Credits, Freedoms, Privacy
1.0 - Global: About, Credits, Freedoms, Privacy, Get Involved
------------------------------------------------------------------------------*/
.about-php,
.credits-php,
.freedoms-php,
.privacy-php {
.privacy-php,
.contribute-php {
background: #fff;
}
.about-php #wpcontent,
.credits-php #wpcontent,
.freedoms-php #wpcontent,
.privacy-php #wpcontent {
.privacy-php #wpcontent,
.contribute-php #wpcontent {
background: #fff;
padding: 0 24px;
}
@ -65,7 +68,8 @@
.about-php.auto-fold #wpcontent,
.credits-php.auto-fold #wpcontent,
.freedoms-php.auto-fold #wpcontent,
.privacy-php.auto-fold #wpcontent {
.privacy-php.auto-fold #wpcontent,
.contribute-php.auto-fold #wpcontent {
padding-right: 24px;
}
}
@ -473,24 +477,20 @@
margin-top: 1.5em;
}
.about__container .column .about__image {
margin-bottom: calc(var(--gap) / 2);
}
.about__container hr {
margin: 0 var(--gap);
height: var(--gap);
margin: calc(var(--gap) / 2) var(--gap);
height: 0;
border: none;
border-top: 4px solid var(--accent-2);
border-top: 4px solid var(--accent-3);
}
.about__container hr.is-small {
height: calc(var(--gap) / 4);
margin-top: 0;
margin-bottom: 0;
}
.about__container hr.is-large {
height: calc(var(--gap) * 2);
margin: calc(var(--gap) / 2) auto;
margin: var(--gap) auto;
}
.about__container div.updated,
@ -537,21 +537,26 @@
padding: calc(var(--gap) * 2) 0;
min-height: 420px;
color: var(--text-light);
background: var(--background) url('../images/about-header-about.svg?ver=6.2') no-repeat;
background: var(--background) url('../images/about-header-about.svg?ver=6.3') no-repeat;
background-size: cover;
background-position: center;
border-radius: 5px;
}
.credits-php .about__header {
background-image: url('../images/about-header-credits.svg?ver=6.2');
background-image: url('../images/about-header-credits.svg?ver=6.3');
}
.freedoms-php .about__header {
background-image: url('../images/about-header-freedoms.svg?ver=6.2');
background-image: url('../images/about-header-freedoms.svg?ver=6.3');
}
.privacy-php .about__header {
background-image: url('../images/about-header-privacy.svg?ver=6.2');
background-image: url('../images/about-header-privacy.svg?ver=6.3');
}
.contribute-php .about__header {
background-image: url('../images/about-header-contribute.svg?ver=6.3');
}
.about__header-image {
@ -575,19 +580,16 @@
}
.credits-php .about__header-title h1,
.freedoms-php .about__header-title h1,
.privacy-php .about__header-title h1,
.freedoms-php .about__header-title h1 {
.contribute-php .about__header-title h1 {
/* Fluid font size scales on browser size 960px - 1200px. */
font-size: clamp(3rem, 10vw - 3rem, 4.5rem);
}
.about__header-title h1 span {
color: var(--accent-2);
}
.about__header-text {
box-sizing: border-box;
max-width: 22em;
max-width: 26em;
margin: 0 auto;
padding: 0;
font-size: 1.6rem;
@ -647,11 +649,16 @@
}
.credits-php .about__header-title h1,
.freedoms-php .about__header-title h1,
.privacy-php .about__header-title h1,
.freedoms-php .about__header-title h1 {
.contribute-php .about__header-title h1 {
/* Fluid font size scales on browser size 600px - 960px. */
font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem);
}
.about__header-navigation .nav-tab {
padding: calc(var(--gap) * 0.75) calc(var(--gap) * 0.5);
}
}
@media screen and (max-width: 782px) {
@ -685,13 +692,12 @@
.about__header {
min-height: auto;
}
}
@media screen and (max-width: 480px) {
.about__header,
.credits-php .about__header,
.freedoms-php .about__header,
.privacy-php .about__header,
.freedoms-php .about__header {
.contribute-php .about__header {
background-image: none;
}
@ -760,14 +766,12 @@
height: 140px;
border-radius: 100%;
overflow: hidden;
background: var(--accent-1);
}
.about__section .wp-person .gravatar {
width: 140px;
height: 140px;
filter: grayscale(100%);
mix-blend-mode: screen;
}
.about__section .compact .wp-person-avatar,

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
/*------------------------------------------------------------------------------
22.0 - About Pages
1.0 Global: About, Credits, Freedoms, Privacy
1.0 Global: About, Credits, Freedoms, Privacy, Get Involved
1.1 Layout
1.2 Typography & Elements
1.3 Header
@ -21,16 +21,17 @@
.about__container {
/* Section backgrounds */
--background: #1d35b4;
--background: #151515;
--subtle-background: #eff2ff;
/* Main text color */
--text: #000;
--text: #1e1e1e;
--text-light: #fff;
/* Accent colors: used in header, on special classes. */
--accent-1: #1d35b4; /* Link color, credit image overlay */
--accent-2: #33f078; /* Accent background */
--accent-1: #3858e9; /* Link color */
--accent-2: #c7b9f2; /* Accent background */
--accent-3: #f0f0f1; /* hr background */
/* Navigation colors. */
--nav-background: #fff;
@ -42,20 +43,22 @@
}
/*------------------------------------------------------------------------------
1.0 - Global: About, Credits, Freedoms, Privacy
1.0 - Global: About, Credits, Freedoms, Privacy, Get Involved
------------------------------------------------------------------------------*/
.about-php,
.credits-php,
.freedoms-php,
.privacy-php {
.privacy-php,
.contribute-php {
background: #fff;
}
.about-php #wpcontent,
.credits-php #wpcontent,
.freedoms-php #wpcontent,
.privacy-php #wpcontent {
.privacy-php #wpcontent,
.contribute-php #wpcontent {
background: #fff;
padding: 0 24px;
}
@ -64,7 +67,8 @@
.about-php.auto-fold #wpcontent,
.credits-php.auto-fold #wpcontent,
.freedoms-php.auto-fold #wpcontent,
.privacy-php.auto-fold #wpcontent {
.privacy-php.auto-fold #wpcontent,
.contribute-php.auto-fold #wpcontent {
padding-left: 24px;
}
}
@ -472,24 +476,20 @@
margin-top: 1.5em;
}
.about__container .column .about__image {
margin-bottom: calc(var(--gap) / 2);
}
.about__container hr {
margin: 0 var(--gap);
height: var(--gap);
margin: calc(var(--gap) / 2) var(--gap);
height: 0;
border: none;
border-top: 4px solid var(--accent-2);
border-top: 4px solid var(--accent-3);
}
.about__container hr.is-small {
height: calc(var(--gap) / 4);
margin-top: 0;
margin-bottom: 0;
}
.about__container hr.is-large {
height: calc(var(--gap) * 2);
margin: calc(var(--gap) / 2) auto;
margin: var(--gap) auto;
}
.about__container div.updated,
@ -536,21 +536,26 @@
padding: calc(var(--gap) * 2) 0;
min-height: 420px;
color: var(--text-light);
background: var(--background) url('../images/about-header-about.svg?ver=6.2') no-repeat;
background: var(--background) url('../images/about-header-about.svg?ver=6.3') no-repeat;
background-size: cover;
background-position: center;
border-radius: 5px;
}
.credits-php .about__header {
background-image: url('../images/about-header-credits.svg?ver=6.2');
background-image: url('../images/about-header-credits.svg?ver=6.3');
}
.freedoms-php .about__header {
background-image: url('../images/about-header-freedoms.svg?ver=6.2');
background-image: url('../images/about-header-freedoms.svg?ver=6.3');
}
.privacy-php .about__header {
background-image: url('../images/about-header-privacy.svg?ver=6.2');
background-image: url('../images/about-header-privacy.svg?ver=6.3');
}
.contribute-php .about__header {
background-image: url('../images/about-header-contribute.svg?ver=6.3');
}
.about__header-image {
@ -574,19 +579,16 @@
}
.credits-php .about__header-title h1,
.freedoms-php .about__header-title h1,
.privacy-php .about__header-title h1,
.freedoms-php .about__header-title h1 {
.contribute-php .about__header-title h1 {
/* Fluid font size scales on browser size 960px - 1200px. */
font-size: clamp(3rem, 10vw - 3rem, 4.5rem);
}
.about__header-title h1 span {
color: var(--accent-2);
}
.about__header-text {
box-sizing: border-box;
max-width: 22em;
max-width: 26em;
margin: 0 auto;
padding: 0;
font-size: 1.6rem;
@ -646,11 +648,16 @@
}
.credits-php .about__header-title h1,
.freedoms-php .about__header-title h1,
.privacy-php .about__header-title h1,
.freedoms-php .about__header-title h1 {
.contribute-php .about__header-title h1 {
/* Fluid font size scales on browser size 600px - 960px. */
font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem);
}
.about__header-navigation .nav-tab {
padding: calc(var(--gap) * 0.75) calc(var(--gap) * 0.5);
}
}
@media screen and (max-width: 782px) {
@ -684,13 +691,12 @@
.about__header {
min-height: auto;
}
}
@media screen and (max-width: 480px) {
.about__header,
.credits-php .about__header,
.freedoms-php .about__header,
.privacy-php .about__header,
.freedoms-php .about__header {
.contribute-php .about__header {
background-image: none;
}
@ -759,14 +765,12 @@
height: 140px;
border-radius: 100%;
overflow: hidden;
background: var(--accent-1);
}
.about__section .wp-person .gravatar {
width: 140px;
height: 140px;
filter: grayscale(100%);
mix-blend-mode: screen;
}
.about__section .compact .wp-person-avatar,

File diff suppressed because one or more lines are too long

View File

@ -786,19 +786,3 @@ div#wp-responsive-toggle a:before {
color: $link;
}
}
/* Welcome Panel */
@if ( $custom-welcome-panel == "true" ) {
.welcome-panel {
background-color: $dashboard-accent-1;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: $dashboard-accent-2;
}
[class*="welcome-panel-icon"] {
background-color: $dashboard-icon-background;
}
}

View File

@ -707,18 +707,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: #4796b3;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #52accc;
}
[class*=welcome-panel-icon] {
background-color: #096484;
}

File diff suppressed because one or more lines are too long

View File

@ -707,18 +707,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: #4796b3;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #52accc;
}
[class*=welcome-panel-icon] {
background-color: #096484;
}

File diff suppressed because one or more lines are too long

View File

@ -171,7 +171,7 @@ textarea:focus {
color: #9ea476;
}
.wp-core-ui .wp-ui-text-icon {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
/* List tables */
@ -200,7 +200,7 @@ textarea:focus {
}
#adminmenu div.wp-menu-image:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
#adminmenu a:hover,
@ -313,7 +313,7 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Menu: collapse button */
#collapse-button {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
#collapse-button:hover,
@ -338,7 +338,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item:after {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
@ -382,7 +382,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks li .blavatar,
#wpadminbar .menupop .menupop > .ab-item:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
#wpadminbar .quicklinks .menupop ul li a:hover,
@ -417,12 +417,12 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
/* Admin Bar: search */
#wpadminbar #adminbarsearch:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
@ -558,7 +558,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Responsive Component */
div#wp-responsive-toggle a:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
.wp-responsive-open div#wp-responsive-toggle a {
@ -571,7 +571,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
/* TinyMCE */
@ -674,18 +674,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: #46403c;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #59524c;
}
[class*=welcome-panel-icon] {
background-color: #59524c;
}

File diff suppressed because one or more lines are too long

View File

@ -171,7 +171,7 @@ textarea:focus {
color: #9ea476;
}
.wp-core-ui .wp-ui-text-icon {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
/* List tables */
@ -200,7 +200,7 @@ textarea:focus {
}
#adminmenu div.wp-menu-image:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
#adminmenu a:hover,
@ -313,7 +313,7 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Menu: collapse button */
#collapse-button {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
#collapse-button:hover,
@ -338,7 +338,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item:after {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
@ -382,7 +382,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks li .blavatar,
#wpadminbar .menupop .menupop > .ab-item:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
#wpadminbar .quicklinks .menupop ul li a:hover,
@ -417,12 +417,12 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
/* Admin Bar: search */
#wpadminbar #adminbarsearch:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
@ -558,7 +558,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Responsive Component */
div#wp-responsive-toggle a:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
.wp-responsive-open div#wp-responsive-toggle a {
@ -571,7 +571,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
color: hsl(27.6923076923deg, 7%, 95%);
color: hsl(27.6923076923, 7%, 95%);
}
/* TinyMCE */
@ -674,18 +674,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: #46403c;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #59524c;
}
[class*=welcome-panel-icon] {
background-color: #59524c;
}

File diff suppressed because one or more lines are too long

View File

@ -707,18 +707,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: #413256;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #523f6d;
}
[class*=welcome-panel-icon] {
background-color: #523f6d;
}

File diff suppressed because one or more lines are too long

View File

@ -707,18 +707,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: #413256;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #523f6d;
}
[class*=welcome-panel-icon] {
background-color: #523f6d;
}

File diff suppressed because one or more lines are too long

View File

@ -709,20 +709,6 @@ div#wp-responsive-toggle a:before {
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #04a4cc;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #17b5dd;
}
[class*=welcome-panel-icon] {
background-color: #333;
}
/* Override the theme filter highlight color for this scheme */
.theme-section.current,
.theme-filter.current {

File diff suppressed because one or more lines are too long

View File

@ -709,20 +709,6 @@ div#wp-responsive-toggle a:before {
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #04a4cc;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #17b5dd;
}
[class*=welcome-panel-icon] {
background-color: #333;
}
/* Override the theme filter highlight color for this scheme */
.theme-section.current,
.theme-filter.current {

File diff suppressed because one or more lines are too long

View File

@ -192,7 +192,7 @@ textarea:focus {
color: #69a8bb;
}
.wp-core-ui .wp-ui-text-icon {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
/* List tables */
@ -233,7 +233,7 @@ textarea:focus {
}
#adminmenu div.wp-menu-image:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
#adminmenu a:hover,
@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Menu: collapse button */
#collapse-button {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
#collapse-button:hover,
@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item:after {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks li .blavatar,
#wpadminbar .menupop .menupop > .ab-item:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
#wpadminbar .quicklinks .menupop ul li a:hover,
@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
/* Admin Bar: search */
#wpadminbar #adminbarsearch:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Responsive Component */
div#wp-responsive-toggle a:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
.wp-responsive-open div#wp-responsive-toggle a {
@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
/* TinyMCE */
@ -707,18 +707,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: #26292c;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #3b464b;
}
[class*=welcome-panel-icon] {
background-color: #3b464b;
}

File diff suppressed because one or more lines are too long

View File

@ -192,7 +192,7 @@ textarea:focus {
color: #69a8bb;
}
.wp-core-ui .wp-ui-text-icon {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
/* List tables */
@ -233,7 +233,7 @@ textarea:focus {
}
#adminmenu div.wp-menu-image:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
#adminmenu a:hover,
@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Menu: collapse button */
#collapse-button {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
#collapse-button:hover,
@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item:after {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks li .blavatar,
#wpadminbar .menupop .menupop > .ab-item:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
#wpadminbar .quicklinks .menupop ul li a:hover,
@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
/* Admin Bar: search */
#wpadminbar #adminbarsearch:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Responsive Component */
div#wp-responsive-toggle a:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
.wp-responsive-open div#wp-responsive-toggle a {
@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
color: hsl(206.6666666667deg, 7%, 95%);
color: hsl(206.6666666667, 7%, 95%);
}
/* TinyMCE */
@ -707,18 +707,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: #26292c;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #3b464b;
}
[class*=welcome-panel-icon] {
background-color: #3b464b;
}

File diff suppressed because one or more lines are too long

View File

@ -192,7 +192,7 @@ textarea:focus {
color: #3858e9;
}
.wp-core-ui .wp-ui-text-icon {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
/* List tables */
@ -233,7 +233,7 @@ textarea:focus {
}
#adminmenu div.wp-menu-image:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
#adminmenu a:hover,
@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Menu: collapse button */
#collapse-button {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
#collapse-button:hover,
@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item:after {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks li .blavatar,
#wpadminbar .menupop .menupop > .ab-item:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
#wpadminbar .quicklinks .menupop ul li a:hover,
@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
/* Admin Bar: search */
#wpadminbar #adminbarsearch:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Responsive Component */
div#wp-responsive-toggle a:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
.wp-responsive-open div#wp-responsive-toggle a {
@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
/* TinyMCE */
@ -707,6 +707,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 */
}

File diff suppressed because one or more lines are too long

View File

@ -192,7 +192,7 @@ textarea:focus {
color: #3858e9;
}
.wp-core-ui .wp-ui-text-icon {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
/* List tables */
@ -233,7 +233,7 @@ textarea:focus {
}
#adminmenu div.wp-menu-image:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
#adminmenu a:hover,
@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Menu: collapse button */
#collapse-button {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
#collapse-button:hover,
@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item:after {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks li .blavatar,
#wpadminbar .menupop .menupop > .ab-item:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
#wpadminbar .quicklinks .menupop ul li a:hover,
@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
/* Admin Bar: search */
#wpadminbar #adminbarsearch:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Responsive Component */
div#wp-responsive-toggle a:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
.wp-responsive-open div#wp-responsive-toggle a {
@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
color: hsl(0deg, 7%, 95%);
color: hsl(0, 7%, 95%);
}
/* TinyMCE */
@ -707,6 +707,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 */
}

File diff suppressed because one or more lines are too long

View File

@ -674,18 +674,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: #627c83;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #738e96;
}
[class*=welcome-panel-icon] {
background-color: #738e96;
}

File diff suppressed because one or more lines are too long

View File

@ -674,18 +674,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: #627c83;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #738e96;
}
[class*=welcome-panel-icon] {
background-color: #738e96;
}

File diff suppressed because one or more lines are too long

View File

@ -192,7 +192,7 @@ textarea:focus {
color: #ccaf0b;
}
.wp-core-ui .wp-ui-text-icon {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
/* List tables */
@ -233,7 +233,7 @@ textarea:focus {
}
#adminmenu div.wp-menu-image:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
#adminmenu a:hover,
@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Menu: collapse button */
#collapse-button {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
#collapse-button:hover,
@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item:after {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks li .blavatar,
#wpadminbar .menupop .menupop > .ab-item:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
#wpadminbar .quicklinks .menupop ul li a:hover,
@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
/* Admin Bar: search */
#wpadminbar #adminbarsearch:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Responsive Component */
div#wp-responsive-toggle a:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
.wp-responsive-open div#wp-responsive-toggle a {
@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
/* TinyMCE */
@ -707,18 +707,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: #be3631;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #cf4944;
}
[class*=welcome-panel-icon] {
background-color: #cf4944;
}

File diff suppressed because one or more lines are too long

View File

@ -192,7 +192,7 @@ textarea:focus {
color: #ccaf0b;
}
.wp-core-ui .wp-ui-text-icon {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
/* List tables */
@ -233,7 +233,7 @@ textarea:focus {
}
#adminmenu div.wp-menu-image:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
#adminmenu a:hover,
@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Menu: collapse button */
#collapse-button {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
#collapse-button:hover,
@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item:after {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks li .blavatar,
#wpadminbar .menupop .menupop > .ab-item:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
#wpadminbar .quicklinks .menupop ul li a:hover,
@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
/* Admin Bar: search */
#wpadminbar #adminbarsearch:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Responsive Component */
div#wp-responsive-toggle a:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
.wp-responsive-open div#wp-responsive-toggle a {
@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
color: hsl(2.1582733813deg, 7%, 95%);
color: hsl(2.1582733813, 7%, 95%);
}
/* TinyMCE */
@ -707,18 +707,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: #be3631;
}
.welcome-panel-header-image .curve,
.welcome-panel-header-image .dot {
fill: #cf4944;
}
[class*=welcome-panel-icon] {
background-color: #cf4944;
}

File diff suppressed because one or more lines are too long

View File

@ -139,6 +139,11 @@
height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */
}
.screen-reader-text + .dashicons-external {
margin-top: -1px;
margin-right: 2px;
}
.screen-reader-shortcut {
position: absolute;
top: -1000em;
@ -192,7 +197,6 @@ p.popular-tags,
.wp-editor-container,
.popular-tags,
.feature-filter,
.imgedit-group,
.comment-ays {
border: 1px solid #c3c4c7;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
@ -205,7 +209,6 @@ p.popular-tags,
.widgets-holder-wrap,
.popular-tags,
.feature-filter,
.imgedit-group,
.comment-ays {
background: #fff;
}
@ -556,6 +559,14 @@ code {
margin-right: 0;
}
.js-update-details-toggle .dashicons {
text-decoration: none;
}
.js-update-details-toggle[aria-expanded="true"] .dashicons::before {
content: "\f142";
}
.no-js .widefat thead .check-column input,
.no-js .widefat tfoot .check-column input {
display: none;
@ -576,10 +587,6 @@ code {
margin: 10px 2px 0 20px;
}
.wrap.block-editor-no-js {
padding-right: 20px;
}
.wrap > h2:first-child, /* Back-compat for pre-4.4 */
.wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */
.postbox .inside h2, /* Back-compat for pre-4.4 */
@ -1084,7 +1091,6 @@ th.action-links {
}
.wp-filter .search-form input[type="search"] {
margin: 1px 0;
width: 280px;
max-width: 100%;
}
@ -3009,7 +3015,6 @@ div.action-links {
}
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
#TB_window.plugin-details-modal.thickbox-loading:before {
@ -3752,7 +3757,6 @@ img {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
/* Back-compat for pre-3.8 */
div.star-holder,
@ -4066,6 +4070,7 @@ img {
}
.wp-filter .search-form input[type="search"] {
width: 100%;
font-size: 1rem;
}
@ -4119,9 +4124,16 @@ img {
.nav-tab-active:focus:active {
border-bottom: 1px solid #c3c4c7;
}
}
.wp-filter .search-form input[type="search"] {
width: 100%;
@media screen and (max-width: 480px) {
.metabox-prefs-container {
display: grid;
}
.metabox-prefs-container > * {
display: inline-block;
padding: 2px;
}
}

File diff suppressed because one or more lines are too long

View File

@ -138,6 +138,11 @@
height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */
}
.screen-reader-text + .dashicons-external {
margin-top: -1px;
margin-left: 2px;
}
.screen-reader-shortcut {
position: absolute;
top: -1000em;
@ -191,7 +196,6 @@ p.popular-tags,
.wp-editor-container,
.popular-tags,
.feature-filter,
.imgedit-group,
.comment-ays {
border: 1px solid #c3c4c7;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
@ -204,7 +208,6 @@ p.popular-tags,
.widgets-holder-wrap,
.popular-tags,
.feature-filter,
.imgedit-group,
.comment-ays {
background: #fff;
}
@ -555,6 +558,14 @@ code {
margin-left: 0;
}
.js-update-details-toggle .dashicons {
text-decoration: none;
}
.js-update-details-toggle[aria-expanded="true"] .dashicons::before {
content: "\f142";
}
.no-js .widefat thead .check-column input,
.no-js .widefat tfoot .check-column input {
display: none;
@ -575,10 +586,6 @@ code {
margin: 10px 20px 0 2px;
}
.wrap.block-editor-no-js {
padding-left: 20px;
}
.wrap > h2:first-child, /* Back-compat for pre-4.4 */
.wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */
.postbox .inside h2, /* Back-compat for pre-4.4 */
@ -1083,7 +1090,6 @@ th.action-links {
}
.wp-filter .search-form input[type="search"] {
margin: 1px 0;
width: 280px;
max-width: 100%;
}
@ -3008,7 +3014,6 @@ div.action-links {
}
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
#TB_window.plugin-details-modal.thickbox-loading:before {
@ -3751,7 +3756,6 @@ img {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
/* Back-compat for pre-3.8 */
div.star-holder,
@ -4065,6 +4069,7 @@ img {
}
.wp-filter .search-form input[type="search"] {
width: 100%;
font-size: 1rem;
}
@ -4118,9 +4123,16 @@ img {
.nav-tab-active:focus:active {
border-bottom: 1px solid #c3c4c7;
}
}
.wp-filter .search-form input[type="search"] {
width: 100%;
@media screen and (max-width: 480px) {
.metabox-prefs-container {
display: grid;
}
.metabox-prefs-container > * {
display: inline-block;
padding: 2px;
}
}

File diff suppressed because one or more lines are too long

View File

@ -121,7 +121,7 @@
position: relative;
overflow: auto;
margin: 16px 0;
background-color: #1d35b4;
background-color: #151515;
font-size: 14px;
line-height: 1.3;
clear: both;
@ -890,31 +890,32 @@ body #dashboard-widgets .postbox form .submit {
#future-posts ul,
#published-posts ul {
clear: both;
margin-bottom: 0;
margin: 8px -12px 0 -12px;
}
#future-posts li,
#published-posts li {
margin-bottom: 8px;
display: grid;
grid-template-columns: clamp(160px, calc(2vw + 140px), 200px) auto;
column-gap: 10px;
color: #646970;
padding: 4px 12px;
}
#future-posts ul span,
#published-posts ul span {
display: inline-block;
margin-left: 5px;
min-width: 150px;
color: #646970;
#future-posts li:nth-child(odd),
#published-posts li:nth-child(odd) {
background-color: #f6f7f7;
}
.activity-block {
border-bottom: 1px solid #f0f0f1;
margin: 0 -12px;
margin: 0 -12px 6px -12px;
padding: 8px 12px 4px;
}
.activity-block:last-child {
border-bottom: none;
margin-bottom: 0;
}
.activity-block .subsubsub li {

File diff suppressed because one or more lines are too long

View File

@ -120,7 +120,7 @@
position: relative;
overflow: auto;
margin: 16px 0;
background-color: #1d35b4;
background-color: #151515;
font-size: 14px;
line-height: 1.3;
clear: both;
@ -889,31 +889,32 @@ body #dashboard-widgets .postbox form .submit {
#future-posts ul,
#published-posts ul {
clear: both;
margin-bottom: 0;
margin: 8px -12px 0 -12px;
}
#future-posts li,
#published-posts li {
margin-bottom: 8px;
display: grid;
grid-template-columns: clamp(160px, calc(2vw + 140px), 200px) auto;
column-gap: 10px;
color: #646970;
padding: 4px 12px;
}
#future-posts ul span,
#published-posts ul span {
display: inline-block;
margin-right: 5px;
min-width: 150px;
color: #646970;
#future-posts li:nth-child(odd),
#published-posts li:nth-child(odd) {
background-color: #f6f7f7;
}
.activity-block {
border-bottom: 1px solid #f0f0f1;
margin: 0 -12px;
margin: 0 -12px 6px -12px;
padding: 8px 12px 4px;
}
.activity-block:last-child {
border-bottom: none;
margin-bottom: 0;
}
.activity-block .subsubsub li {

File diff suppressed because one or more lines are too long

View File

@ -405,7 +405,6 @@ table.not-image tr.image-only {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
.image-align-none-label {

File diff suppressed because one or more lines are too long

View File

@ -404,7 +404,6 @@ table.not-image tr.image-only {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
.image-align-none-label {

File diff suppressed because one or more lines are too long

View File

@ -1069,6 +1069,10 @@ form#tags-filter {
padding: 0 8px 8px;
}
#postcustom #postcustomstuff .add-custom-field {
padding: 12px 8px 8px;
}
#side-sortables #postcustom #postcustomstuff .submit {
margin: 0;
padding: 0;
@ -1119,7 +1123,8 @@ form#tags-filter {
width: auto;
}
#postcustomstuff #newmetaleft a {
#postcustomstuff #newmetaleft a,
#postcustomstuff #newmeta-button {
display: inline-block;
margin: 0 8px 8px;
text-decoration: none;
@ -1684,7 +1689,6 @@ table.links-table {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
#content-resize-handle,
#post-body .wp_themeSkin .mceStatusbar a.mceResize {

File diff suppressed because one or more lines are too long

View File

@ -1068,6 +1068,10 @@ form#tags-filter {
padding: 0 8px 8px;
}
#postcustom #postcustomstuff .add-custom-field {
padding: 12px 8px 8px;
}
#side-sortables #postcustom #postcustomstuff .submit {
margin: 0;
padding: 0;
@ -1118,7 +1122,8 @@ form#tags-filter {
width: auto;
}
#postcustomstuff #newmetaleft a {
#postcustomstuff #newmetaleft a,
#postcustomstuff #newmeta-button {
display: inline-block;
margin: 0 8px 8px;
text-decoration: none;
@ -1683,7 +1688,6 @@ table.links-table {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
#content-resize-handle,
#post-body .wp_themeSkin .mceStatusbar a.mceResize {

File diff suppressed because one or more lines are too long

View File

@ -548,10 +548,67 @@ fieldset label,
.wp-generate-pw {
margin-top: 1em;
position: relative;
}
.wp-pwd button {
height: min-content;
}
.wp-pwd button.pwd-toggle .dashicons {
position: relative;
top: 0.25rem;
}
.wp-pwd {
margin-top: 1em;
position: relative;
}
.mailserver-pass-wrap .wp-pwd {
display: inline-block;
margin-top: 0;
}
/* rtl:ignore */
#mailserver_pass {
padding-right: 2.5rem;
}
/* rtl:ignore */
.mailserver-pass-wrap .button.wp-hide-pw {
background: transparent;
border: 1px solid transparent;
box-shadow: none;
font-size: 14px;
line-height: 2;
width: 2.5rem;
min-width: 40px;
margin: 0;
padding: 0 9px;
position: absolute;
right: 0;
top: 0;
}
.mailserver-pass-wrap .button.wp-hide-pw:hover {
background: transparent;
border-color: transparent;
}
.mailserver-pass-wrap .button.wp-hide-pw:focus {
background: transparent;
border-color: #3582c4;
border-radius: 4px;
box-shadow: 0 0 0 1px #3582c4;
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}
.mailserver-pass-wrap .button.wp-hide-pw:active {
background: transparent;
box-shadow: none;
transform: none;
}
#misc-publishing-actions label {
@ -594,6 +651,10 @@ fieldset label,
opacity: 1;
}
.password-input-wrapper {
display: inline-block;
}
.password-input-wrapper input {
font-family: Consolas, Monaco, monospace;
}
@ -672,7 +733,7 @@ input[type="text"].ui-autocomplete-loading,
input[type="email"].ui-autocomplete-loading {
background-image: url(../images/loading.gif);
background-repeat: no-repeat;
background-position: left center;
background-position: left 5px center;
visibility: visible;
}
@ -1584,13 +1645,15 @@ table.form-table td .updated p {
padding: 8px;
}
.password-input-wrapper {
display: block;
}
p.search-box {
float: none;
position: absolute;
bottom: 0;
width: 98%;
height: 90px;
width: 100%;
margin-bottom: 20px;
display: flex;
}
p.search-box input[name="s"] {
@ -1722,6 +1785,15 @@ table.form-table td .updated p {
display: inline-block;
}
.mailserver-pass-wrap .wp-pwd {
display: block;
}
/* rtl:ignore */
#mailserver_pass {
padding-left: 10px;
}
.options-general-php input[type="text"].small-text {
max-width: 6.25em;
margin: 0;

File diff suppressed because one or more lines are too long

View File

@ -547,10 +547,67 @@ fieldset label,
.wp-generate-pw {
margin-top: 1em;
position: relative;
}
.wp-pwd button {
height: min-content;
}
.wp-pwd button.pwd-toggle .dashicons {
position: relative;
top: 0.25rem;
}
.wp-pwd {
margin-top: 1em;
position: relative;
}
.mailserver-pass-wrap .wp-pwd {
display: inline-block;
margin-top: 0;
}
/* rtl:ignore */
#mailserver_pass {
padding-right: 2.5rem;
}
/* rtl:ignore */
.mailserver-pass-wrap .button.wp-hide-pw {
background: transparent;
border: 1px solid transparent;
box-shadow: none;
font-size: 14px;
line-height: 2;
width: 2.5rem;
min-width: 40px;
margin: 0;
padding: 0 9px;
position: absolute;
right: 0;
top: 0;
}
.mailserver-pass-wrap .button.wp-hide-pw:hover {
background: transparent;
border-color: transparent;
}
.mailserver-pass-wrap .button.wp-hide-pw:focus {
background: transparent;
border-color: #3582c4;
border-radius: 4px;
box-shadow: 0 0 0 1px #3582c4;
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}
.mailserver-pass-wrap .button.wp-hide-pw:active {
background: transparent;
box-shadow: none;
transform: none;
}
#misc-publishing-actions label {
@ -593,6 +650,10 @@ fieldset label,
opacity: 1;
}
.password-input-wrapper {
display: inline-block;
}
.password-input-wrapper input {
font-family: Consolas, Monaco, monospace;
}
@ -671,7 +732,7 @@ input[type="text"].ui-autocomplete-loading,
input[type="email"].ui-autocomplete-loading {
background-image: url(../images/loading.gif);
background-repeat: no-repeat;
background-position: right center;
background-position: right 5px center;
visibility: visible;
}
@ -1583,13 +1644,15 @@ table.form-table td .updated p {
padding: 8px;
}
.password-input-wrapper {
display: block;
}
p.search-box {
float: none;
position: absolute;
bottom: 0;
width: 98%;
height: 90px;
width: 100%;
margin-bottom: 20px;
display: flex;
}
p.search-box input[name="s"] {
@ -1721,6 +1784,15 @@ table.form-table td .updated p {
display: inline-block;
}
.mailserver-pass-wrap .wp-pwd {
display: block;
}
/* rtl:ignore */
#mailserver_pass {
padding-left: 10px;
}
.options-general-php input[type="text"].small-text {
max-width: 6.25em;
margin: 0;

File diff suppressed because one or more lines are too long

View File

@ -132,7 +132,7 @@ textarea {
font-size: 14px;
text-align: right;
padding: 10px 0 10px 20px;
width: 140px;
width: 115px;
vertical-align: top;
}
@ -146,12 +146,30 @@ textarea {
font-size: 11px;
}
.form-table .setup-description {
margin: 4px 0 0;
line-height: 1.6;
}
.form-table input {
line-height: 1.33333333;
font-size: 15px;
padding: 3px 5px;
}
.wp-pwd {
margin-top: 0;
}
.form-table .wp-pwd {
display: flex;
column-gap: 4px;
}
.form-table .password-input-wrapper {
width: 100%;
}
input,
submit {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
@ -162,7 +180,7 @@ submit {
.form-table input[type=url],
.form-table input[type=password],
#pass-strength-result {
width: 218px;
width: 100%;
}
.form-table th p {
@ -287,6 +305,10 @@ body.rtl,
box-sizing: border-box;
}
#pwd {
padding-left: 2.5rem;
}
.wp-pwd #pass1 {
padding-left: 50px;
}
@ -370,7 +392,6 @@ body.language-chooser {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
.spinner {

File diff suppressed because one or more lines are too long

View File

@ -131,7 +131,7 @@ textarea {
font-size: 14px;
text-align: left;
padding: 10px 20px 10px 0;
width: 140px;
width: 115px;
vertical-align: top;
}
@ -145,12 +145,30 @@ textarea {
font-size: 11px;
}
.form-table .setup-description {
margin: 4px 0 0;
line-height: 1.6;
}
.form-table input {
line-height: 1.33333333;
font-size: 15px;
padding: 3px 5px;
}
.wp-pwd {
margin-top: 0;
}
.form-table .wp-pwd {
display: flex;
column-gap: 4px;
}
.form-table .password-input-wrapper {
width: 100%;
}
input,
submit {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
@ -161,7 +179,7 @@ submit {
.form-table input[type=url],
.form-table input[type=password],
#pass-strength-result {
width: 218px;
width: 100%;
}
.form-table th p {
@ -286,6 +304,10 @@ body.rtl,
box-sizing: border-box;
}
#pwd {
padding-right: 2.5rem;
}
.wp-pwd #pass1 {
padding-right: 50px;
}
@ -369,7 +391,6 @@ body.language-chooser {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
.spinner {

File diff suppressed because one or more lines are too long

View File

@ -462,50 +462,64 @@ table.media .column-title .filename {
width: 160px;
}
.sorting-indicators {
display: grid;
}
.sorting-indicator {
display: block;
visibility: hidden;
width: 10px;
height: 4px;
margin-top: 8px;
margin-top: 4px;
margin-right: 7px;
}
.sorting-indicator:before {
content: "\f142";
font: normal 20px/1 dashicons;
speak: never;
display: inline-block;
padding: 0;
top: -4px;
right: -8px;
color: #3c434a;
line-height: 0.5;
position: relative;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-decoration: none !important;
color: #3c434a;
color: #a7aaad;
}
.column-comments .sorting-indicator:before {
top: 0;
right: -10px;
}
th.sorted.asc .sorting-indicator:before,
th.desc:hover span.sorting-indicator:before,
th.desc a:focus span.sorting-indicator:before {
.sorting-indicator.asc:before {
content: "\f142";
}
th.sorted.desc .sorting-indicator:before,
th.asc:hover span.sorting-indicator:before,
th.asc a:focus span.sorting-indicator:before {
.sorting-indicator.desc:before {
content: "\f140";
}
th.sorted.desc .sorting-indicator.desc:before {
color: #1d2327;
}
th.sorted.asc .sorting-indicator.asc:before {
color: #1d2327;
}
th.sorted.asc a:focus .sorting-indicator.asc:before,
th.sorted.asc:hover .sorting-indicator.asc:before,
th.sorted.desc a:focus .sorting-indicator.desc:before,
th.sorted.desc:hover .sorting-indicator.desc:before {
color: #a7aaad;
}
th.sorted.asc a:focus .sorting-indicator.desc:before,
th.sorted.asc:hover .sorting-indicator.desc:before,
th.sorted.desc a:focus .sorting-indicator.asc:before,
th.sorted.desc:hover .sorting-indicator.asc:before {
color: #1d2327;
}
.wp-list-table .toggle-row {
position: absolute;
left: 8px;
@ -553,6 +567,28 @@ th.asc a:focus span.sorting-indicator:before {
content: "\f142";
}
.check-column {
position: relative;
}
.check-column .label-covers-full-cell {
width: 100%;
height: 100%;
display: block;
position: absolute;
top: 0;
right: 0;
}
.check-column .label-covers-full-cell + input {
position: relative;
z-index: 1;
}
.check-column .label-covers-full-cell:hover + input {
box-shadow: 0 0 0 1px #2271b1;
}
.locked-indicator {
display: none;
margin-right: 6px;
@ -592,10 +628,6 @@ tr.wp-locked .row-actions .trash {
display: none;
}
.fixed .column-comments .sorting-indicator {
margin-top: 3px;
}
#menu-locations-wrap .widefat {
width: 60%;
}
@ -623,14 +655,6 @@ th.sorted a span {
cursor: pointer;
}
th.sorted .sorting-indicator,
th.desc:hover span.sorting-indicator,
th.desc a:focus span.sorting-indicator,
th.asc:hover span.sorting-indicator,
th.asc a:focus span.sorting-indicator {
visibility: visible;
}
.tablenav-pages .current-page {
margin: 0 0 0 2px;
font-size: 13px;

File diff suppressed because one or more lines are too long

View File

@ -461,50 +461,64 @@ table.media .column-title .filename {
width: 160px;
}
.sorting-indicators {
display: grid;
}
.sorting-indicator {
display: block;
visibility: hidden;
width: 10px;
height: 4px;
margin-top: 8px;
margin-top: 4px;
margin-left: 7px;
}
.sorting-indicator:before {
content: "\f142";
font: normal 20px/1 dashicons;
speak: never;
display: inline-block;
padding: 0;
top: -4px;
left: -8px;
color: #3c434a;
line-height: 0.5;
position: relative;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-decoration: none !important;
color: #3c434a;
color: #a7aaad;
}
.column-comments .sorting-indicator:before {
top: 0;
left: -10px;
}
th.sorted.asc .sorting-indicator:before,
th.desc:hover span.sorting-indicator:before,
th.desc a:focus span.sorting-indicator:before {
.sorting-indicator.asc:before {
content: "\f142";
}
th.sorted.desc .sorting-indicator:before,
th.asc:hover span.sorting-indicator:before,
th.asc a:focus span.sorting-indicator:before {
.sorting-indicator.desc:before {
content: "\f140";
}
th.sorted.desc .sorting-indicator.desc:before {
color: #1d2327;
}
th.sorted.asc .sorting-indicator.asc:before {
color: #1d2327;
}
th.sorted.asc a:focus .sorting-indicator.asc:before,
th.sorted.asc:hover .sorting-indicator.asc:before,
th.sorted.desc a:focus .sorting-indicator.desc:before,
th.sorted.desc:hover .sorting-indicator.desc:before {
color: #a7aaad;
}
th.sorted.asc a:focus .sorting-indicator.desc:before,
th.sorted.asc:hover .sorting-indicator.desc:before,
th.sorted.desc a:focus .sorting-indicator.asc:before,
th.sorted.desc:hover .sorting-indicator.asc:before {
color: #1d2327;
}
.wp-list-table .toggle-row {
position: absolute;
right: 8px;
@ -552,6 +566,28 @@ th.asc a:focus span.sorting-indicator:before {
content: "\f142";
}
.check-column {
position: relative;
}
.check-column .label-covers-full-cell {
width: 100%;
height: 100%;
display: block;
position: absolute;
top: 0;
left: 0;
}
.check-column .label-covers-full-cell + input {
position: relative;
z-index: 1;
}
.check-column .label-covers-full-cell:hover + input {
box-shadow: 0 0 0 1px #2271b1;
}
.locked-indicator {
display: none;
margin-left: 6px;
@ -591,10 +627,6 @@ tr.wp-locked .row-actions .trash {
display: none;
}
.fixed .column-comments .sorting-indicator {
margin-top: 3px;
}
#menu-locations-wrap .widefat {
width: 60%;
}
@ -622,14 +654,6 @@ th.sorted a span {
cursor: pointer;
}
th.sorted .sorting-indicator,
th.desc:hover span.sorting-indicator,
th.desc a:focus span.sorting-indicator,
th.asc:hover span.sorting-indicator,
th.asc a:focus span.sorting-indicator {
visibility: visible;
}
.tablenav-pages .current-page {
margin: 0 2px 0 0;
font-size: 13px;

File diff suppressed because one or more lines are too long

View File

@ -438,8 +438,7 @@ input::-ms-reveal {
height: auto;
}
.login .language-switcher .button-primary {
float: none;
.login .language-switcher .button {
margin-bottom: 0;
}
@ -473,7 +472,7 @@ input::-ms-reveal {
}
@media screen and (max-width: 400px) {
.login .language-switcher .button-primary {
.login .language-switcher .button {
display: block;
margin: 5px auto 0;
}

File diff suppressed because one or more lines are too long

View File

@ -437,8 +437,7 @@ input::-ms-reveal {
height: auto;
}
.login .language-switcher .button-primary {
float: none;
.login .language-switcher .button {
margin-bottom: 0;
}
@ -472,7 +471,7 @@ input::-ms-reveal {
}
@media screen and (max-width: 400px) {
.login .language-switcher .button-primary {
.login .language-switcher .button {
display: block;
margin: 5px auto 0;
}

File diff suppressed because one or more lines are too long

View File

@ -584,7 +584,7 @@ border color while dragging a file over the uploader drop area */
margin-top: 0;
}
.media-search-input-label {
.media-frame-content .media-search-input-label {
margin: 0 0 0 .2em;
vertical-align: baseline;
}
@ -878,16 +878,16 @@ border color while dragging a file over the uploader drop area */
padding-top: 10px;
}
.imgedit-settings p,
.imgedit-settings fieldset {
.image-editor p,
.image-editor fieldset {
margin: 8px 0;
}
.imgedit-settings legend {
.image-editor legend {
margin-bottom: 5px;
}
.describe .imgedit-wrap .imgedit-settings {
.describe .imgedit-wrap .image-editor {
padding: 0 5px;
}
@ -899,19 +899,31 @@ border color while dragging a file over the uploader drop area */
height: auto;
}
.wp_attachment_holder .imgedit-wrap .imgedit-panel-content {
float: right;
padding: 3px 0 0 16px;
min-width: 400px;
max-width: calc( 100% - 266px );
.imgedit-panel-content {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 20px;
}
.wp_attachment_holder .imgedit-wrap .imgedit-settings {
.imgedit-settings {
max-width: 400px; /* Prevent reflow when help info is expanded. */
}
.imgedit-group-controls > * {
display: none;
}
.imgedit-panel-active .imgedit-group-controls > * {
display: block;
}
.wp_attachment_holder .imgedit-wrap .image-editor {
float: left;
width: 250px;
}
.imgedit-settings input {
.image-editor input {
margin-top: 0;
vertical-align: middle;
}
@ -946,7 +958,7 @@ border color while dragging a file over the uploader drop area */
}
.media-disabled,
.imgedit-settings .disabled {
.image-editor .disabled {
/* WCAG 1.4.3 Text or images of text that are part of an inactive user
interface component ... have no contrast requirement. */
color: #a7aaad;
@ -970,10 +982,6 @@ border color while dragging a file over the uploader drop area */
float: right;
}
.imgedit-menu {
margin: 0 0 12px;
}
.imgedit-menu .note-no-rotate {
clear: both;
margin: 0;
@ -986,10 +994,10 @@ border color while dragging a file over the uploader drop area */
min-height: 28px;
font-size: 13px;
line-height: 2;
margin: 0 0 8px 8px;
padding: 0 10px;
}
.imgedit-menu .button:after,
.imgedit-menu .button:before {
font: normal 16px/1 dashicons;
margin-left: 8px;
@ -1001,6 +1009,16 @@ border color while dragging a file over the uploader drop area */
-moz-osx-font-smoothing: grayscale;
}
.imgedit-menu .imgedit-rotate.button:after {
content: '\f140';
margin-right: 2px;
margin-left: 0;
}
.imgedit-menu .imgedit-rotate.button[aria-expanded="true"]:after {
content: '\f142';
}
.imgedit-menu .button.disabled {
color: #a7aaad;
border-color: #dcdcde;
@ -1015,22 +1033,14 @@ border color while dragging a file over the uploader drop area */
content: "\f165";
}
.imgedit-rleft:before {
content: "\f166";
.imgedit-scale:before {
content: "\f211";
}
.imgedit-rright:before {
.imgedit-rotate:before {
content: "\f167";
}
.imgedit-flipv:before {
content: "\f168";
}
.imgedit-fliph:before {
content: "\f169";
}
.imgedit-undo:before {
content: "\f171";
}
@ -1049,23 +1059,19 @@ border color while dragging a file over the uploader drop area */
background-size: 20px 20px;
}
.imgedit-crop-wrap {
padding: 20px;
background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7);
background-position: 100% 0, 10px 10px;
background-size: 20px 20px;
}
.imgedit-crop {
margin: 0 0 0 8px;
}
.imgedit-rleft {
margin: 0 3px;
}
.imgedit-rright {
margin: 0 3px 0 8px;
}
.imgedit-flipv {
margin: 0 3px;
}
.imgedit-fliph {
.imgedit-rotate {
margin: 0 3px 0 8px;
}
@ -1077,6 +1083,12 @@ border color while dragging a file over the uploader drop area */
margin: 0 3px 0 8px;
}
.imgedit-thumbnail-preview-group {
display: flex;
flex-wrap: wrap;
column-gap: 10px;
}
.imgedit-thumbnail-preview {
margin: 10px 0 0 8px;
}
@ -1103,11 +1115,41 @@ border color while dragging a file over the uploader drop area */
padding: .5em 0 0;
}
.imgedit-popup-menu,
.imgedit-help {
display: none;
padding-bottom: 8px;
}
.imgedit-panel-tools > .imgedit-menu {
display: flex;
column-gap: 4px;
align-items: start;
flex-wrap: wrap;
}
.imgedit-popup-menu {
width: calc( 100% - 20px );
position: absolute;
background: #fff;
padding: 10px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.image-editor .imgedit-menu .imgedit-popup-menu button {
display: block;
margin: 2px 0;
width: 100%;
white-space: break-spaces;
line-height: 1.5;
padding-top: 3px;
padding-bottom: 2px;
}
.imgedit-rotate-menu-container {
position: relative;
}
.imgedit-help.imgedit-restore {
padding-bottom: 0;
}
@ -1140,10 +1182,6 @@ border color while dragging a file over the uploader drop area */
padding: 0;
}
.imgedit-submit {
margin: 8px 0 0;
}
.imgedit-submit-btn {
margin-right: 20px;
}
@ -1155,8 +1193,11 @@ border color while dragging a file over the uploader drop area */
}
span.imgedit-scale-warn {
color: #d63638;
font-size: 20px;
display: flex;
align-items: center;
margin: 4px;
gap: 4px;
color: #b32d2e;
font-style: normal;
visibility: hidden;
vertical-align: middle;
@ -1171,17 +1212,19 @@ span.imgedit-scale-warn {
}
.imgedit-group {
margin-bottom: 8px;
padding: 10px;
margin-bottom: 20px;
}
.imgedit-settings .imgedit-original-dimensions {
.image-editor .imgedit-original-dimensions {
display: inline-block;
}
.imgedit-settings .imgedit-scale input[type="text"],
.imgedit-settings .imgedit-crop-ratio input[type="text"],
.imgedit-settings .imgedit-crop-sel input[type="text"] {
.image-editor .imgedit-scale-controls input[type="text"],
.image-editor .imgedit-crop-ratio input[type="text"],
.image-editor .imgedit-crop-sel input[type="text"],
.image-editor .imgedit-scale-controls input[type="number"],
.image-editor .imgedit-crop-ratio input[type="number"],
.image-editor .imgedit-crop-sel input[type="number"] {
width: 80px;
font-size: 14px;
padding: 0 8px;
@ -1195,12 +1238,12 @@ span.imgedit-scale-warn {
color: #3c434a;
}
.imgedit-settings .imgedit-scale-button-wrapper {
.image-editor .imgedit-scale-button-wrapper {
margin-top: 0.3077em;
display: block;
}
.imgedit-settings .imgedit-scale .button {
.image-editor .imgedit-scale-controls .button {
margin-bottom: 0;
}
@ -1229,7 +1272,6 @@ audio, video {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
.imgedit-wait:before {
background-image: url(../images/spinner-2x.gif);
@ -1269,15 +1311,15 @@ audio, video {
padding: 10px 12px 10px 0;
}
.imgedit-settings .imgedit-scale input[type="text"],
.imgedit-settings .imgedit-crop-ratio input[type="text"],
.imgedit-settings .imgedit-crop-sel input[type="text"] {
.image-editor .imgedit-scale input[type="text"],
.image-editor .imgedit-crop-ratio input[type="text"],
.image-editor .imgedit-crop-sel input[type="text"] {
font-size: 16px;
padding: 6px 10px;
}
.wp_attachment_holder .imgedit-wrap .imgedit-panel-content,
.wp_attachment_holder .imgedit-wrap .imgedit-settings {
.wp_attachment_holder .imgedit-wrap .image-editor {
float: none;
width: auto;
max-width: none;
@ -1294,16 +1336,16 @@ audio, video {
}
.media-modal .imgedit-wrap .imgedit-panel-content,
.media-modal .imgedit-wrap .imgedit-settings {
.media-modal .imgedit-wrap .image-editor {
position: initial !important;
}
.media-modal .imgedit-wrap .imgedit-settings {
.media-modal .imgedit-wrap .image-editor {
box-sizing: border-box;
width: 100% !important;
}
.imgedit-settings .imgedit-scale-button-wrapper {
.image-editor .imgedit-scale-button-wrapper {
display: inline-block;
}
}
@ -1317,7 +1359,6 @@ audio, video {
/**
* Media queries for media grid.
*/
@media only screen and (max-width: 1120px) {
/* override for media-views.css */
#wp-media-grid .wp-filter .attachment-filters {
@ -1325,6 +1366,17 @@ audio, video {
}
}
@media only screen and (max-width: 1000px) {
/* override for forms.css */
.wp-filter p.search-box {
float: none;
width: 100%;
margin-bottom: 20px;
display: flex;
}
}
@media only screen and (max-width: 782px) {
.media-frame.mode-select .attachments-browser.fixed .media-toolbar {
top: 46px;

File diff suppressed because one or more lines are too long

View File

@ -583,7 +583,7 @@ border color while dragging a file over the uploader drop area */
margin-top: 0;
}
.media-search-input-label {
.media-frame-content .media-search-input-label {
margin: 0 .2em 0 0;
vertical-align: baseline;
}
@ -877,16 +877,16 @@ border color while dragging a file over the uploader drop area */
padding-top: 10px;
}
.imgedit-settings p,
.imgedit-settings fieldset {
.image-editor p,
.image-editor fieldset {
margin: 8px 0;
}
.imgedit-settings legend {
.image-editor legend {
margin-bottom: 5px;
}
.describe .imgedit-wrap .imgedit-settings {
.describe .imgedit-wrap .image-editor {
padding: 0 5px;
}
@ -898,19 +898,31 @@ border color while dragging a file over the uploader drop area */
height: auto;
}
.wp_attachment_holder .imgedit-wrap .imgedit-panel-content {
float: left;
padding: 3px 16px 0 0;
min-width: 400px;
max-width: calc( 100% - 266px );
.imgedit-panel-content {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 20px;
}
.wp_attachment_holder .imgedit-wrap .imgedit-settings {
.imgedit-settings {
max-width: 400px; /* Prevent reflow when help info is expanded. */
}
.imgedit-group-controls > * {
display: none;
}
.imgedit-panel-active .imgedit-group-controls > * {
display: block;
}
.wp_attachment_holder .imgedit-wrap .image-editor {
float: right;
width: 250px;
}
.imgedit-settings input {
.image-editor input {
margin-top: 0;
vertical-align: middle;
}
@ -945,7 +957,7 @@ border color while dragging a file over the uploader drop area */
}
.media-disabled,
.imgedit-settings .disabled {
.image-editor .disabled {
/* WCAG 1.4.3 Text or images of text that are part of an inactive user
interface component ... have no contrast requirement. */
color: #a7aaad;
@ -969,10 +981,6 @@ border color while dragging a file over the uploader drop area */
float: left;
}
.imgedit-menu {
margin: 0 0 12px;
}
.imgedit-menu .note-no-rotate {
clear: both;
margin: 0;
@ -985,10 +993,10 @@ border color while dragging a file over the uploader drop area */
min-height: 28px;
font-size: 13px;
line-height: 2;
margin: 0 8px 8px 0;
padding: 0 10px;
}
.imgedit-menu .button:after,
.imgedit-menu .button:before {
font: normal 16px/1 dashicons;
margin-right: 8px;
@ -1000,6 +1008,16 @@ border color while dragging a file over the uploader drop area */
-moz-osx-font-smoothing: grayscale;
}
.imgedit-menu .imgedit-rotate.button:after {
content: '\f140';
margin-left: 2px;
margin-right: 0;
}
.imgedit-menu .imgedit-rotate.button[aria-expanded="true"]:after {
content: '\f142';
}
.imgedit-menu .button.disabled {
color: #a7aaad;
border-color: #dcdcde;
@ -1014,22 +1032,14 @@ border color while dragging a file over the uploader drop area */
content: "\f165";
}
.imgedit-rleft:before {
content: "\f166";
.imgedit-scale:before {
content: "\f211";
}
.imgedit-rright:before {
.imgedit-rotate:before {
content: "\f167";
}
.imgedit-flipv:before {
content: "\f168";
}
.imgedit-fliph:before {
content: "\f169";
}
.imgedit-undo:before {
content: "\f171";
}
@ -1048,23 +1058,19 @@ border color while dragging a file over the uploader drop area */
background-size: 20px 20px;
}
.imgedit-crop-wrap {
padding: 20px;
background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7);
background-position: 0 0, 10px 10px;
background-size: 20px 20px;
}
.imgedit-crop {
margin: 0 8px 0 0;
}
.imgedit-rleft {
margin: 0 3px;
}
.imgedit-rright {
margin: 0 8px 0 3px;
}
.imgedit-flipv {
margin: 0 3px;
}
.imgedit-fliph {
.imgedit-rotate {
margin: 0 8px 0 3px;
}
@ -1076,6 +1082,12 @@ border color while dragging a file over the uploader drop area */
margin: 0 8px 0 3px;
}
.imgedit-thumbnail-preview-group {
display: flex;
flex-wrap: wrap;
column-gap: 10px;
}
.imgedit-thumbnail-preview {
margin: 10px 8px 0 0;
}
@ -1102,11 +1114,41 @@ border color while dragging a file over the uploader drop area */
padding: .5em 0 0;
}
.imgedit-popup-menu,
.imgedit-help {
display: none;
padding-bottom: 8px;
}
.imgedit-panel-tools > .imgedit-menu {
display: flex;
column-gap: 4px;
align-items: start;
flex-wrap: wrap;
}
.imgedit-popup-menu {
width: calc( 100% - 20px );
position: absolute;
background: #fff;
padding: 10px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.image-editor .imgedit-menu .imgedit-popup-menu button {
display: block;
margin: 2px 0;
width: 100%;
white-space: break-spaces;
line-height: 1.5;
padding-top: 3px;
padding-bottom: 2px;
}
.imgedit-rotate-menu-container {
position: relative;
}
.imgedit-help.imgedit-restore {
padding-bottom: 0;
}
@ -1139,10 +1181,6 @@ border color while dragging a file over the uploader drop area */
padding: 0;
}
.imgedit-submit {
margin: 8px 0 0;
}
.imgedit-submit-btn {
margin-left: 20px;
}
@ -1154,8 +1192,11 @@ border color while dragging a file over the uploader drop area */
}
span.imgedit-scale-warn {
color: #d63638;
font-size: 20px;
display: flex;
align-items: center;
margin: 4px;
gap: 4px;
color: #b32d2e;
font-style: normal;
visibility: hidden;
vertical-align: middle;
@ -1170,17 +1211,19 @@ span.imgedit-scale-warn {
}
.imgedit-group {
margin-bottom: 8px;
padding: 10px;
margin-bottom: 20px;
}
.imgedit-settings .imgedit-original-dimensions {
.image-editor .imgedit-original-dimensions {
display: inline-block;
}
.imgedit-settings .imgedit-scale input[type="text"],
.imgedit-settings .imgedit-crop-ratio input[type="text"],
.imgedit-settings .imgedit-crop-sel input[type="text"] {
.image-editor .imgedit-scale-controls input[type="text"],
.image-editor .imgedit-crop-ratio input[type="text"],
.image-editor .imgedit-crop-sel input[type="text"],
.image-editor .imgedit-scale-controls input[type="number"],
.image-editor .imgedit-crop-ratio input[type="number"],
.image-editor .imgedit-crop-sel input[type="number"] {
width: 80px;
font-size: 14px;
padding: 0 8px;
@ -1194,12 +1237,12 @@ span.imgedit-scale-warn {
color: #3c434a;
}
.imgedit-settings .imgedit-scale-button-wrapper {
.image-editor .imgedit-scale-button-wrapper {
margin-top: 0.3077em;
display: block;
}
.imgedit-settings .imgedit-scale .button {
.image-editor .imgedit-scale-controls .button {
margin-bottom: 0;
}
@ -1228,7 +1271,6 @@ audio, video {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
.imgedit-wait:before {
background-image: url(../images/spinner-2x.gif);
@ -1268,15 +1310,15 @@ audio, video {
padding: 10px 0 10px 12px;
}
.imgedit-settings .imgedit-scale input[type="text"],
.imgedit-settings .imgedit-crop-ratio input[type="text"],
.imgedit-settings .imgedit-crop-sel input[type="text"] {
.image-editor .imgedit-scale input[type="text"],
.image-editor .imgedit-crop-ratio input[type="text"],
.image-editor .imgedit-crop-sel input[type="text"] {
font-size: 16px;
padding: 6px 10px;
}
.wp_attachment_holder .imgedit-wrap .imgedit-panel-content,
.wp_attachment_holder .imgedit-wrap .imgedit-settings {
.wp_attachment_holder .imgedit-wrap .image-editor {
float: none;
width: auto;
max-width: none;
@ -1293,16 +1335,16 @@ audio, video {
}
.media-modal .imgedit-wrap .imgedit-panel-content,
.media-modal .imgedit-wrap .imgedit-settings {
.media-modal .imgedit-wrap .image-editor {
position: initial !important;
}
.media-modal .imgedit-wrap .imgedit-settings {
.media-modal .imgedit-wrap .image-editor {
box-sizing: border-box;
width: 100% !important;
}
.imgedit-settings .imgedit-scale-button-wrapper {
.image-editor .imgedit-scale-button-wrapper {
display: inline-block;
}
}
@ -1316,7 +1358,6 @@ audio, video {
/**
* Media queries for media grid.
*/
@media only screen and (max-width: 1120px) {
/* override for media-views.css */
#wp-media-grid .wp-filter .attachment-filters {
@ -1324,6 +1365,17 @@ audio, video {
}
}
@media only screen and (max-width: 1000px) {
/* override for forms.css */
.wp-filter p.search-box {
float: none;
width: 100%;
margin-bottom: 20px;
display: flex;
}
}
@media only screen and (max-width: 782px) {
.media-frame.mode-select .attachments-browser.fixed .media-toolbar {
top: 46px;

File diff suppressed because one or more lines are too long

View File

@ -559,7 +559,6 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
.revision-tick.completed-false {
background-image: url(../images/spinner-2x.gif);

File diff suppressed because one or more lines are too long

View File

@ -558,7 +558,6 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
.revision-tick.completed-false {
background-image: url(../images/spinner-2x.gif);

File diff suppressed because one or more lines are too long

View File

@ -841,7 +841,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
}
}
@media only screen and (max-width: 780px) {
@media only screen and (max-width: 782px) {
body.folded .theme-overlay .theme-wrap,
.theme-overlay .theme-wrap {
top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */
@ -1942,7 +1942,6 @@ body.full-overlay-active {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
.wp-full-overlay .collapse-sidebar-arrow {
background-image: url(../images/arrows-2x.png);

File diff suppressed because one or more lines are too long

View File

@ -840,7 +840,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
}
}
@media only screen and (max-width: 780px) {
@media only screen and (max-width: 782px) {
body.folded .theme-overlay .theme-wrap,
.theme-overlay .theme-wrap {
top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */
@ -1941,7 +1941,6 @@ body.full-overlay-active {
* HiDPI Displays
*/
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
.wp-full-overlay .collapse-sidebar-arrow {
background-image: url(../images/arrows-2x.png);

File diff suppressed because one or more lines are too long

View File

@ -116,7 +116,7 @@ wp_enqueue_script( 'customize-controls' );
wp_enqueue_style( 'customize-controls' );
/**
* Enqueue Customizer control scripts.
* Fires when enqueuing Customizer control scripts.
*
* @since 3.4.0
*/

View File

@ -32,7 +32,14 @@ if ( $doaction ) {
$comment_status = wp_unslash( $_REQUEST['comment_status'] );
$delete_time = wp_unslash( $_REQUEST['pagegen_timestamp'] );
$comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_approved = %s AND %s > comment_date_gmt", $comment_status, $delete_time ) );
$comment_ids = $wpdb->get_col(
$wpdb->prepare(
"SELECT comment_ID FROM $wpdb->comments
WHERE comment_approved = %s AND %s > comment_date_gmt",
$comment_status,
$delete_time
)
);
$doaction = 'delete';
} elseif ( isset( $_REQUEST['delete_comments'] ) ) {
$comment_ids = $_REQUEST['delete_comments'];
@ -52,7 +59,19 @@ if ( $doaction ) {
$untrashed = 0;
$deleted = 0;
$redirect_to = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'spammed', 'unspammed', 'approved', 'unapproved', 'ids' ), wp_get_referer() );
$redirect_to = remove_query_arg(
array(
'trashed',
'untrashed',
'deleted',
'spammed',
'unspammed',
'approved',
'unapproved',
'ids',
),
wp_get_referer()
);
$redirect_to = add_query_arg( 'paged', $pagenum, $redirect_to );
wp_defer_comment_counting( true );
@ -197,7 +216,7 @@ get_current_screen()->add_help_tab(
'title' => __( 'Moderating Comments' ),
'content' =>
'<p>' . __( 'A red bar on the left means the comment is waiting for you to moderate it.' ) . '</p>' .
'<p>' . __( 'In the <strong>Author</strong> column, in addition to the author&#8217;s name, email address, and blog URL, the commenter&#8217;s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' .
'<p>' . __( 'In the <strong>Author</strong> column, in addition to the author&#8217;s name, email address, and site URL, the commenter&#8217;s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' .
'<p>' . __( 'In the <strong>Comment</strong> column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.' ) . '</p>' .
'<p>' . __( 'In the <strong>In response to</strong> column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.' ) . '</p>' .
'<p>' . __( 'In the <strong>Submitted on</strong> column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.' ) . '</p>' .
@ -286,7 +305,14 @@ if ( isset( $_REQUEST['error'] ) ) {
}
}
if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $_REQUEST['trashed'] ) || isset( $_REQUEST['untrashed'] ) || isset( $_REQUEST['spammed'] ) || isset( $_REQUEST['unspammed'] ) || isset( $_REQUEST['same'] ) ) {
if ( isset( $_REQUEST['approved'] )
|| isset( $_REQUEST['deleted'] )
|| isset( $_REQUEST['trashed'] )
|| isset( $_REQUEST['untrashed'] )
|| isset( $_REQUEST['spammed'] )
|| isset( $_REQUEST['unspammed'] )
|| isset( $_REQUEST['same'] )
) {
$approved = isset( $_REQUEST['approved'] ) ? (int) $_REQUEST['approved'] : 0;
$deleted = isset( $_REQUEST['deleted'] ) ? (int) $_REQUEST['deleted'] : 0;
$trashed = isset( $_REQUEST['trashed'] ) ? (int) $_REQUEST['trashed'] : 0;
@ -297,35 +323,63 @@ if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $
if ( $approved > 0 || $deleted > 0 || $trashed > 0 || $untrashed > 0 || $spammed > 0 || $unspammed > 0 || $same > 0 ) {
if ( $approved > 0 ) {
/* translators: %s: Number of comments. */
$messages[] = sprintf( _n( '%s comment approved.', '%s comments approved.', $approved ), $approved );
$messages[] = sprintf(
/* translators: %s: Number of comments. */
_n( '%s comment approved.', '%s comments approved.', $approved ),
$approved
);
}
if ( $spammed > 0 ) {
$ids = isset( $_REQUEST['ids'] ) ? $_REQUEST['ids'] : 0;
/* translators: %s: Number of comments. */
$messages[] = sprintf( _n( '%s comment marked as spam.', '%s comments marked as spam.', $spammed ), $spammed ) . ' <a href="' . esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=unspam&ids=$ids", 'bulk-comments' ) ) . '">' . __( 'Undo' ) . '</a><br />';
$messages[] = sprintf(
/* translators: %s: Number of comments. */
_n( '%s comment marked as spam.', '%s comments marked as spam.', $spammed ),
$spammed
) . sprintf(
' <a href="%1$s">%2$s</a><br />',
esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=unspam&ids=$ids", 'bulk-comments' ) ),
__( 'Undo' )
);
}
if ( $unspammed > 0 ) {
/* translators: %s: Number of comments. */
$messages[] = sprintf( _n( '%s comment restored from the spam.', '%s comments restored from the spam.', $unspammed ), $unspammed );
$messages[] = sprintf(
/* translators: %s: Number of comments. */
_n( '%s comment restored from the spam.', '%s comments restored from the spam.', $unspammed ),
$unspammed
);
}
if ( $trashed > 0 ) {
$ids = isset( $_REQUEST['ids'] ) ? $_REQUEST['ids'] : 0;
/* translators: %s: Number of comments. */
$messages[] = sprintf( _n( '%s comment moved to the Trash.', '%s comments moved to the Trash.', $trashed ), $trashed ) . ' <a href="' . esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=untrash&ids=$ids", 'bulk-comments' ) ) . '">' . __( 'Undo' ) . '</a><br />';
$messages[] = sprintf(
/* translators: %s: Number of comments. */
_n( '%s comment moved to the Trash.', '%s comments moved to the Trash.', $trashed ),
$trashed
) . sprintf(
' <a href="%1$s">%2$s</a><br />',
esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=untrash&ids=$ids", 'bulk-comments' ) ),
__( 'Undo' )
);
}
if ( $untrashed > 0 ) {
/* translators: %s: Number of comments. */
$messages[] = sprintf( _n( '%s comment restored from the Trash.', '%s comments restored from the Trash.', $untrashed ), $untrashed );
$messages[] = sprintf(
/* translators: %s: Number of comments. */
_n( '%s comment restored from the Trash.', '%s comments restored from the Trash.', $untrashed ),
$untrashed
);
}
if ( $deleted > 0 ) {
/* translators: %s: Number of comments. */
$messages[] = sprintf( _n( '%s comment permanently deleted.', '%s comments permanently deleted.', $deleted ), $deleted );
$messages[] = sprintf(
/* translators: %s: Number of comments. */
_n( '%s comment permanently deleted.', '%s comments permanently deleted.', $deleted ),
$deleted
);
}
if ( $same > 0 ) {
@ -333,19 +387,34 @@ if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $
if ( $comment ) {
switch ( $comment->comment_approved ) {
case '1':
$messages[] = __( 'This comment is already approved.' ) . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit comment' ) . '</a>';
$messages[] = __( 'This comment is already approved.' ) . sprintf(
' <a href="%1$s">%2$s</a>',
esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ),
__( 'Edit comment' )
);
break;
case 'trash':
$messages[] = __( 'This comment is already in the Trash.' ) . ' <a href="' . esc_url( admin_url( 'edit-comments.php?comment_status=trash' ) ) . '"> ' . __( 'View Trash' ) . '</a>';
$messages[] = __( 'This comment is already in the Trash.' ) . sprintf(
' <a href="%1$s">%2$s</a>',
esc_url( admin_url( 'edit-comments.php?comment_status=trash' ) ),
__( 'View Trash' )
);
break;
case 'spam':
$messages[] = __( 'This comment is already marked as spam.' ) . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit comment' ) . '</a>';
$messages[] = __( 'This comment is already marked as spam.' ) . sprintf(
' <a href="%1$s">%2$s</a>',
esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ),
__( 'Edit comment' )
);
break;
}
}
}
echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br />\n", $messages ) . '</p></div>';
printf(
'<div id="moderated" class="updated notice is-dismissible"><p>%s</p></div>',
implode( "<br />\n", $messages )
);
}
}
?>

View File

@ -319,7 +319,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<?php // JavaScript is disabled. ?>
<div class="wrap hide-if-js block-editor-no-js">
<h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1>
<div class="notice notice-error notice-alt">
<div class="notice notice-error">
<p>
<?php
$message = sprintf(

View File

@ -121,7 +121,7 @@ wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
<div id="addressdiv" class="postbox">
<h2 class="postbox-header"><label for="link_url"><?php _e( 'Web Address' ); ?></label></h2>
<div class="inside">
<input type="text" name="link_url" size="30" maxlength="255" class="code" value="<?php echo esc_attr( $link->link_url ); ?>" id="link_url" />
<input type="text" name="link_url" size="30" maxlength="255" class="code" value="<?php echo esc_url( $link->link_url ); ?>" id="link_url" />
<p><?php _e( 'Example: <code>https://wordpress.org/</code> &#8212; do not forget the <code>https://</code>' ); ?></p>
</div>
</div>

View File

@ -81,7 +81,7 @@ if ( $doaction ) {
$sendback = admin_url( $parent_file );
}
$sendback = add_query_arg( 'paged', $pagenum, $sendback );
if ( strpos( $sendback, 'post.php' ) !== false ) {
if ( str_contains( $sendback, 'post.php' ) ) {
$sendback = admin_url( $post_new_file );
}
@ -442,8 +442,13 @@ foreach ( $bulk_counts as $message => $count ) {
}
if ( 'trashed' === $message && isset( $_REQUEST['ids'] ) ) {
$ids = preg_replace( '/[^0-9,]/', '', $_REQUEST['ids'] );
$messages[] = '<a href="' . esc_url( wp_nonce_url( "edit.php?post_type=$post_type&doaction=undo&action=untrash&ids=$ids", 'bulk-posts' ) ) . '">' . __( 'Undo' ) . '</a>';
$ids = preg_replace( '/[^0-9,]/', '', $_REQUEST['ids'] );
$messages[] = sprintf(
'<a href="%1$s">%2$s</a>',
esc_url( wp_nonce_url( "edit.php?post_type=$post_type&doaction=undo&action=untrash&ids=$ids", 'bulk-posts' ) ),
__( 'Undo' )
);
}
if ( 'untrashed' === $message && isset( $_REQUEST['ids'] ) ) {
@ -460,7 +465,10 @@ foreach ( $bulk_counts as $message => $count ) {
}
if ( $messages ) {
echo '<div id="message" class="updated notice is-dismissible"><p>' . implode( ' ', $messages ) . '</p></div>';
printf(
'<div id="message" class="updated notice is-dismissible"><p>%s</p></div>',
implode( ' ', $messages )
);
}
unset( $messages );

View File

@ -127,7 +127,7 @@ if ( isset( $_GET['download'] ) ) {
require_once ABSPATH . 'wp-admin/admin-header.php';
/**
* Create the date options fields for exporting a given post type.
* Creates the date options fields for exporting a given post type.
*
* @global wpdb $wpdb WordPress database abstraction object.
* @global WP_Locale $wp_locale WordPress date and time locale object.
@ -141,12 +141,10 @@ function export_date_options( $post_type = 'post' ) {
$months = $wpdb->get_results(
$wpdb->prepare(
"
SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month
FROM $wpdb->posts
WHERE post_type = %s AND post_status != 'auto-draft'
ORDER BY post_date DESC
",
"SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month
FROM $wpdb->posts
WHERE post_type = %s AND post_status != 'auto-draft'
ORDER BY post_date DESC",
$post_type
)
);

View File

@ -41,6 +41,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a>
<a href="freedoms.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Freedoms' ); ?></a>
<a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
<a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a>
</nav>
<div class="about__section is-feature">
@ -57,22 +58,22 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section has-2-columns">
<div class="column aligncenter">
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-1.svg?ver=6.1' ) ); ?>" alt="" />
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-1.svg?ver=6.3' ) ); ?>" alt="" />
<h2 class="is-smaller-heading"><?php _e( 'The 1st Freedom' ); ?></h2>
<p><?php _e( 'To run the program for any purpose.' ); ?></p>
</div>
<div class="column aligncenter">
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-2.svg?ver=6.1' ) ); ?>" alt="" />
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-2.svg?ver=6.3' ) ); ?>" alt="" />
<h2 class="is-smaller-heading"><?php _e( 'The 2nd Freedom' ); ?></h2>
<p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p>
</div>
<div class="column aligncenter">
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-3.svg?ver=6.1' ) ); ?>" alt="" />
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-3.svg?ver=6.3' ) ); ?>" alt="" />
<h2 class="is-smaller-heading"><?php _e( 'The 3rd Freedom' ); ?></h2>
<p><?php _e( 'To redistribute.' ); ?></p>
</div>
<div class="column aligncenter">
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-4.svg?ver=6.1' ) ); ?>" alt="" />
<img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-4.svg?ver=6.3' ) ); ?>" alt="" />
<h2 class="is-smaller-heading"><?php _e( 'The 4th Freedom' ); ?></h2>
<p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p>
</div>

View File

@ -1,6 +1 @@
<svg width="936" height="400" viewBox="0 0 936 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill="#1D35B4" d="M0 0h936v400H0z"/>
<path d="M1333.98 1370.56H119.164V1481H1333.98v-110.44ZM1333.98 1186.5H119.164v110.44H1333.98V1186.5ZM1156.09 638.78c57.96-57.962 102.85-125.587 133.43-200.961 29.52-72.778 44.49-149.68 44.49-228.533 0-78.853-14.97-155.755-44.49-228.534-30.58-75.392-75.47-142.999-133.43-200.96-57.96-57.962-125.59-102.855-200.962-133.428-72.778-29.524-149.68-44.488-228.533-44.488-78.853 0-155.755 14.964-228.533 44.488-75.393 30.573-142.999 75.466-200.961 133.428-57.962 57.961-102.855 125.586-133.428 200.96-29.524 72.78-44.488 149.681-44.488 228.552 0 78.872 14.964 155.755 44.488 228.534 30.573 75.392 75.466 142.999 133.428 200.96a618.102 618.102 0 0 0 13.216 12.811l78.135-78.135a508.957 508.957 0 0 1-13.271-12.774c-93.873-93.872-145.558-218.667-145.558-351.414 0-132.747 51.685-257.542 145.558-351.414 93.872-93.873 218.667-145.558 351.414-145.558 132.747 0 257.542 51.685 351.415 145.558 93.87 93.872 145.56 218.667 145.56 351.414 0 132.747-51.69 257.542-145.56 351.414l-441.735 441.73H532.15l493.79-493.783c79.95-79.957 124-186.272 124-299.343 0-113.07-44.03-219.385-124-299.342-79.96-79.958-186.275-124.004-299.345-124.004-113.07 0-219.386 44.028-299.343 124.004-79.957 79.975-124.003 186.272-124.003 299.342 0 113.071 44.028 219.386 124.003 299.343 4.344 4.344 8.798 8.559 13.308 12.719l78.19-78.19c-4.583-4.087-9.074-8.283-13.418-12.627-121.997-121.998-121.997-320.51 0-442.526 121.998-121.997 320.51-121.997 442.526 0 59.102 59.103 91.642 137.68 91.642 221.263s-32.54 162.16-91.642 221.263L375.972 1002.43H271.847l623.958-623.934c93.302-93.302 93.302-245.1 0-338.401C850.617-5.093 790.52-29.997 726.613-29.997c-63.907 0-124.003 24.886-169.191 70.092-45.188 45.187-70.091 105.284-70.091 169.191s24.885 124.004 70.091 169.191a239.904 239.904 0 0 0 13.51 12.517l78.54-78.54a130.885 130.885 0 0 1-13.952-12.075c-24.333-24.333-37.733-56.692-37.733-91.112 0-34.419 13.4-66.778 37.733-91.111s56.692-37.733 91.112-37.733c34.42 0 66.778 13.4 91.111 37.733 50.231 50.231 50.231 131.974 0 182.223L119.222 998.901v113.949H1334.04v-110.43H792.49l363.64-363.64h-.04ZM-1277.19-91.013c-75.54 75.54-134.04 163.632-173.87 261.849-38.45 94.848-57.94 195.033-57.94 297.815 0 102.781 19.49 202.967 57.96 297.796 39.83 98.217 98.33 186.309 173.87 261.853 75.54 75.54 163.63 134.03 261.85 173.86 94.827 38.45 195.031 57.96 297.794 57.96 102.762 0 202.967-19.49 297.796-57.96 98.216-39.83 186.309-98.32 261.849-173.86 75.54-75.544 134.035-163.636 173.867-261.853 38.45-94.829 57.961-195.034 57.961-297.796 0-102.763-19.492-202.967-57.961-297.797-39.832-98.216-98.327-186.31-173.867-261.85-48.74-48.739-102.91-90.448-161.681-124.647l-81.228 81.227c60.52 31.788 115.85 72.54 164.829 121.52 128.624 128.623 199.47 299.655 199.47 481.565 0 181.91-70.846 352.942-199.47 481.566C-364.584 1078.86-535.616 1149.7-717.526 1149.7c-181.91 0-352.944-70.84-481.564-199.465-128.63-128.624-199.47-299.656-199.47-481.566 0-181.91 70.84-352.942 199.47-481.566L-593.007-619h-156.178L-1277.19-91.013Z" fill="#213FD4"/>
<path d="M-1147.02 39.138c-57.96 57.962-102.86 125.587-133.43 200.961-29.52 72.778-44.49 149.68-44.49 228.533 0 78.853 14.97 155.755 44.49 228.533 30.57 75.393 75.47 142.999 133.43 200.961 57.96 57.962 125.58 102.854 200.958 133.424 72.779 29.53 149.681 44.49 228.534 44.49 78.853 0 155.754-14.96 228.533-44.49 75.393-30.57 142.999-75.462 200.961-133.424 57.962-57.962 102.855-125.587 133.428-200.961 29.523-72.778 44.488-149.68 44.488-228.533 0-78.853-14.965-155.755-44.488-228.533-30.573-75.393-75.466-143-133.428-200.961C-336.903-9.731-393.815-49.875-455.716-79.51l-83.97 83.97c64.735 24.83 124.169 63.355 173.572 112.776 93.873 93.873 145.558 218.668 145.558 351.414 0 132.747-51.685 257.542-145.558 351.415-93.872 93.872-218.667 145.557-351.414 145.557-132.747 0-257.542-51.703-351.412-145.557-93.87-93.873-145.56-218.668-145.56-351.415 0-132.746 51.69-257.541 145.56-351.414L-332.706-619h-156.178L-1147.02 39.138Z" fill="#213FD4"/>
<path d="M-72.403-619h-156.178l-788.309 788.289c-79.96 79.958-124 186.273-124 299.343 0 113.07 44.03 219.386 124 299.343 79.958 79.957 186.273 124.004 299.343 124.004 113.071 0 219.404-44.047 299.343-124.004C-338.247 688.018-294.2 581.702-294.2 468.632c0-113.07-44.028-219.385-124.004-299.361-50.857-50.838-112.371-87.136-179.48-106.849l-94.333 94.333c73.957 5.926 142.686 37.567 195.733 90.614 59.103 59.103 91.646 137.68 91.646 221.263 0 83.584-32.543 162.16-91.646 221.263-59.102 59.103-137.679 91.645-221.263 91.645-83.583 0-162.16-32.542-221.262-91.645-59.103-59.103-91.641-137.679-91.641-221.263 0-83.583 32.538-162.16 91.641-221.263L-72.403-619Z" fill="#213FD4"/>
</svg>
<svg width="1000" height="400" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_1916_8299)"><path fill="#151515" d="M0 0h1000v400H0z"/><ellipse opacity=".2" cx="500" cy="463" rx="1497" ry="249" fill="url(#paint0_radial_1916_8299)"/><mask id="a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="1000" height="400"><path fill="url(#paint1_radial_1916_8299)" d="M0 0h1000v400H0z"/></mask><g mask="url(#a)" stroke-width="2"><path d="M155 0v1635" stroke="url(#paint2_linear_1916_8299)"/><path d="M327.5 0v1635" stroke="url(#paint3_linear_1916_8299)"/><path d="M500 0v1635" stroke="url(#paint4_linear_1916_8299)"/><path d="M672.5 0v1635" stroke="url(#paint5_linear_1916_8299)"/><path d="M845 0v1635" stroke="url(#paint6_linear_1916_8299)"/></g></g><defs><radialGradient id="paint0_radial_1916_8299" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0 249 -1497 0 500 463)"><stop stop-color="#3858E9"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></radialGradient><radialGradient id="paint1_radial_1916_8299" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0 493 -1232.5 0 500 162)"><stop offset=".161" stop-color="#151515" stop-opacity="0"/><stop offset=".833"/></radialGradient><linearGradient id="paint2_linear_1916_8299" x1="155.5" x2="155.5" y2="1635" gradientUnits="userSpaceOnUse"><stop stop-color="#3858E9" stop-opacity="0"/><stop offset=".297" stop-color="#3858E9"/><stop offset=".734" stop-color="#3858E9"/><stop offset="1" stop-color="#3858E9" stop-opacity="0"/><stop offset="1" stop-color="#3858E9" stop-opacity="0"/></linearGradient><linearGradient id="paint3_linear_1916_8299" x1="328" x2="328" y2="1635" gradientUnits="userSpaceOnUse"><stop stop-color="#FFFCB5" stop-opacity="0"/><stop offset="0" stop-color="#FFFCB5" stop-opacity="0"/><stop offset=".297" stop-color="#FFFCB5"/><stop offset=".734" stop-color="#FFFCB5"/><stop offset="1" stop-color="#FFFCB5" stop-opacity="0"/></linearGradient><linearGradient id="paint4_linear_1916_8299" x1="500.5" x2="500.5" y2="1635" gradientUnits="userSpaceOnUse"><stop stop-color="#C7FFDB" stop-opacity="0"/><stop offset=".297" stop-color="#C7FFDB"/><stop offset=".693" stop-color="#C7FFDB"/><stop offset="1" stop-color="#C7FFDB" stop-opacity="0"/></linearGradient><linearGradient id="paint5_linear_1916_8299" x1="673" x2="673" y2="1635" gradientUnits="userSpaceOnUse"><stop stop-color="#FFB7A7" stop-opacity="0"/><stop offset=".297" stop-color="#FFB7A7"/><stop offset=".734" stop-color="#FFB7A7"/><stop offset="1" stop-color="#3858E9" stop-opacity="0"/><stop offset="1" stop-color="#FFB7A7" stop-opacity="0"/></linearGradient><linearGradient id="paint6_linear_1916_8299" x1="845.5" x2="845.5" y2="1635" gradientUnits="userSpaceOnUse"><stop stop-color="#7B90FF" stop-opacity="0"/><stop offset=".297" stop-color="#7B90FF"/><stop offset=".734" stop-color="#7B90FF"/><stop offset="1" stop-color="#3858E9" stop-opacity="0"/><stop offset="1" stop-color="#7B90FF" stop-opacity="0"/></linearGradient><clipPath id="clip0_1916_8299"><path fill="#fff" d="M0 0h1000v400H0z"/></clipPath></defs></svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1 @@
<svg width="1000" height="400" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_3974_29104)"><path fill="#151515" d="M0 0h1000v400H0z"/><ellipse opacity=".2" cx="500" cy="463" rx="1497" ry="249" fill="url(#paint0_radial_3974_29104)"/><g opacity=".3" stroke-width="2"><circle cx="100" cy="100" r="101" transform="matrix(-1 0 0 1 1100 55)" stroke="url(#paint1_linear_3974_29104)"/><circle cx="100" cy="100" r="101" transform="matrix(0 1 1 0 650 10)" stroke="url(#paint2_linear_3974_29104)"/><circle cx="100" cy="100" r="101" transform="matrix(0 1 1 0 150 190)" stroke="url(#paint3_linear_3974_29104)"/><circle opacity=".7" cx="100" cy="100" r="101" transform="matrix(0 1 1 0 400 100)" stroke="url(#paint4_linear_3974_29104)"/><circle cx="100" cy="100" r="101" transform="matrix(-1 0 0 1 100 145)" stroke="url(#paint5_linear_3974_29104)"/></g></g><defs><radialGradient id="paint0_radial_3974_29104" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0 249 -1497 0 500 463)"><stop stop-color="#3858E9"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></radialGradient><linearGradient id="paint1_linear_3974_29104" x1="190" y1="215" x2="76" y2="47" gradientUnits="userSpaceOnUse"><stop stop-color="#3858E9"/><stop offset=".516" stop-color="#3858E9"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></linearGradient><linearGradient id="paint2_linear_3974_29104" x1="-19" y1="173" x2="100" y2="200" gradientUnits="userSpaceOnUse"><stop stop-color="#FFFCB5"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></linearGradient><linearGradient id="paint3_linear_3974_29104" x1="14" y1="160" x2="175" y2="24" gradientUnits="userSpaceOnUse"><stop stop-color="#151515" stop-opacity="0"/><stop offset=".776" stop-color="#FFB7A7"/><stop offset="1" stop-color="#FFB7A7"/></linearGradient><linearGradient id="paint4_linear_3974_29104" x1="100" x2="100" y2="200" gradientUnits="userSpaceOnUse"><stop stop-color="#C7FFDB"/><stop offset=".563" stop-color="#151515" stop-opacity="0"/></linearGradient><linearGradient id="paint5_linear_3974_29104" x1="100" x2="100" y2="200" gradientUnits="userSpaceOnUse"><stop stop-color="#7B90FF"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></linearGradient><clipPath id="clip0_3974_29104"><path fill="#fff" d="M0 0h1000v400H0z"/></clipPath></defs></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,5 +1 @@
<svg width="936" height="400" viewBox="0 0 936 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill="#1D35B4" d="M0 0h936v400H0z"/>
<path d="M401.54 62.66c16.569 0 30-13.431 30-30 0-16.568-13.431-30-30-30-16.569 0-30 13.431-30 30 0 16.569 13.431 30 30 30ZM439.64 156.1c16.569 0 30-13.431 30-30 0-16.568-13.431-30-30-30-16.569 0-30 13.432-30 30 0 16.569 13.431 30 30 30ZM446.99 256.73c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.569 0-30 13.431-30 30 0 16.569 13.431 30 30 30ZM422.89 354.71c16.569 0 30-13.431 30-30 0-16.568-13.431-30-30-30-16.569 0-30 13.432-30 30 0 16.569 13.431 30 30 30ZM369.69 440.44c16.568 0 30-13.432 30-30 0-16.569-13.432-30-30-30-16.569 0-30 13.431-30 30 0 16.568 13.431 30 30 30ZM107.99 448.77c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.569 0-30 13.431-30 30 0 16.569 13.431 30 30 30ZM14.66 419.42c16.569 0 30-13.432 30-30 0-16.569-13.431-30-30-30-16.569 0-30 13.431-30 30 0 16.568 13.431 30 30 30ZM46.44 24.54c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.568 0-30 13.431-30 30 0 16.569 13.431 30 30 30ZM143.27 10.49c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.569 0-30 13.431-30 30 0 16.569 13.431 30 30 30ZM236.6 39.85c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.568 0-30 13.431-30 30 0 16.569 13.432 30 30 30ZM307.96 106.79c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.568 0-30 13.431-30 30 0 16.569 13.432 30 30 30ZM343.2 198.06c16.569 0 30-13.432 30-30 0-16.569-13.431-30-30-30-16.568 0-30 13.431-30 30 0 16.568 13.432 30 30 30ZM335.35 295.59c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.568 0-30 13.431-30 30 0 16.569 13.432 30 30 30ZM285.97 380.05c16.569 0 30-13.431 30-30 0-16.568-13.431-30-30-30-16.569 0-30 13.432-30 30 0 16.569 13.431 30 30 30ZM204.82 434.72c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.568 0-30 13.431-30 30 0 16.569 13.432 30 30 30ZM8.81 224.56c16.569 0 30-13.431 30-30 0-16.568-13.431-30-30-30-16.568 0-30 13.432-30 30 0 16.569 13.432 30 30 30ZM46.61 143.44c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.568 0-30 13.431-30 30 0 16.569 13.432 30 30 30ZM130.71 112.81c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.568 0-30 13.431-30 30 0 16.569 13.432 30 30 30ZM211.83 150.61c16.569 0 30-13.431 30-30 0-16.568-13.431-30-30-30-16.568 0-30 13.432-30 30 0 16.569 13.432 30 30 30ZM242.45 234.71c16.569 0 30-13.431 30-30 0-16.568-13.431-30-30-30-16.568 0-30 13.432-30 30 0 16.569 13.432 30 30 30ZM204.65 315.83c16.569 0 30-13.431 30-30 0-16.568-13.431-30-30-30-16.568 0-30 13.432-30 30 0 16.569 13.432 30 30 30ZM120.56 346.45c16.569 0 30-13.431 30-30 0-16.568-13.431-30-30-30-16.568 0-30 13.432-30 30 0 16.569 13.432 30 30 30ZM39.44 308.65c16.569 0 30-13.431 30-30 0-16.568-13.431-30-30-30-16.568 0-30 13.432-30 30 0 16.569 13.432 30 30 30Z" fill="#213FD4"/>
<path d="M126 230c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.569 0-30 13.431-30 30 0 16.569 13.431 30 30 30Z" fill="#33F078"/>
</svg>
<svg width="1000" height="400" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_1916_7547)"><path fill="#151515" d="M0 0h1000v400H0z"/><g opacity=".3" stroke-width="2"><circle cy="155" r="101" stroke="url(#paint0_linear_1916_7547)"/><circle cx="250" cy="110" r="101" transform="rotate(90 250 110)" stroke="url(#paint1_linear_1916_7547)"/><circle cx="750" cy="290" r="101" transform="rotate(90 750 290)" stroke="url(#paint2_linear_1916_7547)"/><circle opacity=".7" cx="500" cy="200" r="101" transform="rotate(90 500 200)" stroke="url(#paint3_linear_1916_7547)"/><circle cx="1000" cy="245" r="101" stroke="url(#paint4_linear_1916_7547)"/></g><ellipse opacity=".2" cx="500" cy="463" rx="1497" ry="249" fill="url(#paint5_radial_1916_7547)"/></g><defs><linearGradient id="paint0_linear_1916_7547" x1="90" y1="270" x2="-24" y2="102" gradientUnits="userSpaceOnUse"><stop stop-color="#3858E9"/><stop offset=".516" stop-color="#3858E9"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></linearGradient><linearGradient id="paint1_linear_1916_7547" x1="131" y1="183" x2="250" y2="210" gradientUnits="userSpaceOnUse"><stop stop-color="#FFFCB5"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></linearGradient><linearGradient id="paint2_linear_1916_7547" x1="664" y1="350" x2="825" y2="214" gradientUnits="userSpaceOnUse"><stop stop-color="#151515" stop-opacity="0"/><stop offset=".776" stop-color="#FFB7A7"/><stop offset="1" stop-color="#FFB7A7"/></linearGradient><linearGradient id="paint3_linear_1916_7547" x1="500" y1="100" x2="500" y2="300" gradientUnits="userSpaceOnUse"><stop stop-color="#C7FFDB"/><stop offset=".563" stop-color="#151515" stop-opacity="0"/></linearGradient><linearGradient id="paint4_linear_1916_7547" x1="1000" y1="145" x2="1000" y2="345" gradientUnits="userSpaceOnUse"><stop stop-color="#7B90FF"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></linearGradient><radialGradient id="paint5_radial_1916_7547" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0 249 -1497 0 500 463)"><stop stop-color="#3858E9"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></radialGradient><clipPath id="clip0_1916_7547"><path fill="#fff" d="M0 0h1000v400H0z"/></clipPath></defs></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,8 +1 @@
<svg width="936" height="400" viewBox="0 0 936 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill="#1D35B4" d="M0 0h936v400H0z"/>
<path d="M31-26c0 220.91 179.09 400 400 400h1000" stroke="#213FD4" stroke-width="60" stroke-miterlimit="10"/>
<path d="M131-26c0 165.69 134.31 300 300 300h1000" stroke="#213FD4" stroke-width="60" stroke-miterlimit="10"/>
<path d="M231-26c0 110.46 89.54 200 200 200h1000" stroke="#213FD4" stroke-width="60" stroke-miterlimit="10"/>
<path d="M336-26c0 55.23 44.567 100 99.545 100H1431" stroke="#213FD4" stroke-width="60" stroke-miterlimit="10"/>
<path d="M132 27c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.569 0-30 13.431-30 30 0 16.569 13.431 30 30 30ZM474 104c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.569 0-30 13.431-30 30 0 16.569 13.431 30 30 30ZM936 204c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.569 0-30 13.431-30 30 0 16.569 13.431 30 30 30ZM755 404c16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.569 0-30 13.431-30 30 0 16.569 13.431 30 30 30Z" fill="#33F078"/>
</svg>
<svg width="1000" height="400" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_1916_6764)"><path fill="#151515" d="M0 0h1000v400H0z"/><ellipse opacity=".2" cx="500" cy="463" rx="1497" ry="249" fill="url(#paint0_radial_1916_6764)"/><path opacity=".4" d="M301 449h1v-95.447c0-4.441 0-7.834-.221-10.543-.223-2.73-.676-4.852-1.632-6.728a16.998 16.998 0 0 0-7.429-7.429c-1.876-.956-3.998-1.409-6.728-1.632-2.709-.221-6.102-.221-10.543-.221H160.154c-3.321 0-5.875 0-7.917.167-2.063.168-3.691.512-5.139 1.25a12.997 12.997 0 0 0-5.681 5.681c-.738 1.448-1.082 3.076-1.25 5.139-.167 2.042-.167 4.596-.167 7.917V449h161z" stroke="url(#paint1_linear_1916_6764)" stroke-width="2"/><path opacity=".4" d="M493 449h1v-95.447c0-4.441 0-7.834-.221-10.543-.223-2.73-.676-4.852-1.632-6.728a16.998 16.998 0 0 0-7.429-7.429c-1.876-.956-3.998-1.409-6.728-1.632-2.709-.221-6.102-.221-10.543-.221H352.154c-3.321 0-5.875 0-7.917.167-2.063.168-3.691.512-5.139 1.25a12.997 12.997 0 0 0-5.681 5.681c-.738 1.448-1.082 3.076-1.25 5.139-.167 2.042-.167 4.596-.167 7.917V449h161z" stroke="url(#paint2_linear_1916_6764)" stroke-width="2"/><path opacity=".4" d="M685 449h1v-95.447c0-4.441 0-7.834-.221-10.543-.223-2.73-.676-4.852-1.632-6.728a16.998 16.998 0 0 0-7.429-7.429c-1.876-.956-3.998-1.409-6.728-1.632-2.709-.221-6.102-.221-10.543-.221H544.154c-3.321 0-5.875 0-7.917.167-2.063.168-3.691.512-5.139 1.25a12.997 12.997 0 0 0-5.681 5.681c-.738 1.448-1.082 3.076-1.25 5.139-.167 2.042-.167 4.596-.167 7.917V449h161z" stroke="url(#paint3_linear_1916_6764)" stroke-width="2"/><path opacity=".4" d="M877 449h1v-95.447c0-4.441 0-7.834-.221-10.543-.223-2.73-.676-4.852-1.632-6.728a16.998 16.998 0 0 0-7.429-7.429c-1.876-.956-3.998-1.409-6.728-1.632-2.709-.221-6.102-.221-10.543-.221H736.154c-3.321 0-5.875 0-7.917.167-2.063.168-3.691.512-5.139 1.25a12.997 12.997 0 0 0-5.681 5.681c-.738 1.448-1.082 3.076-1.25 5.139-.167 2.042-.167 4.596-.167 7.917V449h161z" stroke="url(#paint4_linear_1916_6764)" stroke-width="2"/></g><defs><radialGradient id="paint0_radial_1916_6764" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0 249 -1497 0 500 463)"><stop stop-color="#3858E9"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></radialGradient><linearGradient id="paint1_linear_1916_6764" x1="221" y1="328" x2="221" y2="448" gradientUnits="userSpaceOnUse"><stop stop-color="#3858E9"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></linearGradient><linearGradient id="paint2_linear_1916_6764" x1="413" y1="328" x2="413" y2="448" gradientUnits="userSpaceOnUse"><stop stop-color="#FFFCB5"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></linearGradient><linearGradient id="paint3_linear_1916_6764" x1="605" y1="328" x2="605" y2="448" gradientUnits="userSpaceOnUse"><stop stop-color="#C7FFDB"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></linearGradient><linearGradient id="paint4_linear_1916_6764" x1="797" y1="328" x2="797" y2="448" gradientUnits="userSpaceOnUse"><stop stop-color="#FFB7A7"/><stop offset="1" stop-color="#151515" stop-opacity="0"/></linearGradient><clipPath id="clip0_1916_6764"><path fill="#fff" d="M0 0h1000v400H0z"/></clipPath></defs></svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

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