This commit is contained in:
Hanson.xyz Dev
2026-01-04 17:50:08 -06:00
parent 7e45ce0756
commit acc8ac87a0
4131 changed files with 232562 additions and 250244 deletions
+46 -135
View File
@@ -14,18 +14,24 @@ require_once __DIR__ . '/admin.php';
$title = _x( 'About', 'page title' );
list( $display_version ) = explode( '-', wp_get_wp_version() );
$display_major_version = '6.8';
$display_major_version = '6.9';
$release_notes_url = sprintf(
/* translators: %s: WordPress version number. */
__( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ),
'6-8'
sanitize_title( $display_major_version )
);
$field_guide_url = sprintf(
/* translators: %s: WordPress version number. */
__( 'https://make.wordpress.org/core/wordpress-%s-field-guide/' ),
'6-8'
sanitize_title( $display_major_version )
);
$release_page_url = sprintf(
/* translators: %s: WordPress version number. */
__( 'https://wordpress.org/download/releases/%s/' ),
sanitize_title( $display_major_version )
);
require_once ABSPATH . 'wp-admin/admin-header.php';
@@ -54,116 +60,24 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a>
</nav>
<div class="about__section changelog has-subtle-background-color">
<div class="about__section">
<div class="column">
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
<p>
<?php
printf(
/* translators: %s: WordPress version. */
__( '<strong>Version %s</strong> addressed some security issues.' ),
'6.8.3'
);
?>
<?php
printf(
/* translators: %s: HelpHub URL. */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version. */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '6.8.3' )
)
);
?>
</p>
<p>
<?php
printf(
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
_n(
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
35
),
'6.8.2',
'35'
);
?>
<?php
printf(
/* translators: %s: HelpHub URL. */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version. */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '6.8.2' )
)
);
?>
</p>
<p>
<?php
printf(
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
_n(
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
16
),
'6.8.1',
'15'
);
?>
<?php
printf(
/* translators: %s: HelpHub URL. */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version. */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '6.8.1' )
)
);
?>
</p>
</div>
</div>
<div class="about__section has-1-column">
<div class="column">
<h2><?php _e( 'A release polished to a high sheen.' ); ?></h2>
<p class="is-subheading"><?php _e( 'WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage.' ); ?></p>
<p><?php _e( 'The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles.' ); ?></p>
<p><?php _e( 'Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance.' ); ?></p>
<h2><?php _e( 'Welcome to WordPress 6.9' ); ?></h2>
<p class="is-subheading"><?php _e( 'WordPress 6.9 introduces a more intuitive way to create content, together. Every detail is designed to fit your creative flow, from Notes that let you collaborate directly in the editor to a powerful Command Palette that helps you reach every part of your site.' ); ?></p>
</div>
</div>
<div class="about__section has-2-columns">
<div class="column is-vertically-aligned-center">
<h3><?php _e( 'The Style Book gets a cleaner look—and a few new tricks' ); ?></h3>
<h3><?php _ex( 'Notes', 'about page section title' ); ?></h3>
<p>
<?php _e( 'The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place.' ); ?>
<strong><?php _e( 'Leave feedback right where youre working.' ); ?></strong><br />
<?php _e( 'With notes attached directly to blocks, your team can stay aligned, track changes, and turn feedback into action all in one place. Whether you&#8217;re working on copy or refining design, collaboration happens seamlessly on the canvas itself.' ); ?>
</p>
<?php if ( ! wp_is_block_theme() ) : ?>
<p>
<?php
if ( current_user_can( 'edit_theme_options' ) && ( current_theme_supports( 'editor-styles' ) || wp_theme_has_theme_json() ) ) {
printf(
/* translators: %s is a direct link to the Style Book. */
__( 'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find <a href="%s">the Style Book</a> under Appearance > Design and use it to preview your theme&#8217;s evolution, as you edit CSS or make changes in the Customizer.' ),
add_query_arg( 'p', '/stylebook', admin_url( '/site-editor.php' ) )
);
} else {
_e( 'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme&#8217;s evolution, as you edit CSS or make changes in the Customizer.' );
}
?>
</p>
<?php endif; ?>
</div>
<div class="column is-vertically-aligned-center">
<div class="about__image">
<img src="https://s.w.org/images/core/6.8/feature-01.webp?v=23478" alt="" height="436" width="436" />
<img src="https://s.w.org/images/core/6.9/01-notes.webp" alt="" height="436" width="436" />
</div>
</div>
</div>
@@ -171,23 +85,29 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section has-2-columns">
<div class="column is-vertically-aligned-center">
<div class="about__image">
<img src="https://s.w.org/images/core/6.8/feature-02.png?v=23478" alt="" height="436" width="436" />
<img src="https://s.w.org/images/core/6.9/02-visual-drag-drop.webp" alt="" height="436" width="436" />
</div>
</div>
<div class="column is-vertically-aligned-center">
<h3><?php _e( 'Editor improvements' ); ?></h3>
<p><?php _e( 'Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you&#8217;ll find lots of little improvements in the editor that smooth your way through everything you build.' ); ?></p>
<h3><?php _e( 'Visual drag and drop' ); ?></h3>
<p>
<strong><?php _e( 'Design flows naturally.' ); ?></strong><br />
<?php _e( 'Building layouts is now more intuitive and flexible with clear drag handles and a live preview that shows exactly what you&#8217;re moving—a faster way to build pages.' ); ?>
</p>
</div>
</div>
<div class="about__section has-2-columns">
<div class="column is-vertically-aligned-center">
<h3><?php _e( 'Near-instant page loads, thanks to Speculative Loading' ); ?></h3>
<p><?php _e( 'In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact.' ); ?></p>
<h3><?php _e( 'Command Palette, everywhere' ); ?></h3>
<p>
<strong><?php _e( 'Your tools are always at hand.' ); ?></strong><br />
<?php _e( 'Access the Command Palette from any part of your site, whether you&#8217;re writing your latest post, deep in design in the Site Editor, or browsing your plugins. Everything you need, just a few keystrokes away.' ); ?>
</p>
</div>
<div class="column is-vertically-aligned-center">
<div class="about__image">
<img src="https://s.w.org/images/core/6.8/feature-03.webp?v=23478" alt="" height="436" width="436" />
<img src="https://s.w.org/images/core/6.9/03-command-palette-everywhere.webp" alt="" height="436" width="436" />
</div>
</div>
</div>
@@ -195,39 +115,21 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section has-2-columns">
<div class="column is-vertically-aligned-center">
<div class="about__image">
<img src="https://s.w.org/images/core/6.8/feature-04.png?v=23478" alt="" height="436" width="436" />
<img src="https://s.w.org/images/core/6.9/04-fit-text.webp" alt="" height="436" width="436" />
</div>
</div>
<div class="column is-vertically-aligned-center">
<h3><?php _e( 'Stronger password security with bcrypt' ); ?></h3>
<p><?php _e( 'Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don&#8217;t need to do anything—everything updates automatically.' ); ?></p>
<h3><?php _e( 'Fit text to container' ); ?></h3>
<p>
<strong><?php _e( 'Content that adapts.' ); ?></strong><br />
<?php _e( 'A new typography option for text-based blocks, starting with the Paragraph and Heading blocks, that automatically adjusts font size to fill its container perfectly. Ideal for banners, callouts, and standout moments in your design. No manual tweaks, just an instant clean design.' ); ?>
</p>
</div>
</div>
<hr class="is-invisible is-large" />
<div class="about__section has-2-columns">
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<path fill="#1e1e1e" d="M24 13.84c-.752 0-1.397-.287-1.936-.86a2.902 2.902 0 0 1-.809-2.06c0-.8.27-1.487.809-2.06S23.248 8 24 8c.753 0 1.398.287 1.937.86.54.573.809 1.26.809 2.06s-.27 1.487-.809 2.06-1.184.86-1.937.86ZM19.976 40V18.68a69.562 69.562 0 0 1-4.945-.56 45.877 45.877 0 0 1-4.57-.92l.565-2.4a46.79 46.79 0 0 0 6.356 1.14c2.106.227 4.312.34 6.618.34 2.307 0 4.513-.113 6.62-.34a46.786 46.786 0 0 0 6.355-1.14l.564 2.4c-1.454.373-2.977.68-4.57.92a69.55 69.55 0 0 1-4.945.56V40h-2.256V29.6h-3.535V40h-2.257Z"/>
</svg>
</div>
<h3><?php _e( 'Accessibility improvements' ); ?></h3>
<p><?php _e( '100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience.' ); ?></p>
</div>
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<path fill="#1e1e1e" d="M18.1823 11.6392C18.1823 13.0804 17.0139 14.2487 15.5727 14.2487C14.3579 14.2487 13.335 13.4179 13.0453 12.2922L13.0377 12.2625L13.0278 12.2335L12.3985 10.377L12.3942 10.3785C11.8571 8.64997 10.246 7.39405 8.33961 7.39405C5.99509 7.39405 4.09448 9.29465 4.09448 11.6392C4.09448 13.9837 5.99509 15.8843 8.33961 15.8843C8.88499 15.8843 9.40822 15.781 9.88943 15.5923L9.29212 14.0697C8.99812 14.185 8.67729 14.2487 8.33961 14.2487C6.89838 14.2487 5.73003 13.0804 5.73003 11.6392C5.73003 10.1979 6.89838 9.02959 8.33961 9.02959C9.55444 9.02959 10.5773 9.86046 10.867 10.9862L10.8772 10.9836L11.4695 12.7311C11.9515 14.546 13.6048 15.8843 15.5727 15.8843C17.9172 15.8843 19.8178 13.9837 19.8178 11.6392C19.8178 9.29465 17.9172 7.39404 15.5727 7.39404C15.0287 7.39404 14.5066 7.4968 14.0264 7.6847L14.6223 9.20781C14.9158 9.093 15.2358 9.02959 15.5727 9.02959C17.0139 9.02959 18.1823 10.1979 18.1823 11.6392Z"></path>
</svg>
</div>
<h3><?php _e( 'Take a load off the database' ); ?></h3>
<p><?php _e( 'Work continues on optimizing cache key generation in the <code>WP_Query</code> class. The goal is, as ever, to boost your site&#8217;s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic.' ); ?></p>
</div>
</div>
<div class="about__section has-1-column">
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
@@ -236,7 +138,16 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
</svg>
</div>
<h3><?php _e( 'Performance updates' ); ?></h3>
<p><?php _e( 'WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal.' ); ?></p>
<p><?php _e( 'WordPress 6.9 includes a broad set of performance enhancements. A better <abbr>LCP</abbr> (Largest Contentful Paint) metric is achieved through improved loading of conditional and inlined stylesheets, script loading with fetchpriority support, and additional core optimizations. Editor advances include fixes for layout shifts caused by the Video block and faster loading of the terms selector.' ); ?></p>
</div>
<div class="column">
<div class="about__image">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
<path fill="#1e1e1e" d="M24 13.84c-.752 0-1.397-.287-1.936-.86a2.902 2.902 0 0 1-.809-2.06c0-.8.27-1.487.809-2.06S23.248 8 24 8c.753 0 1.398.287 1.937.86.54.573.809 1.26.809 2.06s-.27 1.487-.809 2.06-1.184.86-1.937.86ZM19.976 40V18.68a69.562 69.562 0 0 1-4.945-.56 45.877 45.877 0 0 1-4.57-.92l.565-2.4a46.79 46.79 0 0 0 6.356 1.14c2.106.227 4.312.34 6.618.34 2.307 0 4.513-.113 6.62-.34a46.786 46.786 0 0 0 6.355-1.14l.564 2.4c-1.454.373-2.977.68-4.57.92a69.55 69.55 0 0 1-4.945.56V40h-2.256V29.6h-3.535V40h-2.257Z"/>
</svg>
</div>
<h3><?php _e( 'Accessibility improvements' ); ?></h3>
<p><?php _e( '70+ accessibility fixes and enhancements focus on central areas of the WordPress experience. From globally hiding CSS-generated content from assistive technology and improvements to screen reader announcements and user experience, to fixing cursor position and keeping typing focus when clicking on an autocomplete suggestion item.' ); ?></p>
</div>
</div>
@@ -257,7 +168,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
</div>
<div class="column aligncenter">
<div class="about__image">
<a href="<?php echo esc_url( __( 'https://wordpress.org/download/releases/6-8/' ) ); ?>" class="button button-primary button-hero"><?php _e( 'See everything new' ); ?></a>
<a href="<?php echo esc_url( $release_page_url ); ?>" class="button button-primary button-hero"><?php _e( 'See everything new' ); ?></a>
</div>
</div>
</div>
@@ -266,7 +177,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section has-3-columns">
<div class="column about__image is-vertically-aligned-top">
<img src="<?php echo esc_url( admin_url( 'images/about-release-badge.svg?ver=6.8' ) ); ?>" alt="" height="280" width="280" />
<img src="<?php echo esc_url( admin_url( 'images/about-release-badge.svg?ver=6.9' ) ); ?>" alt="" height="280" width="280" />
</div>
<div class="column is-vertically-aligned-center" style="grid-column-end:span 2">
<h3>
+7 -3
View File
@@ -72,14 +72,15 @@ if ( get_option( 'db_upgraded' ) ) {
* @param bool $do_mu_upgrade Whether to perform the Multisite upgrade routine. Default true.
*/
if ( apply_filters( 'do_mu_upgrade', true ) ) {
$c = get_blog_count();
$blog_count = get_blog_count();
/*
* If there are 50 or fewer sites, run every time. Otherwise, throttle to reduce load:
* attempt to do no more than threshold value, with some +/- allowed.
*/
if ( $c <= 50 || ( $c > 50 && mt_rand( 0, (int) ( $c / 50 ) ) === 1 ) ) {
if ( $blog_count <= 50 || ( $blog_count > 50 && mt_rand( 0, (int) ( $blog_count / 50 ) ) === 1 ) ) {
require_once ABSPATH . WPINC . '/http.php';
$response = wp_remote_get(
admin_url( 'upgrade.php?step=1' ),
array(
@@ -87,11 +88,14 @@ if ( get_option( 'db_upgraded' ) ) {
'httpversion' => '1.1',
)
);
/** This action is documented in wp-admin/network/upgrade.php */
do_action( 'after_mu_upgrade', $response );
unset( $response );
}
unset( $c );
unset( $blog_count );
}
}
+17 -6
View File
@@ -60,8 +60,8 @@ if ( isset( $_REQUEST['attachment_id'] ) && (int) $_REQUEST['attachment_id'] &&
$title = $post->post_title ? $post->post_title : wp_basename( $file );
?>
<div class="filename new">
<span class="media-list-title"><strong><?php echo esc_html( wp_html_excerpt( $title, 60, '&hellip;' ) ); ?></strong></span>
<span class="media-list-subtitle"><?php echo esc_html( wp_basename( $file ) ); ?></span>
<span class="media-list-title word-wrap-break-word"><strong><?php echo esc_html( wp_html_excerpt( $title, 60, '&hellip;' ) ); ?></strong></span>
<span class="media-list-subtitle word-wrap-break-word"><?php echo esc_html( wp_basename( $file ) ); ?></span>
<div class="attachment-tools">
<?php
if ( current_user_can( 'edit_post', $id ) ) {
@@ -112,12 +112,14 @@ if ( isset( $_REQUEST['post_id'] ) ) {
$id = media_handle_upload( 'async-upload', $post_id );
if ( is_wp_error( $id ) ) {
$button_unique_id = uniqid( 'dismiss-' );
$message = sprintf(
$button_unique_id = uniqid( 'dismiss-' );
$error_description_id = uniqid( 'error-description-' );
$message = sprintf(
'%s <strong>%s</strong><br />%s',
sprintf(
'<button type="button" id="%s" class="dismiss button-link">%s</button>',
'<button type="button" id="%1$s" class="dismiss button-link" aria-describedby="%2$s">%3$s</button>',
esc_attr( $button_unique_id ),
esc_attr( $error_description_id ),
__( 'Dismiss' )
),
sprintf(
@@ -127,14 +129,23 @@ if ( is_wp_error( $id ) ) {
),
esc_html( $id->get_error_message() )
);
wp_admin_notice(
$message,
array(
'id' => $error_description_id,
'additional_classes' => array( 'error-div', 'error' ),
'paragraph_wrap' => false,
)
);
echo "<script>jQuery( 'button#{$button_unique_id}' ).on( 'click', function() {jQuery(this).parents('div.media-item').slideUp(200, function(){jQuery(this).remove();})});</script>\n";
$speak_message = sprintf(
/* translators: %s: Name of the file that failed to upload. */
__( '%s has failed to upload.' ),
$_FILES['async-upload']['name']
);
echo '<script>_.delay(function() {wp.a11y.speak(' . wp_json_encode( $speak_message, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) . ");}, 1500);jQuery( 'button#{$button_unique_id}' ).on( 'click', function() {jQuery(this).parents('div.media-item').slideUp(200, function(){jQuery(this).remove();wp.a11y.speak( wp.i18n.__( 'Error dismissed.' ) );jQuery( '#plupload-browse-button' ).trigger( 'focus' );})});</script>\n";
exit;
}
+9
View File
@@ -13,12 +13,21 @@ require_once __DIR__ . '/admin.php';
$title = __( 'Get Involved' );
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
$header_alt_text = sprintf(
/* translators: %s: Version number. */
__( 'WordPress %s' ),
$display_version
);
require_once ABSPATH . 'wp-admin/admin-header.php';
?>
<div class="wrap about__container">
<div class="about__header">
<div class="about__header-image">
<img src="images/about-release-logo.svg?ver=6.9" alt="<?php echo esc_attr( $header_alt_text ); ?>" />
</div>
<div class="about__header-title">
<h1>
<?php _e( 'Get Involved' ); ?>
+9
View File
@@ -14,6 +14,11 @@ require_once __DIR__ . '/includes/credits.php';
$title = __( 'Credits' );
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
$header_alt_text = sprintf(
/* translators: %s: Version number. */
__( 'WordPress %s' ),
$display_version
);
require_once ABSPATH . 'wp-admin/admin-header.php';
@@ -22,6 +27,10 @@ $credits = wp_credits();
<div class="wrap about__container">
<div class="about__header">
<div class="about__header-image">
<img src="images/about-release-logo.svg?ver=6.9" alt="<?php echo esc_attr( $header_alt_text ); ?>" />
</div>
<div class="about__header-title">
<h1>
<?php _e( 'Contributors' ); ?>
+45 -8
View File
@@ -22,7 +22,7 @@
.about__container {
/* Section backgrounds */
--background: #f6f5f2;
--background: #ececec;
--subtle-background: #eef0fd;
/* Main text color */
@@ -31,8 +31,11 @@
/* Accent colors: used in header, on special classes. */
--accent-1: #3858e9; /* Link color */
--accent-2: #3858e9; /* Accent background */
--accent-3: #ededed; /* hr background */
--accent-2: #183ad6; /* Accent background */
--accent-3: #ececec; /* hr background */
/* Header background on small screens */
--accent-gradient: linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%)/*rtl:linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%)*/;
/* Navigation colors. */
--nav-background: #fff;
@@ -577,19 +580,53 @@
padding-left: 26rem; /* Space for the background image. */
min-height: clamp(10rem, 25vw, 18.75rem);
border-radius: var(--border-radius);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='412' height='198' fill='none'%3E%3Cpath stroke='%239D1825' stroke-width='12' d='M6 0v198'/%3E%3Cpath stroke='%23D90120' stroke-width='12' d='m30.171 1.82 51.246 191.253'/%3E%3Cpath stroke='%23408538' stroke-width='12' d='m62.427 7.626 87.895 177.422'/%3E%3Cpath stroke='%23FFEE58' stroke-width='12' d='M98.769 20.973 230.2 169.061'/%3E%3Cpath stroke='%23F17826' stroke-width='12' d='m152.67 36.891 161.59 114.424'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='m246.433 66.098 190.42 54.264'/%3E%3C/svg%3E%0A");
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40721)'%3E%3Cpath fill='url(%23paint0_linear_6958_40721)' d='M0 0h1000v300H0z'/%3E%3Cg clip-path='url(%23clip1_6958_40721)'%3E%3Cpath d='M643.203 90.702c29.374-29.375 76.993-29.375 106.367 0 67.745 73.346-33.051 174.1-106.367 106.367-29.369-29.369-29.369-76.993 0-106.367z' stroke='url(%23paint1_linear_6958_40721)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M643.215 90.71L763.002-29.074' stroke='url(%23paint2_linear_6958_40721)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M981.603 113.114c-29.375 29.375-76.993 29.375-106.368 0-67.745-73.347 33.051-174.1 106.368-106.368 29.367 29.37 29.367 76.993 0 106.368z' stroke='url(%23paint3_linear_6958_40721)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M981.622 113.105L870.501 224.226' stroke='url(%23paint4_linear_6958_40721)' stroke-width='50' stroke-miterlimit='10'/%3E%3Ccircle cx='816.697' cy='221.067' r='24.068' fill='%233858E9'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40721' x1='47' y1='46' x2='963.5' y2='318.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40721' x1='565.98' y1='158.471' x2='700.462' y2='23.995' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_6958_40721' x1='722.025' y1='-41.283' x2='545.675' y2='135.067' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_6958_40721' x1='1058.83' y1='45.345' x2='924.344' y2='179.821' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear_6958_40721' x1='902.813' y1='245.098' x2='1079.16' y2='68.748' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40721'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3CclipPath id='clip1_6958_40721'%3E%3Cpath fill='%23fff' transform='translate(596 -42)' d='M0 0h433v287.934H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: left center;
background-size: auto 65%;
background-size: cover;
background-color: var(--background);
color: var(--text-light);
}
.credits-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40732)'%3E%3Cpath fill='url(%23paint0_linear_6958_40732)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M964.296 78.3c35.067-35.067 91.914-35.067 126.984 0 80.87 87.56-39.46 207.839-126.984 126.98-35.061-35.06-35.061-91.913 0-126.98z' stroke='url(%23paint1_linear_6958_40732)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M784.296 78.3c35.067-35.067 91.914-35.067 126.982 0 80.875 87.56-39.456 207.839-126.982 126.98-35.061-35.06-35.061-91.913 0-126.98z' stroke='url(%23paint2_linear_6958_40732)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40732' x1='378.5' y1='402' x2='926' y2='9.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40732' x1='872.106' y1='159.202' x2='1032.65' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_6958_40732' x1='692.106' y1='159.202' x2='852.648' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40732'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.freedoms-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40736)'%3E%3Cpath fill='url(%23paint0_linear_6958_40736)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M847.111 61.731a1 1 0 0 1 1.778 0l29.511 57.436c.096.186.247.337.433.433l57.436 29.511a1 1 0 0 1 0 1.778L878.833 180.4a1.006 1.006 0 0 0-.433.433l-29.511 57.436a1 1 0 0 1-1.778 0L817.6 180.833a1.006 1.006 0 0 0-.433-.433l-57.436-29.511a1 1 0 0 1 0-1.778l57.436-29.511c.186-.096.337-.247.433-.433l29.511-57.436z' stroke='url(%23paint1_linear_6958_40736)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40736' x1='47' y1='46' x2='1264.5' y2='46' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40736' x1='692.106' y1='167.202' x2='852.648' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40736'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.privacy-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40739)'%3E%3Cpath fill='url(%23paint0_radial_6958_40739)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M758 90l90-30 90 30v11.511c0 59.891-35.271 114.165-90 138.489-54.729-24.324-90-78.598-90-138.489V90z' stroke='url(%23paint1_linear_6958_40739)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_6958_40739' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(37.724 183.217 1253.89) scale(615.701 397.883)'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.35' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint1_linear_6958_40739' x1='692.106' y1='167.202' x2='852.648' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40739'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.contribute-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40742)'%3E%3Cpath fill='url(%23paint0_linear_6958_40742)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M924.567 149.134a1 1 0 0 1 0 1.732L771.5 239.135a1 1 0 0 1-1.5-.866V61.731a1 1 0 0 1 1.5-.866l153.067 88.269z' stroke='url(%23paint1_linear_6958_40742)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40742' x1='606.5' x2='721' y2='355' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40742' x1='833.12' y1='-5.894' x2='992.039' y2='131.9' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40742'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
[dir="rtl"] .about__header {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='412' height='198' fill='none'%3E%3Cg transform='scale(-1,1)' transform-origin='50%25 50%25'%3E%3Cpath stroke='%239D1825' stroke-width='12' d='M6 0v198'/%3E%3Cpath stroke='%23D90120' stroke-width='12' d='m30.171 1.82 51.246 191.253'/%3E%3Cpath stroke='%23408538' stroke-width='12' d='m62.427 7.626 87.895 177.422'/%3E%3Cpath stroke='%23FFEE58' stroke-width='12' d='M98.769 20.973 230.2 169.061'/%3E%3Cpath stroke='%23F17826' stroke-width='12' d='m152.67 36.891 161.59 114.424'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='m246.433 66.098 190.42 54.264'/%3E%3C/g%3E%3C/svg%3E%0A");
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40746)'%3E%3Cpath transform='matrix(-1 0 0 1 1000 0)' fill='url(%23paint0_linear_6958_40746)' d='M0 0h1000v300H0z'/%3E%3Cg clip-path='url(%23clip1_6958_40746)'%3E%3Cpath d='M18.203 90.702c29.375-29.375 76.993-29.375 106.367 0 67.745 73.346-33.05 174.1-106.367 106.367-29.369-29.369-29.369-76.993 0-106.367z' stroke='url(%23paint1_linear_6958_40746)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M18.215 90.71L138.002-29.074' stroke='url(%23paint2_linear_6958_40746)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M356.603 113.114c-29.375 29.375-76.993 29.375-106.368 0-67.745-73.347 33.051-174.1 106.368-106.368 29.368 29.37 29.368 76.993 0 106.368z' stroke='url(%23paint3_linear_6958_40746)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M356.622 113.105L245.501 224.226' stroke='url(%23paint4_linear_6958_40746)' stroke-width='50' stroke-miterlimit='10'/%3E%3Ccircle cx='191.698' cy='221.067' r='24.068' fill='%233858E9'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40746' x1='47' y1='46' x2='963.5' y2='318.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40746' x1='218' y1='120.499' x2='51.502' y2='21.995' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_6958_40746' x1='78' y1='-29.003' x2='216' y2='68.497' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_6958_40746' x1='175.805' y1='53.58' x2='405.499' y2='103.005' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.608' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear_6958_40746' x1='414' y1='137.499' x2='180.5' y2='59.499' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40746'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3CclipPath id='clip1_6958_40746'%3E%3Cpath fill='%23fff' transform='translate(-29 -42)' d='M0 0h433v287.934H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
[dir="rtl"] .credits-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40757)'%3E%3Cpath transform='matrix(-1 0 0 1 1000 0)' fill='url(%23paint0_linear_6958_40757)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M35.705 78.3C.637 43.233-56.21 43.233-91.279 78.3c-80.875 87.56 39.457 207.839 126.983 126.98 35.06-35.06 35.06-91.913 0-126.98z' stroke='url(%23paint1_linear_6958_40757)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M215.704 78.3c-35.067-35.067-91.914-35.067-126.982 0-80.875 87.56 39.456 207.839 126.982 126.98 35.061-35.06 35.061-91.913 0-126.98z' stroke='url(%23paint2_linear_6958_40757)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40757' x1='378.5' y1='402' x2='926' y2='9.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40757' x1='127.894' y1='159.202' x2='-32.648' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_6958_40757' x1='307.894' y1='159.202' x2='147.352' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40757'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
[dir="rtl"] .freedoms-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40762)'%3E%3Cpath transform='matrix(-1 0 0 1 1000 0)' fill='url(%23paint0_linear_6958_40762)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M152.889 61.731a1 1 0 0 0-1.778 0L121.6 119.167a1.006 1.006 0 0 1-.433.433l-57.436 29.511a1 1 0 0 0 0 1.778l57.436 29.511c.186.096.337.247.433.433l29.511 57.436a1 1 0 0 0 1.778 0l29.511-57.436c.096-.186.247-.337.433-.433l57.436-29.511a1 1 0 0 0 0-1.778L182.833 119.6a1.006 1.006 0 0 1-.433-.433l-29.511-57.436z' stroke='url(%23paint1_linear_6958_40762)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40762' x1='47' y1='46' x2='1264.5' y2='46' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40762' x1='307.894' y1='167.202' x2='147.352' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40762'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
[dir="rtl"] .privacy-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40765)'%3E%3Cpath transform='matrix(-1 0 0 1 1000 0)' fill='url(%23paint0_radial_6958_40765)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M242 90l-90-30-90 30v11.511C62 161.402 97.27 215.676 152 240c54.729-24.324 90-78.598 90-138.489V90z' stroke='url(%23paint1_linear_6958_40765)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_6958_40765' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(37.724 183.217 1253.89) scale(615.701 397.883)'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.35' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint1_linear_6958_40765' x1='307.894' y1='167.202' x2='147.352' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40765'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
[dir="rtl"] .contribute-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40768)'%3E%3Cpath transform='matrix(-1 0 0 1 1000 0)' fill='url(%23paint0_linear_6958_40768)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M241.498 149.134a1 1 0 0 1 0 1.732L88.43 239.135a1 1 0 0 1-1.5-.866V61.731a1 1 0 0 1 1.5-.866l153.068 88.269z' stroke='url(%23paint1_linear_6958_40768)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40768' x1='606.5' x2='721' y2='355' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40768' x1='176' y1='45.5' x2='-6.506' y2='213.124' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.64' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40768'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.about__header-image {
margin: 0 var(--gap) 3em;
margin: 0 0 calc(var(--gap) * 1.5);
}
.about__header-title {
@@ -730,7 +767,7 @@
.freedoms-php .about__header,
.privacy-php .about__header,
.contribute-php .about__header {
background-image: none;
background: var(--accent-gradient) !important;
}
.about__header-navigation {
+1 -1
View File
File diff suppressed because one or more lines are too long
+45 -8
View File
@@ -21,7 +21,7 @@
.about__container {
/* Section backgrounds */
--background: #f6f5f2;
--background: #ececec;
--subtle-background: #eef0fd;
/* Main text color */
@@ -30,8 +30,11 @@
/* Accent colors: used in header, on special classes. */
--accent-1: #3858e9; /* Link color */
--accent-2: #3858e9; /* Accent background */
--accent-3: #ededed; /* hr background */
--accent-2: #183ad6; /* Accent background */
--accent-3: #ececec; /* hr background */
/* Header background on small screens */
--accent-gradient: linear-gradient(90deg, #000000 4.7%, var(--accent-1) 83.84%)/*rtl:linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%)*/;
/* Navigation colors. */
--nav-background: #fff;
@@ -576,19 +579,53 @@
padding-right: 26rem; /* Space for the background image. */
min-height: clamp(10rem, 25vw, 18.75rem);
border-radius: var(--border-radius);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='412' height='198' fill='none'%3E%3Cpath stroke='%239D1825' stroke-width='12' d='M6 0v198'/%3E%3Cpath stroke='%23D90120' stroke-width='12' d='m30.171 1.82 51.246 191.253'/%3E%3Cpath stroke='%23408538' stroke-width='12' d='m62.427 7.626 87.895 177.422'/%3E%3Cpath stroke='%23FFEE58' stroke-width='12' d='M98.769 20.973 230.2 169.061'/%3E%3Cpath stroke='%23F17826' stroke-width='12' d='m152.67 36.891 161.59 114.424'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='m246.433 66.098 190.42 54.264'/%3E%3C/svg%3E%0A");
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40721)'%3E%3Cpath fill='url(%23paint0_linear_6958_40721)' d='M0 0h1000v300H0z'/%3E%3Cg clip-path='url(%23clip1_6958_40721)'%3E%3Cpath d='M643.203 90.702c29.374-29.375 76.993-29.375 106.367 0 67.745 73.346-33.051 174.1-106.367 106.367-29.369-29.369-29.369-76.993 0-106.367z' stroke='url(%23paint1_linear_6958_40721)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M643.215 90.71L763.002-29.074' stroke='url(%23paint2_linear_6958_40721)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M981.603 113.114c-29.375 29.375-76.993 29.375-106.368 0-67.745-73.347 33.051-174.1 106.368-106.368 29.367 29.37 29.367 76.993 0 106.368z' stroke='url(%23paint3_linear_6958_40721)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M981.622 113.105L870.501 224.226' stroke='url(%23paint4_linear_6958_40721)' stroke-width='50' stroke-miterlimit='10'/%3E%3Ccircle cx='816.697' cy='221.067' r='24.068' fill='%233858E9'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40721' x1='47' y1='46' x2='963.5' y2='318.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40721' x1='565.98' y1='158.471' x2='700.462' y2='23.995' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_6958_40721' x1='722.025' y1='-41.283' x2='545.675' y2='135.067' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_6958_40721' x1='1058.83' y1='45.345' x2='924.344' y2='179.821' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear_6958_40721' x1='902.813' y1='245.098' x2='1079.16' y2='68.748' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40721'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3CclipPath id='clip1_6958_40721'%3E%3Cpath fill='%23fff' transform='translate(596 -42)' d='M0 0h433v287.934H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right center;
background-size: auto 65%;
background-size: cover;
background-color: var(--background);
color: var(--text-light);
}
.credits-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40732)'%3E%3Cpath fill='url(%23paint0_linear_6958_40732)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M964.296 78.3c35.067-35.067 91.914-35.067 126.984 0 80.87 87.56-39.46 207.839-126.984 126.98-35.061-35.06-35.061-91.913 0-126.98z' stroke='url(%23paint1_linear_6958_40732)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M784.296 78.3c35.067-35.067 91.914-35.067 126.982 0 80.875 87.56-39.456 207.839-126.982 126.98-35.061-35.06-35.061-91.913 0-126.98z' stroke='url(%23paint2_linear_6958_40732)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40732' x1='378.5' y1='402' x2='926' y2='9.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40732' x1='872.106' y1='159.202' x2='1032.65' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_6958_40732' x1='692.106' y1='159.202' x2='852.648' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40732'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.freedoms-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40736)'%3E%3Cpath fill='url(%23paint0_linear_6958_40736)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M847.111 61.731a1 1 0 0 1 1.778 0l29.511 57.436c.096.186.247.337.433.433l57.436 29.511a1 1 0 0 1 0 1.778L878.833 180.4a1.006 1.006 0 0 0-.433.433l-29.511 57.436a1 1 0 0 1-1.778 0L817.6 180.833a1.006 1.006 0 0 0-.433-.433l-57.436-29.511a1 1 0 0 1 0-1.778l57.436-29.511c.186-.096.337-.247.433-.433l29.511-57.436z' stroke='url(%23paint1_linear_6958_40736)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40736' x1='47' y1='46' x2='1264.5' y2='46' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40736' x1='692.106' y1='167.202' x2='852.648' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40736'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.privacy-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40739)'%3E%3Cpath fill='url(%23paint0_radial_6958_40739)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M758 90l90-30 90 30v11.511c0 59.891-35.271 114.165-90 138.489-54.729-24.324-90-78.598-90-138.489V90z' stroke='url(%23paint1_linear_6958_40739)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_6958_40739' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(37.724 183.217 1253.89) scale(615.701 397.883)'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.35' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint1_linear_6958_40739' x1='692.106' y1='167.202' x2='852.648' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40739'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.contribute-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40742)'%3E%3Cpath fill='url(%23paint0_linear_6958_40742)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M924.567 149.134a1 1 0 0 1 0 1.732L771.5 239.135a1 1 0 0 1-1.5-.866V61.731a1 1 0 0 1 1.5-.866l153.067 88.269z' stroke='url(%23paint1_linear_6958_40742)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40742' x1='606.5' x2='721' y2='355' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40742' x1='833.12' y1='-5.894' x2='992.039' y2='131.9' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40742'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
[dir="rtl"] .about__header {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='412' height='198' fill='none'%3E%3Cg transform='scale(-1,1)' transform-origin='50%25 50%25'%3E%3Cpath stroke='%239D1825' stroke-width='12' d='M6 0v198'/%3E%3Cpath stroke='%23D90120' stroke-width='12' d='m30.171 1.82 51.246 191.253'/%3E%3Cpath stroke='%23408538' stroke-width='12' d='m62.427 7.626 87.895 177.422'/%3E%3Cpath stroke='%23FFEE58' stroke-width='12' d='M98.769 20.973 230.2 169.061'/%3E%3Cpath stroke='%23F17826' stroke-width='12' d='m152.67 36.891 161.59 114.424'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='m246.433 66.098 190.42 54.264'/%3E%3C/g%3E%3C/svg%3E%0A");
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40746)'%3E%3Cpath transform='matrix(-1 0 0 1 1000 0)' fill='url(%23paint0_linear_6958_40746)' d='M0 0h1000v300H0z'/%3E%3Cg clip-path='url(%23clip1_6958_40746)'%3E%3Cpath d='M18.203 90.702c29.375-29.375 76.993-29.375 106.367 0 67.745 73.346-33.05 174.1-106.367 106.367-29.369-29.369-29.369-76.993 0-106.367z' stroke='url(%23paint1_linear_6958_40746)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M18.215 90.71L138.002-29.074' stroke='url(%23paint2_linear_6958_40746)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M356.603 113.114c-29.375 29.375-76.993 29.375-106.368 0-67.745-73.347 33.051-174.1 106.368-106.368 29.368 29.37 29.368 76.993 0 106.368z' stroke='url(%23paint3_linear_6958_40746)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M356.622 113.105L245.501 224.226' stroke='url(%23paint4_linear_6958_40746)' stroke-width='50' stroke-miterlimit='10'/%3E%3Ccircle cx='191.698' cy='221.067' r='24.068' fill='%233858E9'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40746' x1='47' y1='46' x2='963.5' y2='318.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40746' x1='218' y1='120.499' x2='51.502' y2='21.995' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_6958_40746' x1='78' y1='-29.003' x2='216' y2='68.497' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_6958_40746' x1='175.805' y1='53.58' x2='405.499' y2='103.005' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.608' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear_6958_40746' x1='414' y1='137.499' x2='180.5' y2='59.499' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40746'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3CclipPath id='clip1_6958_40746'%3E%3Cpath fill='%23fff' transform='translate(-29 -42)' d='M0 0h433v287.934H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
[dir="rtl"] .credits-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40757)'%3E%3Cpath transform='matrix(-1 0 0 1 1000 0)' fill='url(%23paint0_linear_6958_40757)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M35.705 78.3C.637 43.233-56.21 43.233-91.279 78.3c-80.875 87.56 39.457 207.839 126.983 126.98 35.06-35.06 35.06-91.913 0-126.98z' stroke='url(%23paint1_linear_6958_40757)' stroke-width='50' stroke-miterlimit='10'/%3E%3Cpath d='M215.704 78.3c-35.067-35.067-91.914-35.067-126.982 0-80.875 87.56 39.456 207.839 126.982 126.98 35.061-35.06 35.061-91.913 0-126.98z' stroke='url(%23paint2_linear_6958_40757)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40757' x1='378.5' y1='402' x2='926' y2='9.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40757' x1='127.894' y1='159.202' x2='-32.648' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_6958_40757' x1='307.894' y1='159.202' x2='147.352' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40757'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
[dir="rtl"] .freedoms-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40762)'%3E%3Cpath transform='matrix(-1 0 0 1 1000 0)' fill='url(%23paint0_linear_6958_40762)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M152.889 61.731a1 1 0 0 0-1.778 0L121.6 119.167a1.006 1.006 0 0 1-.433.433l-57.436 29.511a1 1 0 0 0 0 1.778l57.436 29.511c.186.096.337.247.433.433l29.511 57.436a1 1 0 0 0 1.778 0l29.511-57.436c.096-.186.247-.337.433-.433l57.436-29.511a1 1 0 0 0 0-1.778L182.833 119.6a1.006 1.006 0 0 1-.433-.433l-29.511-57.436z' stroke='url(%23paint1_linear_6958_40762)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40762' x1='47' y1='46' x2='1264.5' y2='46' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40762' x1='307.894' y1='167.202' x2='147.352' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40762'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
[dir="rtl"] .privacy-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40765)'%3E%3Cpath transform='matrix(-1 0 0 1 1000 0)' fill='url(%23paint0_radial_6958_40765)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M242 90l-90-30-90 30v11.511C62 161.402 97.27 215.676 152 240c54.729-24.324 90-78.598 90-138.489V90z' stroke='url(%23paint1_linear_6958_40765)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_6958_40765' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(37.724 183.217 1253.89) scale(615.701 397.883)'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.35' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint1_linear_6958_40765' x1='307.894' y1='167.202' x2='147.352' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.665' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40765'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
[dir="rtl"] .contribute-php .about__header {
background-image: url("data:image/svg+xml,%3Csvg width='1000' height='300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6958_40768)'%3E%3Cpath transform='matrix(-1 0 0 1 1000 0)' fill='url(%23paint0_linear_6958_40768)' d='M0 0h1000v300H0z'/%3E%3Cpath d='M241.498 149.134a1 1 0 0 1 0 1.732L88.43 239.135a1 1 0 0 1-1.5-.866V61.731a1 1 0 0 1 1.5-.866l153.068 88.269z' stroke='url(%23paint1_linear_6958_40768)' stroke-width='50' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6958_40768' x1='606.5' x2='721' y2='355' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858E9'/%3E%3Cstop offset='1' stop-color='%23D3CDB6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_6958_40768' x1='176' y1='45.5' x2='-6.506' y2='213.124' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D3CDB6'/%3E%3Cstop offset='.64' stop-color='%233858E9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_6958_40768'%3E%3Cpath fill='%23fff' d='M0 0h1000v300H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.about__header-image {
margin: 0 var(--gap) 3em;
margin: 0 0 calc(var(--gap) * 1.5);
}
.about__header-title {
@@ -729,7 +766,7 @@
.freedoms-php .about__header,
.privacy-php .about__header,
.contribute-php .about__header {
background-image: none;
background: var(--accent-gradient) !important;
}
.about__header-navigation {
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -2
View File
@@ -504,13 +504,12 @@ ul#adminmenu > li.current > a.current:after {
}
#collapse-button .collapse-button-icon:after {
content: "\f148";
content: "\f148" / '';
display: block;
position: relative;
top: 7px;
text-align: center;
font: normal 20px/1 dashicons !important;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
File diff suppressed because one or more lines are too long
+1 -2
View File
@@ -503,13 +503,12 @@ ul#adminmenu > li.current > a.current:after {
}
#collapse-button .collapse-button-icon:after {
content: "\f148";
content: "\f148" / '';
display: block;
position: relative;
top: 7px;
text-align: center;
font: normal 20px/1 dashicons !important;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -6
View File
@@ -9,7 +9,7 @@
display: none;
}
/* Needs higher specificiity. */
/* Needs higher specificity to override `.wp-core-ui .button`. */
.wp-picker-container .wp-color-result.button {
min-height: 30px;
margin: 0 0 6px 6px;
@@ -108,11 +108,6 @@
.wp-color-picker::-moz-placeholder {
color: #646970;
opacity: 1;
}
.wp-color-picker:-ms-input-placeholder {
color: #646970;
}
.wp-picker-container input[type="text"].iris-error {
+1 -1
View File
@@ -1,2 +1,2 @@
/*! This file is auto-generated */
.wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:30px;margin:0 0 6px 6px;padding:0 30px 0 0;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:2px 0 0 2px;border-right:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-right:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-right:6px;padding:0 8px;line-height:2.54545455;min-height:30px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;line-height:2.33333333;margin:0;padding:0 5px;vertical-align:top;min-height:30px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 2px #3582c4}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 40px 0 0;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}
.wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:30px;margin:0 0 6px 6px;padding:0 30px 0 0;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:2px 0 0 2px;border-right:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-right:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-right:6px;padding:0 8px;line-height:2.54545455;min-height:30px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;line-height:2.33333333;margin:0;padding:0 5px;vertical-align:top;min-height:30px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 2px #3582c4}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 40px 0 0;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}
+1 -6
View File
@@ -8,7 +8,7 @@
display: none;
}
/* Needs higher specificiity. */
/* Needs higher specificity to override `.wp-core-ui .button`. */
.wp-picker-container .wp-color-result.button {
min-height: 30px;
margin: 0 6px 6px 0;
@@ -107,11 +107,6 @@
.wp-color-picker::-moz-placeholder {
color: #646970;
opacity: 1;
}
.wp-color-picker:-ms-input-placeholder {
color: #646970;
}
.wp-picker-container input[type="text"].iris-error {
+1 -1
View File
@@ -1,2 +1,2 @@
/*! This file is auto-generated */
.wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:30px;margin:0 6px 6px 0;padding:0 0 0 30px;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:0 2px 2px 0;border-left:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-left:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-left:6px;padding:0 8px;line-height:2.54545455;min-height:30px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;line-height:2.33333333;margin:0;padding:0 5px;vertical-align:top;min-height:30px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 2px #3582c4}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 0 0 40px;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}
.wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:30px;margin:0 6px 6px 0;padding:0 0 0 30px;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:0 2px 2px 0;border-left:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-left:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-left:6px;padding:0 8px;line-height:2.54545455;min-height:30px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;line-height:2.33333333;margin:0;padding:0 5px;vertical-align:top;min-height:30px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 2px #3582c4}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 0 0 40px;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}
+1 -1
View File
@@ -68,7 +68,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27#{url-friendly-colour(variables.$form-checked)}%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27#{url-friendly-colour(variables.$form-checked)}%27%2F%3E%3C%2Fsvg%3E") / '';
}
input[type=radio]:checked::before {
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%2359524c%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%2359524c%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%2359524c%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%2359524c%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23523f6d%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23523f6d%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23523f6d%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23523f6d%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23738e96%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23738e96%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23738e96%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23738e96%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E")/"";
}
input[type=radio]:checked::before {
File diff suppressed because one or more lines are too long
+29 -37
View File
@@ -560,7 +560,7 @@ code {
}
.js-update-details-toggle[aria-expanded="true"] .dashicons::before {
content: "\f142";
content: "\f142" / '';
}
.no-js .widefat thead .check-column input,
@@ -806,10 +806,9 @@ img.emoji {
.notice-dismiss:before {
background: none;
color: #787c82;
content: "\f153";
content: "\f153" / '';
display: block;
font: normal 16px/20px dashicons;
speak: never;
height: 20px;
text-align: center;
width: 20px;
@@ -1134,7 +1133,7 @@ th.action-links {
}
.wp-filter .drawer-toggle:before {
content: "\f111";
content: "\f111" / '';
margin: 0 0 0 5px;
color: #646970;
font: normal 16px/1 dashicons;
@@ -1526,11 +1525,10 @@ div.error {
#plugin-information-footer .update-now:not(.button-disabled):before {
color: #d63638;
content: "\f463";
content: "\f463" / '';
display: inline-block;
font: normal 20px/1 dashicons;
margin: -3px -2px 0 5px;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
vertical-align: middle;
@@ -1589,7 +1587,7 @@ div.error {
.button.installing:before,
.button.activating-message:before {
color: #d63638;
content: "\f463";
content: "\f463" / '';
}
/* Spins the update icon. */
@@ -1625,13 +1623,13 @@ div.error {
.button.updated-message:before,
.button.activated-message:before {
color: #68de7c;
content: "\f147";
content: "\f147" / '';
}
/* Error icon. */
.update-message.notice-error p:before {
color: #d63638;
content: "\f534";
content: "\f534" / '';
}
.wrap .notice p:before,
@@ -1753,15 +1751,6 @@ p.auto-update-status {
transition-timing-function: ease-in-out;
}
@media aural {
.wrap .notice p:before,
.button.installing:before,
.button.installed:before,
.update-message p:before {
speak: never;
}
}
/* @todo: this does not need its own section anymore */
/*------------------------------------------------------------------------------
@@ -1849,9 +1838,8 @@ p.auto-update-status {
#screen-meta-links .show-settings:after {
left: 0;
content: "\f140";
content: "\f140" / '';
font: normal 20px/1 dashicons;
speak: never;
display: inline-block;
padding: 0 0 0 5px;
bottom: 2px;
@@ -1863,7 +1851,7 @@ p.auto-update-status {
}
#screen-meta-links .screen-meta-active:after {
content: "\f142";
content: "\f142" / '';
}
/* end screen options and help tabs */
@@ -2684,11 +2672,11 @@ div.star-holder .star-rating {
}
.star-rating .star-full:before {
content: "\f155";
content: "\f155" / '';
}
.star-rating .star-half:before {
content: "\f459";
content: "\f459" / '';
}
.rtl .star-rating .star-half {
@@ -2696,7 +2684,7 @@ div.star-holder .star-rating {
}
.star-rating .star-empty:before {
content: "\f154";
content: "\f154" / '';
}
div.action-links {
@@ -3187,9 +3175,8 @@ div.action-links {
}
.plugin-details-modal #TB_closeWindowButton:after {
content: "\f335";
content: "\f335" / '';
font: normal 32px/29px 'dashicons';
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@@ -3214,10 +3201,9 @@ img {
.meta-box-sortables .postbox .order-lower-indicator::before,
.bulk-action-notice .toggle-indicator::before,
.privacy-text-box .toggle-indicator::before {
content: "\f142";
content: "\f142" / '';
display: inline-block;
font: normal 20px/1 dashicons;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-decoration: none;
@@ -3227,16 +3213,16 @@ img {
.meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before,
.bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before,
.privacy-text-box.closed .toggle-indicator::before {
content: "\f140";
content: "\f140" / '';
}
.postbox .handle-order-higher .order-higher-indicator::before {
content: "\f343";
content: "\f343" / '';
color: inherit;
}
.postbox .handle-order-lower .order-lower-indicator::before {
content: "\f347";
content: "\f347" / '';
color: inherit;
}
@@ -3359,10 +3345,10 @@ img {
pointer-events: none;
}
[role="treeitem"][aria-expanded="false"] > .folder-label .icon:after {
content: "\f141";
content: "\f139" / '';
}
[role="treeitem"][aria-expanded="true"] > .folder-label .icon:after {
content: "\f140";
content: "\f140" / '';
}
[role="treeitem"] .folder-label {
display: block;
@@ -3577,9 +3563,8 @@ img {
.wp-customizer .control-section .accordion-section-title:after,
.wp-customizer .accordion-section-title:after,
.widget-top .widget-action .toggle-indicator:before {
content: "\f140";
content: "\f140" / '';
font: normal 20px/1 dashicons;
speak: never;
display: block;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -3626,7 +3611,7 @@ img {
.nav-menus-php .menu-item-edit-active .item-edit:before,
.widget.open .widget-top .widget-action .toggle-indicator:before,
.widget.widget-in-question .widget-top .widget-action .toggle-indicator:before {
content: "\f142";
content: "\f142" / '';
}
/*!
@@ -3913,6 +3898,10 @@ img {
top: 7px;
}
.screen-reader-shortcut[href="#wp-toolbar"] {
display: none;
}
body {
min-width: 240px;
overflow-x: hidden;
@@ -3964,9 +3953,12 @@ img {
.wrap .add-new-h2:active, /* deprecated */
.wrap .page-title-action,
.wrap .page-title-action:active {
padding: 10px 15px;
padding: 0 14px;
font-size: 14px;
white-space: nowrap;
min-height: 40px;
line-height: 2.71428571;
vertical-align: middle;
}
/* Feedback Messages */
+2 -2
View File
File diff suppressed because one or more lines are too long
+29 -37
View File
@@ -559,7 +559,7 @@ code {
}
.js-update-details-toggle[aria-expanded="true"] .dashicons::before {
content: "\f142";
content: "\f142" / '';
}
.no-js .widefat thead .check-column input,
@@ -805,10 +805,9 @@ img.emoji {
.notice-dismiss:before {
background: none;
color: #787c82;
content: "\f153";
content: "\f153" / '';
display: block;
font: normal 16px/20px dashicons;
speak: never;
height: 20px;
text-align: center;
width: 20px;
@@ -1133,7 +1132,7 @@ th.action-links {
}
.wp-filter .drawer-toggle:before {
content: "\f111";
content: "\f111" / '';
margin: 0 5px 0 0;
color: #646970;
font: normal 16px/1 dashicons;
@@ -1525,11 +1524,10 @@ div.error {
#plugin-information-footer .update-now:not(.button-disabled):before {
color: #d63638;
content: "\f463";
content: "\f463" / '';
display: inline-block;
font: normal 20px/1 dashicons;
margin: -3px 5px 0 -2px;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
vertical-align: middle;
@@ -1588,7 +1586,7 @@ div.error {
.button.installing:before,
.button.activating-message:before {
color: #d63638;
content: "\f463";
content: "\f463" / '';
}
/* Spins the update icon. */
@@ -1624,13 +1622,13 @@ div.error {
.button.updated-message:before,
.button.activated-message:before {
color: #68de7c;
content: "\f147";
content: "\f147" / '';
}
/* Error icon. */
.update-message.notice-error p:before {
color: #d63638;
content: "\f534";
content: "\f534" / '';
}
.wrap .notice p:before,
@@ -1752,15 +1750,6 @@ p.auto-update-status {
transition-timing-function: ease-in-out;
}
@media aural {
.wrap .notice p:before,
.button.installing:before,
.button.installed:before,
.update-message p:before {
speak: never;
}
}
/* @todo: this does not need its own section anymore */
/*------------------------------------------------------------------------------
@@ -1848,9 +1837,8 @@ p.auto-update-status {
#screen-meta-links .show-settings:after {
right: 0;
content: "\f140";
content: "\f140" / '';
font: normal 20px/1 dashicons;
speak: never;
display: inline-block;
padding: 0 5px 0 0;
bottom: 2px;
@@ -1862,7 +1850,7 @@ p.auto-update-status {
}
#screen-meta-links .screen-meta-active:after {
content: "\f142";
content: "\f142" / '';
}
/* end screen options and help tabs */
@@ -2683,11 +2671,11 @@ div.star-holder .star-rating {
}
.star-rating .star-full:before {
content: "\f155";
content: "\f155" / '';
}
.star-rating .star-half:before {
content: "\f459";
content: "\f459" / '';
}
.rtl .star-rating .star-half {
@@ -2695,7 +2683,7 @@ div.star-holder .star-rating {
}
.star-rating .star-empty:before {
content: "\f154";
content: "\f154" / '';
}
div.action-links {
@@ -3186,9 +3174,8 @@ div.action-links {
}
.plugin-details-modal #TB_closeWindowButton:after {
content: "\f335";
content: "\f335" / '';
font: normal 32px/29px 'dashicons';
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@@ -3213,10 +3200,9 @@ img {
.meta-box-sortables .postbox .order-lower-indicator::before,
.bulk-action-notice .toggle-indicator::before,
.privacy-text-box .toggle-indicator::before {
content: "\f142";
content: "\f142" / '';
display: inline-block;
font: normal 20px/1 dashicons;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-decoration: none;
@@ -3226,16 +3212,16 @@ img {
.meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before,
.bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before,
.privacy-text-box.closed .toggle-indicator::before {
content: "\f140";
content: "\f140" / '';
}
.postbox .handle-order-higher .order-higher-indicator::before {
content: "\f343";
content: "\f343" / '';
color: inherit;
}
.postbox .handle-order-lower .order-lower-indicator::before {
content: "\f347";
content: "\f347" / '';
color: inherit;
}
@@ -3358,10 +3344,10 @@ img {
pointer-events: none;
}
[role="treeitem"][aria-expanded="false"] > .folder-label .icon:after {
content: "\f139";
content: "\f139" / '';
}
[role="treeitem"][aria-expanded="true"] > .folder-label .icon:after {
content: "\f140";
content: "\f140" / '';
}
[role="treeitem"] .folder-label {
display: block;
@@ -3576,9 +3562,8 @@ img {
.wp-customizer .control-section .accordion-section-title:after,
.wp-customizer .accordion-section-title:after,
.widget-top .widget-action .toggle-indicator:before {
content: "\f140";
content: "\f140" / '';
font: normal 20px/1 dashicons;
speak: never;
display: block;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -3625,7 +3610,7 @@ img {
.nav-menus-php .menu-item-edit-active .item-edit:before,
.widget.open .widget-top .widget-action .toggle-indicator:before,
.widget.widget-in-question .widget-top .widget-action .toggle-indicator:before {
content: "\f142";
content: "\f142" / '';
}
/*!
@@ -3912,6 +3897,10 @@ img {
top: 7px;
}
.screen-reader-shortcut[href="#wp-toolbar"] {
display: none;
}
body {
min-width: 240px;
overflow-x: hidden;
@@ -3963,9 +3952,12 @@ img {
.wrap .add-new-h2:active, /* deprecated */
.wrap .page-title-action,
.wrap .page-title-action:active {
padding: 10px 15px;
padding: 0 14px;
font-size: 14px;
white-space: nowrap;
min-height: 40px;
line-height: 2.71428571;
vertical-align: middle;
}
/* Feedback Messages */
+2 -2
View File
File diff suppressed because one or more lines are too long
+34 -16
View File
@@ -234,7 +234,7 @@ body.trashing #publish-settings {
display: inline-block;
}
#customize-control-trash_changeset .button-link:before {
content: "\f182";
content: "\f182" / '';
font: normal 22px dashicons;
text-decoration: none;
position: absolute;
@@ -595,7 +595,7 @@ body.trashing #publish-settings {
#customize-theme-controls .accordion-section-title:after,
#customize-outer-theme-controls .accordion-section-title:after {
content: "\f341";
content: "\f345" / '';
color: #a7aaad;
pointer-events: none;
}
@@ -851,7 +851,7 @@ h3.customize-section-title {
transition:
color .15s ease-in-out,
border-color .15s ease-in-out,
background .15s ease-in-out;
background .15s ease-in-out;
}
}
@@ -932,7 +932,7 @@ h3.customize-section-title {
.customize-controls-close:before {
font: normal 22px/45px dashicons;
content: "\f335";
content: "\f335" / '';
position: relative;
top: -3px;
right: 13px;
@@ -941,7 +941,7 @@ h3.customize-section-title {
.customize-panel-back:before,
.customize-section-back:before {
font: normal 20px/72px dashicons;
content: "\f345";
content: "\f341" / '';
position: relative;
right: 9px;
}
@@ -1027,7 +1027,7 @@ p.customize-section-description {
.customize-section-description a.external-link:after {
font: 16px/11px dashicons;
content: "\f504";
content: "\f504" / '';
top: 3px;
position: relative;
padding-right: 3px;
@@ -1358,9 +1358,8 @@ p.customize-section-description {
}
.customize-control .dropdown-arrow:after {
content: "\f140";
content: "\f140" / '';
font: normal 20px/1 dashicons;
speak: never;
display: block;
padding: 0;
text-indent: 0;
@@ -1442,6 +1441,21 @@ p.customize-section-description {
white-space: normal;
}
.customize-control .attachment-media-view .upload-button {
width: 100%;
padding: 9px 0;
}
.customize-control .attachment-media-view .upload-button.control-focus {
width: auto;
padding: 0 10px;
}
.customize-control.customize-control-header .actions .upload-button.button.new {
width: 100%;
padding: 9px 0;
}
.customize-control .attachment-media-view .thumbnail,
.customize-control-header .current .container {
overflow: hidden;
@@ -1868,7 +1882,7 @@ p.customize-section-description {
}
.themes-filter-bar .feature-filter-toggle:before {
content: "\f111";
content: "\f111" / '';
margin: 0 0 0 5px;
font: normal 16px/1 dashicons;
vertical-align: text-bottom;
@@ -2006,7 +2020,7 @@ p.customize-section-description {
}
.control-panel-themes .theme-section .customize-themes-section-title.selected:after {
content: "\f147";
content: "\f147" / '';
font: 16px/1 dashicons;
box-sizing: border-box;
width: 20px;
@@ -2509,7 +2523,7 @@ body.cheatin p {
.add-new-widget:before,
.add-new-menu-item:before,
#available-menu-items .new-content-item .add-content:before {
content: "\f132";
content: "\f132" / '';
display: inline-block;
position: relative;
right: -2px;
@@ -2588,12 +2602,12 @@ body.cheatin p {
.move-widget-down:before,
.menus-move-down:before {
content: "\f347";
content: "\f347" / '';
}
.move-widget-up:before,
.menus-move-up:before {
content: "\f343";
content: "\f343" / '';
}
#customize-theme-controls .first-widget .move-widget-up,
@@ -2753,7 +2767,7 @@ body.adding-widget .add-new-widget:before,
#available-widgets-filter .clear-results:before,
#available-menu-items-search .clear-results:before {
content: "\f335";
content: "\f335" / '';
font: normal 20px/1 dashicons;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
@@ -2964,14 +2978,14 @@ body.adding-widget .add-new-widget:before,
.customize-controls-preview-toggle .preview:before,
.customize-controls-preview-toggle .controls:before {
font: normal 20px/1 dashicons;
content: "\f177";
content: "\f177" / '';
position: relative;
top: 4px;
margin-left: 6px;
}
.customize-controls-preview-toggle .controls:before {
content: "\f540";
content: "\f540" / '';
}
.preview-only #customize-controls {
@@ -2991,6 +3005,10 @@ body.adding-widget .add-new-widget:before,
vertical-align: middle;
}
.customize-control .attachment-media-view .upload-button {
padding: 5px 0;
}
#customize-control-changeset_status .customize-inside-control-row {
padding-top: 15px;
}
File diff suppressed because one or more lines are too long
+34 -16
View File
@@ -233,7 +233,7 @@ body.trashing #publish-settings {
display: inline-block;
}
#customize-control-trash_changeset .button-link:before {
content: "\f182";
content: "\f182" / '';
font: normal 22px dashicons;
text-decoration: none;
position: absolute;
@@ -594,7 +594,7 @@ body.trashing #publish-settings {
#customize-theme-controls .accordion-section-title:after,
#customize-outer-theme-controls .accordion-section-title:after {
content: "\f345";
content: "\f345" / '';
color: #a7aaad;
pointer-events: none;
}
@@ -850,7 +850,7 @@ h3.customize-section-title {
transition:
color .15s ease-in-out,
border-color .15s ease-in-out,
background .15s ease-in-out;
background .15s ease-in-out;
}
}
@@ -931,7 +931,7 @@ h3.customize-section-title {
.customize-controls-close:before {
font: normal 22px/45px dashicons;
content: "\f335";
content: "\f335" / '';
position: relative;
top: -3px;
left: 13px;
@@ -940,7 +940,7 @@ h3.customize-section-title {
.customize-panel-back:before,
.customize-section-back:before {
font: normal 20px/72px dashicons;
content: "\f341";
content: "\f341" / '';
position: relative;
left: 9px;
}
@@ -1026,7 +1026,7 @@ p.customize-section-description {
.customize-section-description a.external-link:after {
font: 16px/11px dashicons;
content: "\f504";
content: "\f504" / '';
top: 3px;
position: relative;
padding-left: 3px;
@@ -1357,9 +1357,8 @@ p.customize-section-description {
}
.customize-control .dropdown-arrow:after {
content: "\f140";
content: "\f140" / '';
font: normal 20px/1 dashicons;
speak: never;
display: block;
padding: 0;
text-indent: 0;
@@ -1441,6 +1440,21 @@ p.customize-section-description {
white-space: normal;
}
.customize-control .attachment-media-view .upload-button {
width: 100%;
padding: 9px 0;
}
.customize-control .attachment-media-view .upload-button.control-focus {
width: auto;
padding: 0 10px;
}
.customize-control.customize-control-header .actions .upload-button.button.new {
width: 100%;
padding: 9px 0;
}
.customize-control .attachment-media-view .thumbnail,
.customize-control-header .current .container {
overflow: hidden;
@@ -1867,7 +1881,7 @@ p.customize-section-description {
}
.themes-filter-bar .feature-filter-toggle:before {
content: "\f111";
content: "\f111" / '';
margin: 0 5px 0 0;
font: normal 16px/1 dashicons;
vertical-align: text-bottom;
@@ -2005,7 +2019,7 @@ p.customize-section-description {
}
.control-panel-themes .theme-section .customize-themes-section-title.selected:after {
content: "\f147";
content: "\f147" / '';
font: 16px/1 dashicons;
box-sizing: border-box;
width: 20px;
@@ -2508,7 +2522,7 @@ body.cheatin p {
.add-new-widget:before,
.add-new-menu-item:before,
#available-menu-items .new-content-item .add-content:before {
content: "\f132";
content: "\f132" / '';
display: inline-block;
position: relative;
left: -2px;
@@ -2587,12 +2601,12 @@ body.cheatin p {
.move-widget-down:before,
.menus-move-down:before {
content: "\f347";
content: "\f347" / '';
}
.move-widget-up:before,
.menus-move-up:before {
content: "\f343";
content: "\f343" / '';
}
#customize-theme-controls .first-widget .move-widget-up,
@@ -2752,7 +2766,7 @@ body.adding-widget .add-new-widget:before,
#available-widgets-filter .clear-results:before,
#available-menu-items-search .clear-results:before {
content: "\f335";
content: "\f335" / '';
font: normal 20px/1 dashicons;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
@@ -2963,14 +2977,14 @@ body.adding-widget .add-new-widget:before,
.customize-controls-preview-toggle .preview:before,
.customize-controls-preview-toggle .controls:before {
font: normal 20px/1 dashicons;
content: "\f177";
content: "\f177" / '';
position: relative;
top: 4px;
margin-right: 6px;
}
.customize-controls-preview-toggle .controls:before {
content: "\f540";
content: "\f540" / '';
}
.preview-only #customize-controls {
@@ -2990,6 +3004,10 @@ body.adding-widget .add-new-widget:before,
vertical-align: middle;
}
.customize-control .attachment-media-view .upload-button {
padding: 5px 0;
}
#customize-control-changeset_status .customize-inside-control-row {
padding-top: 15px;
}
File diff suppressed because one or more lines are too long
+8 -9
View File
@@ -142,11 +142,11 @@
}
.menus-move-left:before {
content: "\f345";
content: "\f341" / '';
}
.menus-move-right:before {
content: "\f341";
content: "\f345" / '';
}
.reordering .menu-item .item-controls,
@@ -178,7 +178,7 @@
}
.wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before {
content: "\f142";
content: "\f142" / '';
}
.wp-customizer .menu-item-settings p.description {
@@ -278,7 +278,7 @@
.customize-screen-options-toggle:before {
-moz-osx-font-smoothing: grayscale;
border: none;
content: "\f111";
content: "\f111" / '';
display: block;
font: 18px/1 dashicons;
padding: 5px;
@@ -321,10 +321,9 @@
.wp-customizer .menu-item .item-edit .toggle-indicator:before,
#available-menu-items .accordion-section-title .toggle-indicator:before {
content: "\f140";
content: "\f140" / '';
display: block;
padding: 1px 0 1px 2px;
speak: never;
border-radius: 50%;
color: #787c82;
font: normal 20px/1 dashicons;
@@ -468,7 +467,7 @@
}
.menu-item-bar .item-delete:before {
content: "\f335";
content: "\f335" / '';
position: absolute;
top: 9px;
right: 5px;
@@ -653,7 +652,7 @@
}
#available-menu-items .item-add:before {
content: "\f543";
content: "\f543" / '';
position: relative;
right: 2px;
top: 3px;
@@ -671,7 +670,7 @@
}
#available-menu-items .menu-item-handle.item-added .item-add:before {
content: "\f147";
content: "\f147" / '';
}
#available-menu-items .accordion-section-title.loading .spinner,
File diff suppressed because one or more lines are too long
+8 -9
View File
@@ -141,11 +141,11 @@
}
.menus-move-left:before {
content: "\f341";
content: "\f341" / '';
}
.menus-move-right:before {
content: "\f345";
content: "\f345" / '';
}
.reordering .menu-item .item-controls,
@@ -177,7 +177,7 @@
}
.wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before {
content: "\f142";
content: "\f142" / '';
}
.wp-customizer .menu-item-settings p.description {
@@ -277,7 +277,7 @@
.customize-screen-options-toggle:before {
-moz-osx-font-smoothing: grayscale;
border: none;
content: "\f111";
content: "\f111" / '';
display: block;
font: 18px/1 dashicons;
padding: 5px;
@@ -320,10 +320,9 @@
.wp-customizer .menu-item .item-edit .toggle-indicator:before,
#available-menu-items .accordion-section-title .toggle-indicator:before {
content: "\f140";
content: "\f140" / '';
display: block;
padding: 1px 2px 1px 0;
speak: never;
border-radius: 50%;
color: #787c82;
font: normal 20px/1 dashicons;
@@ -467,7 +466,7 @@
}
.menu-item-bar .item-delete:before {
content: "\f335";
content: "\f335" / '';
position: absolute;
top: 9px;
left: 5px;
@@ -652,7 +651,7 @@
}
#available-menu-items .item-add:before {
content: "\f543";
content: "\f543" / '';
position: relative;
left: 2px;
top: 3px;
@@ -670,7 +669,7 @@
}
#available-menu-items .menu-item-handle.item-added .item-add:before {
content: "\f147";
content: "\f147" / '';
}
#available-menu-items .accordion-section-title.loading .spinner,
File diff suppressed because one or more lines are too long
+35 -35
View File
@@ -131,7 +131,7 @@
}
.move-widget:before {
content: "\f504";
content: "\f504" / '';
}
#customize-theme-controls .move-widget-area {
@@ -171,7 +171,7 @@
#customize-theme-controls .widget-area-select li:before {
display: none;
content: "\f147";
content: "\f147" / '';
position: absolute;
top: 12px;
right: 10px;
@@ -293,7 +293,7 @@ body.adding-widget #customize-preview {
}
#available-widgets .widget-title:before {
content: "\f132";
content: "\f132" / '';
position: absolute;
top: -3px;
left: 100%;
@@ -309,73 +309,73 @@ body.adding-widget #customize-preview {
}
/* dashicons-smiley */
#available-widgets [class*="easy"] .widget-title:before { content: "\f328"; top: -4px; }
#available-widgets [class*="easy"] .widget-title:before { content: "\f328" / ''; top: -4px; }
/* dashicons-star-filled */
#available-widgets [class*="super"] .widget-title:before,
#available-widgets [class*="like"] .widget-title:before { content: "\f155"; top: -4px; }
#available-widgets [class*="like"] .widget-title:before { content: "\f155" / ''; top: -4px; }
/* dashicons-wordpress */
#available-widgets [class*="meta"] .widget-title:before { content: "\f120"; }
#available-widgets [class*="meta"] .widget-title:before { content: "\f120" / ''; }
/* dashicons-archive */
#available-widgets [class*="archives"] .widget-title:before { content: "\f480"; top: -4px; }
#available-widgets [class*="archives"] .widget-title:before { content: "\f480" / ''; top: -4px; }
/* dashicons-category */
#available-widgets [class*="categor"] .widget-title:before { content: "\f318"; top: -4px; }
#available-widgets [class*="categor"] .widget-title:before { content: "\f318" / ''; top: -4px; }
/* dashicons-admin-comments */
#available-widgets [class*="comment"] .widget-title:before,
#available-widgets [class*="testimonial"] .widget-title:before,
#available-widgets [class*="chat"] .widget-title:before { content: "\f101"; }
#available-widgets [class*="chat"] .widget-title:before { content: "\f101" / ''; }
/* dashicons-admin-post */
#available-widgets [class*="post"] .widget-title:before { content: "\f109"; }
#available-widgets [class*="post"] .widget-title:before { content: "\f109" / ''; }
/* dashicons-admin-page */
#available-widgets [class*="page"] .widget-title:before { content: "\f105"; }
#available-widgets [class*="page"] .widget-title:before { content: "\f105" / ''; }
/* dashicons-text */
#available-widgets [class*="text"] .widget-title:before { content: "\f478"; }
#available-widgets [class*="text"] .widget-title:before { content: "\f478" / ''; }
/* dashicons-admin-links */
#available-widgets [class*="link"] .widget-title:before { content: "\f103"; }
#available-widgets [class*="link"] .widget-title:before { content: "\f103" / ''; }
/* dashicons-search */
#available-widgets [class*="search"] .widget-title:before { content: "\f179"; }
#available-widgets [class*="search"] .widget-title:before { content: "\f179" / ''; }
/* dashicons-menu */
#available-widgets [class*="menu"] .widget-title:before,
#available-widgets [class*="nav"] .widget-title:before { content: "\f333"; }
#available-widgets [class*="nav"] .widget-title:before { content: "\f333" / ''; }
/* dashicons-tagcloud */
#available-widgets [class*="tag"] .widget-title:before { content: "\f479"; }
#available-widgets [class*="tag"] .widget-title:before { content: "\f479" / ''; }
/* dashicons-rss */
#available-widgets [class*="rss"] .widget-title:before { content: "\f303"; top: -6px; }
#available-widgets [class*="rss"] .widget-title:before { content: "\f303" / ''; top: -6px; }
/* dashicons-calendar */
#available-widgets [class*="event"] .widget-title:before,
#available-widgets [class*="calendar"] .widget-title:before { content: "\f145"; top: -4px;}
#available-widgets [class*="calendar"] .widget-title:before { content: "\f145" / ''; top: -4px;}
/* dashicons-format-image */
#available-widgets [class*="image"] .widget-title:before,
#available-widgets [class*="photo"] .widget-title:before,
#available-widgets [class*="slide"] .widget-title:before,
#available-widgets [class*="instagram"] .widget-title:before { content: "\f128"; }
#available-widgets [class*="instagram"] .widget-title:before { content: "\f128" / ''; }
/* dashicons-format-gallery */
#available-widgets [class*="album"] .widget-title:before,
#available-widgets [class*="galler"] .widget-title:before { content: "\f161"; }
#available-widgets [class*="galler"] .widget-title:before { content: "\f161" / ''; }
/* dashicons-format-video */
#available-widgets [class*="video"] .widget-title:before,
#available-widgets [class*="tube"] .widget-title:before { content: "\f126"; }
#available-widgets [class*="tube"] .widget-title:before { content: "\f126" / ''; }
/* dashicons-format-audio */
#available-widgets [class*="music"] .widget-title:before,
#available-widgets [class*="radio"] .widget-title:before,
#available-widgets [class*="audio"] .widget-title:before { content: "\f127"; }
#available-widgets [class*="audio"] .widget-title:before { content: "\f127" / ''; }
/* dashicons-admin-users */
#available-widgets [class*="login"] .widget-title:before,
@@ -384,55 +384,55 @@ body.adding-widget #customize-preview {
#available-widgets [class*="avatar"] .widget-title:before,
#available-widgets [class*="subscriber"] .widget-title:before,
#available-widgets [class*="profile"] .widget-title:before,
#available-widgets [class*="grofile"] .widget-title:before { content: "\f110"; }
#available-widgets [class*="grofile"] .widget-title:before { content: "\f110" / ''; }
/* dashicons-cart */
#available-widgets [class*="commerce"] .widget-title:before,
#available-widgets [class*="shop"] .widget-title:before,
#available-widgets [class*="cart"] .widget-title:before { content: "\f174"; top: -4px; }
#available-widgets [class*="cart"] .widget-title:before { content: "\f174" / ''; top: -4px; }
/* dashicons-shield */
#available-widgets [class*="secur"] .widget-title:before,
#available-widgets [class*="firewall"] .widget-title:before { content: "\f332"; }
#available-widgets [class*="firewall"] .widget-title:before { content: "\f332" / ''; }
/* dashicons-chart-bar */
#available-widgets [class*="analytic"] .widget-title:before,
#available-widgets [class*="stat"] .widget-title:before,
#available-widgets [class*="poll"] .widget-title:before { content: "\f185"; }
#available-widgets [class*="poll"] .widget-title:before { content: "\f185" / ''; }
/* dashicons-feedback */
#available-widgets [class*="form"] .widget-title:before { content: "\f175"; }
#available-widgets [class*="form"] .widget-title:before { content: "\f175" / ''; }
/* dashicons-email-alt */
#available-widgets [class*="subscribe"] .widget-title:before,
#available-widgets [class*="news"] .widget-title:before,
#available-widgets [class*="contact"] .widget-title:before,
#available-widgets [class*="mail"] .widget-title:before { content: "\f466"; }
#available-widgets [class*="mail"] .widget-title:before { content: "\f466" / ''; }
/* dashicons-share */
#available-widgets [class*="share"] .widget-title:before,
#available-widgets [class*="socia"] .widget-title:before { content: "\f237"; }
#available-widgets [class*="socia"] .widget-title:before { content: "\f237" / ''; }
/* dashicons-translation */
#available-widgets [class*="lang"] .widget-title:before,
#available-widgets [class*="translat"] .widget-title:before { content: "\f326"; }
#available-widgets [class*="translat"] .widget-title:before { content: "\f326" / ''; }
/* dashicons-location-alt */
#available-widgets [class*="locat"] .widget-title:before,
#available-widgets [class*="map"] .widget-title:before { content: "\f231"; }
#available-widgets [class*="map"] .widget-title:before { content: "\f231" / ''; }
/* dashicons-download */
#available-widgets [class*="download"] .widget-title:before { content: "\f316"; }
#available-widgets [class*="download"] .widget-title:before { content: "\f316" / ''; }
/* dashicons-cloud */
#available-widgets [class*="weather"] .widget-title:before { content: "\f176"; top: -4px;}
#available-widgets [class*="weather"] .widget-title:before { content: "\f176" / ''; top: -4px;}
/* dashicons-facebook */
#available-widgets [class*="facebook"] .widget-title:before { content: "\f304"; }
#available-widgets [class*="facebook"] .widget-title:before { content: "\f304" / ''; }
/* dashicons-twitter */
#available-widgets [class*="tweet"] .widget-title:before,
#available-widgets [class*="twitter"] .widget-title:before { content: "\f301"; }
#available-widgets [class*="twitter"] .widget-title:before { content: "\f301" / ''; }
@media screen and (max-height: 700px) and (min-width: 981px) {
/* Compact widget-tops on smaller laptops, but not tablets. See ticket #27112#comment:4 */
File diff suppressed because one or more lines are too long
+35 -35
View File
@@ -130,7 +130,7 @@
}
.move-widget:before {
content: "\f504";
content: "\f504" / '';
}
#customize-theme-controls .move-widget-area {
@@ -170,7 +170,7 @@
#customize-theme-controls .widget-area-select li:before {
display: none;
content: "\f147";
content: "\f147" / '';
position: absolute;
top: 12px;
left: 10px;
@@ -292,7 +292,7 @@ body.adding-widget #customize-preview {
}
#available-widgets .widget-title:before {
content: "\f132";
content: "\f132" / '';
position: absolute;
top: -3px;
right: 100%;
@@ -308,73 +308,73 @@ body.adding-widget #customize-preview {
}
/* dashicons-smiley */
#available-widgets [class*="easy"] .widget-title:before { content: "\f328"; top: -4px; }
#available-widgets [class*="easy"] .widget-title:before { content: "\f328" / ''; top: -4px; }
/* dashicons-star-filled */
#available-widgets [class*="super"] .widget-title:before,
#available-widgets [class*="like"] .widget-title:before { content: "\f155"; top: -4px; }
#available-widgets [class*="like"] .widget-title:before { content: "\f155" / ''; top: -4px; }
/* dashicons-wordpress */
#available-widgets [class*="meta"] .widget-title:before { content: "\f120"; }
#available-widgets [class*="meta"] .widget-title:before { content: "\f120" / ''; }
/* dashicons-archive */
#available-widgets [class*="archives"] .widget-title:before { content: "\f480"; top: -4px; }
#available-widgets [class*="archives"] .widget-title:before { content: "\f480" / ''; top: -4px; }
/* dashicons-category */
#available-widgets [class*="categor"] .widget-title:before { content: "\f318"; top: -4px; }
#available-widgets [class*="categor"] .widget-title:before { content: "\f318" / ''; top: -4px; }
/* dashicons-admin-comments */
#available-widgets [class*="comment"] .widget-title:before,
#available-widgets [class*="testimonial"] .widget-title:before,
#available-widgets [class*="chat"] .widget-title:before { content: "\f101"; }
#available-widgets [class*="chat"] .widget-title:before { content: "\f101" / ''; }
/* dashicons-admin-post */
#available-widgets [class*="post"] .widget-title:before { content: "\f109"; }
#available-widgets [class*="post"] .widget-title:before { content: "\f109" / ''; }
/* dashicons-admin-page */
#available-widgets [class*="page"] .widget-title:before { content: "\f105"; }
#available-widgets [class*="page"] .widget-title:before { content: "\f105" / ''; }
/* dashicons-text */
#available-widgets [class*="text"] .widget-title:before { content: "\f478"; }
#available-widgets [class*="text"] .widget-title:before { content: "\f478" / ''; }
/* dashicons-admin-links */
#available-widgets [class*="link"] .widget-title:before { content: "\f103"; }
#available-widgets [class*="link"] .widget-title:before { content: "\f103" / ''; }
/* dashicons-search */
#available-widgets [class*="search"] .widget-title:before { content: "\f179"; }
#available-widgets [class*="search"] .widget-title:before { content: "\f179" / ''; }
/* dashicons-menu */
#available-widgets [class*="menu"] .widget-title:before,
#available-widgets [class*="nav"] .widget-title:before { content: "\f333"; }
#available-widgets [class*="nav"] .widget-title:before { content: "\f333" / ''; }
/* dashicons-tagcloud */
#available-widgets [class*="tag"] .widget-title:before { content: "\f479"; }
#available-widgets [class*="tag"] .widget-title:before { content: "\f479" / ''; }
/* dashicons-rss */
#available-widgets [class*="rss"] .widget-title:before { content: "\f303"; top: -6px; }
#available-widgets [class*="rss"] .widget-title:before { content: "\f303" / ''; top: -6px; }
/* dashicons-calendar */
#available-widgets [class*="event"] .widget-title:before,
#available-widgets [class*="calendar"] .widget-title:before { content: "\f145"; top: -4px;}
#available-widgets [class*="calendar"] .widget-title:before { content: "\f145" / ''; top: -4px;}
/* dashicons-format-image */
#available-widgets [class*="image"] .widget-title:before,
#available-widgets [class*="photo"] .widget-title:before,
#available-widgets [class*="slide"] .widget-title:before,
#available-widgets [class*="instagram"] .widget-title:before { content: "\f128"; }
#available-widgets [class*="instagram"] .widget-title:before { content: "\f128" / ''; }
/* dashicons-format-gallery */
#available-widgets [class*="album"] .widget-title:before,
#available-widgets [class*="galler"] .widget-title:before { content: "\f161"; }
#available-widgets [class*="galler"] .widget-title:before { content: "\f161" / ''; }
/* dashicons-format-video */
#available-widgets [class*="video"] .widget-title:before,
#available-widgets [class*="tube"] .widget-title:before { content: "\f126"; }
#available-widgets [class*="tube"] .widget-title:before { content: "\f126" / ''; }
/* dashicons-format-audio */
#available-widgets [class*="music"] .widget-title:before,
#available-widgets [class*="radio"] .widget-title:before,
#available-widgets [class*="audio"] .widget-title:before { content: "\f127"; }
#available-widgets [class*="audio"] .widget-title:before { content: "\f127" / ''; }
/* dashicons-admin-users */
#available-widgets [class*="login"] .widget-title:before,
@@ -383,55 +383,55 @@ body.adding-widget #customize-preview {
#available-widgets [class*="avatar"] .widget-title:before,
#available-widgets [class*="subscriber"] .widget-title:before,
#available-widgets [class*="profile"] .widget-title:before,
#available-widgets [class*="grofile"] .widget-title:before { content: "\f110"; }
#available-widgets [class*="grofile"] .widget-title:before { content: "\f110" / ''; }
/* dashicons-cart */
#available-widgets [class*="commerce"] .widget-title:before,
#available-widgets [class*="shop"] .widget-title:before,
#available-widgets [class*="cart"] .widget-title:before { content: "\f174"; top: -4px; }
#available-widgets [class*="cart"] .widget-title:before { content: "\f174" / ''; top: -4px; }
/* dashicons-shield */
#available-widgets [class*="secur"] .widget-title:before,
#available-widgets [class*="firewall"] .widget-title:before { content: "\f332"; }
#available-widgets [class*="firewall"] .widget-title:before { content: "\f332" / ''; }
/* dashicons-chart-bar */
#available-widgets [class*="analytic"] .widget-title:before,
#available-widgets [class*="stat"] .widget-title:before,
#available-widgets [class*="poll"] .widget-title:before { content: "\f185"; }
#available-widgets [class*="poll"] .widget-title:before { content: "\f185" / ''; }
/* dashicons-feedback */
#available-widgets [class*="form"] .widget-title:before { content: "\f175"; }
#available-widgets [class*="form"] .widget-title:before { content: "\f175" / ''; }
/* dashicons-email-alt */
#available-widgets [class*="subscribe"] .widget-title:before,
#available-widgets [class*="news"] .widget-title:before,
#available-widgets [class*="contact"] .widget-title:before,
#available-widgets [class*="mail"] .widget-title:before { content: "\f466"; }
#available-widgets [class*="mail"] .widget-title:before { content: "\f466" / ''; }
/* dashicons-share */
#available-widgets [class*="share"] .widget-title:before,
#available-widgets [class*="socia"] .widget-title:before { content: "\f237"; }
#available-widgets [class*="socia"] .widget-title:before { content: "\f237" / ''; }
/* dashicons-translation */
#available-widgets [class*="lang"] .widget-title:before,
#available-widgets [class*="translat"] .widget-title:before { content: "\f326"; }
#available-widgets [class*="translat"] .widget-title:before { content: "\f326" / ''; }
/* dashicons-location-alt */
#available-widgets [class*="locat"] .widget-title:before,
#available-widgets [class*="map"] .widget-title:before { content: "\f231"; }
#available-widgets [class*="map"] .widget-title:before { content: "\f231" / ''; }
/* dashicons-download */
#available-widgets [class*="download"] .widget-title:before { content: "\f316"; }
#available-widgets [class*="download"] .widget-title:before { content: "\f316" / ''; }
/* dashicons-cloud */
#available-widgets [class*="weather"] .widget-title:before { content: "\f176"; top: -4px;}
#available-widgets [class*="weather"] .widget-title:before { content: "\f176" / ''; top: -4px;}
/* dashicons-facebook */
#available-widgets [class*="facebook"] .widget-title:before { content: "\f304"; }
#available-widgets [class*="facebook"] .widget-title:before { content: "\f304" / ''; }
/* dashicons-twitter */
#available-widgets [class*="tweet"] .widget-title:before,
#available-widgets [class*="twitter"] .widget-title:before { content: "\f301"; }
#available-widgets [class*="twitter"] .widget-title:before { content: "\f301" / ''; }
@media screen and (max-height: 700px) and (min-width: 981px) {
/* Compact widget-tops on smaller laptops, but not tablets. See ticket #27112#comment:4 */
File diff suppressed because one or more lines are too long
+23 -23
View File
@@ -339,7 +339,6 @@
#dashboard_right_now .search-engines-info:before {
color: #646970;
font: normal 20px/1 dashicons;
speak: never;
display: inline-block;
padding: 0 0 0 10px;
position: relative;
@@ -354,55 +353,55 @@
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-write-blog:before,
.welcome-panel .welcome-edit-page:before {
content: "\f119";
content: "\f119" / '';
top: -3px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-add-page:before {
content: "\f132";
content: "\f132" / '';
top: -1px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-setup-home:before {
content: "\f102";
content: "\f102" / '';
top: -1px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-view-site:before {
content: "\f115";
content: "\f115" / '';
top: -2px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-widgets-menus:before {
content: "\f116";
content: "\f116" / '';
top: -2px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-widgets:before {
content: "\f538";
content: "\f538" / '';
top: -2px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-menus:before {
content: "\f163";
content: "\f163" / '';
top: -2px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-comments:before {
content: "\f117";
content: "\f117" / '';
top: -1px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-learn-more:before {
content: "\f118";
content: "\f118" / '';
top: -1px;
}
@@ -411,38 +410,39 @@
#dashboard_right_now .search-engines-info:before,
#dashboard_right_now li a:before,
#dashboard_right_now li > span:before { /* get only the first level span to exclude screen-reader-text in mu-storage */
content: "\f159"; /* generic icon for items added by CPTs ? */
content: "\f159" / ''; /* generic icon for items added by CPTs ? */
padding: 0 0 0 5px;
}
#dashboard_right_now .page-count a:before,
#dashboard_right_now .page-count span:before {
content: "\f105";
content: "\f105" / '';
}
#dashboard_right_now .post-count a:before,
#dashboard_right_now .post-count span:before {
content: "\f109";
content: "\f109" / '';
}
#dashboard_right_now .comment-count a:before {
content: "\f101";
content: "\f101" / '';
}
#dashboard_right_now .comment-mod-count a:before {
content: "\f125";
content: "\f125" / '';
}
#dashboard_right_now .storage-count a:before {
content: "\f104";
content: "\f104" / '';
}
#dashboard_right_now .storage-count.warning a:before {
content: "\f153";
content: "\f153" / '';
}
#dashboard_right_now .search-engines-info:before {
content: "\f348";
content: "\f348" / '';
color: #d63638;
}
/* Dashboard WordPress events */
@@ -560,7 +560,7 @@
}
.community-events .ce-separator::before {
content: "\2022";
content: "\2022" / '';
}
.event-icon {
@@ -575,10 +575,10 @@
font-size: 18px;
}
.event-meetup .event-icon:before {
content: "\f484";
content: "\f484" / '';
}
.event-wordcamp .event-icon:before {
content: "\f486";
content: "\f486" / '';
}
.community-events .event-title {
@@ -860,7 +860,7 @@ body #dashboard-widgets .postbox form .submit {
/* Dashboard activity widget */
#dashboard_activity .comment-meta span.approve:before {
content: "\f227";
content: "\f227" / '';
font: 20px/.5 dashicons;
margin-right: 5px;
vertical-align: middle;
@@ -1134,7 +1134,7 @@ a.rsswidget {
}
.rss-widget cite:before {
content: "\2014";
content: "\2014" / '';
}
.dashboard-comment-wrap {
+1 -1
View File
File diff suppressed because one or more lines are too long
+23 -23
View File
@@ -338,7 +338,6 @@
#dashboard_right_now .search-engines-info:before {
color: #646970;
font: normal 20px/1 dashicons;
speak: never;
display: inline-block;
padding: 0 10px 0 0;
position: relative;
@@ -353,55 +352,55 @@
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-write-blog:before,
.welcome-panel .welcome-edit-page:before {
content: "\f119";
content: "\f119" / '';
top: -3px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-add-page:before {
content: "\f132";
content: "\f132" / '';
top: -1px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-setup-home:before {
content: "\f102";
content: "\f102" / '';
top: -1px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-view-site:before {
content: "\f115";
content: "\f115" / '';
top: -2px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-widgets-menus:before {
content: "\f116";
content: "\f116" / '';
top: -2px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-widgets:before {
content: "\f538";
content: "\f538" / '';
top: -2px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-menus:before {
content: "\f163";
content: "\f163" / '';
top: -2px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-comments:before {
content: "\f117";
content: "\f117" / '';
top: -1px;
}
/* @deprecated 5.9.0 -- Icons removed from welcome panel. */
.welcome-panel .welcome-learn-more:before {
content: "\f118";
content: "\f118" / '';
top: -1px;
}
@@ -410,38 +409,39 @@
#dashboard_right_now .search-engines-info:before,
#dashboard_right_now li a:before,
#dashboard_right_now li > span:before { /* get only the first level span to exclude screen-reader-text in mu-storage */
content: "\f159"; /* generic icon for items added by CPTs ? */
content: "\f159" / ''; /* generic icon for items added by CPTs ? */
padding: 0 5px 0 0;
}
#dashboard_right_now .page-count a:before,
#dashboard_right_now .page-count span:before {
content: "\f105";
content: "\f105" / '';
}
#dashboard_right_now .post-count a:before,
#dashboard_right_now .post-count span:before {
content: "\f109";
content: "\f109" / '';
}
#dashboard_right_now .comment-count a:before {
content: "\f101";
content: "\f101" / '';
}
#dashboard_right_now .comment-mod-count a:before {
content: "\f125";
content: "\f125" / '';
}
#dashboard_right_now .storage-count a:before {
content: "\f104";
content: "\f104" / '';
}
#dashboard_right_now .storage-count.warning a:before {
content: "\f153";
content: "\f153" / '';
}
#dashboard_right_now .search-engines-info:before {
content: "\f348";
content: "\f348" / '';
color: #d63638;
}
/* Dashboard WordPress events */
@@ -559,7 +559,7 @@
}
.community-events .ce-separator::before {
content: "\2022";
content: "\2022" / '';
}
.event-icon {
@@ -574,10 +574,10 @@
font-size: 18px;
}
.event-meetup .event-icon:before {
content: "\f484";
content: "\f484" / '';
}
.event-wordcamp .event-icon:before {
content: "\f486";
content: "\f486" / '';
}
.community-events .event-title {
@@ -859,7 +859,7 @@ body #dashboard-widgets .postbox form .submit {
/* Dashboard activity widget */
#dashboard_activity .comment-meta span.approve:before {
content: "\f227";
content: "\f227" / '';
font: 20px/.5 dashicons;
margin-left: 5px;
vertical-align: middle;
@@ -1133,7 +1133,7 @@ a.rsswidget {
}
.rss-widget cite:before {
content: "\2014";
content: "\2014" / '';
}
.dashboard-comment-wrap {
+1 -1
View File
File diff suppressed because one or more lines are too long
+23 -20
View File
@@ -494,7 +494,6 @@ form#tags-filter {
#post-body .misc-pub-response-to:before,
#post-body .misc-pub-comment-status:before {
font: normal 20px/1 dashicons;
speak: never;
display: inline-block;
margin-right: -1px;
padding-left: 3px;
@@ -505,37 +504,37 @@ form#tags-filter {
#post-body .misc-pub-post-status:before,
#post-body .misc-pub-comment-status:before {
content: "\f173";
content: "\f173" / '';
}
#post-body #visibility:before {
content: "\f177";
content: "\f177" / '';
}
.curtime #timestamp:before {
content: "\f145";
content: "\f145" / '';
position: relative;
top: -1px;
}
#post-body .misc-pub-uploadedby:before {
content: "\f110";
content: "\f110" / '';
position: relative;
top: -1px;
}
#post-body .misc-pub-uploadedto:before {
content: "\f318";
content: "\f318" / '';
position: relative;
top: -1px;
}
#post-body .misc-pub-revisions:before {
content: "\f321";
content: "\f321" / '';
}
#post-body .misc-pub-response-to:before {
content: "\f101";
content: "\f101" / '';
}
#timestampdiv {
@@ -1204,7 +1203,6 @@ form#tags-filter {
margin-left: 7px;
color: #dcdcde;
font: normal 20px/1 dashicons;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@@ -1231,43 +1229,43 @@ label.post-format-icon {
}
.post-format-icon.post-format-standard::before {
content: "\f109";
content: "\f109" / '';
}
.post-format-icon.post-format-image::before {
content: "\f128";
content: "\f128" / '';
}
.post-format-icon.post-format-gallery::before {
content: "\f161";
content: "\f161" / '';
}
.post-format-icon.post-format-audio::before {
content: "\f127";
content: "\f127" / '';
}
.post-format-icon.post-format-video::before {
content: "\f126";
content: "\f126" / '';
}
.post-format-icon.post-format-chat::before {
content: "\f125";
content: "\f125" / '';
}
.post-format-icon.post-format-status::before {
content: "\f130";
content: "\f130" / '';
}
.post-format-icon.post-format-aside::before {
content: "\f123";
content: "\f123" / '';
}
.post-format-icon.post-format-quote::before {
content: "\f122";
content: "\f122" / '';
}
.post-format-icon.post-format-link::before {
content: "\f103";
content: "\f103" / '';
}
/*------------------------------------------------------------------------------
@@ -1380,6 +1378,11 @@ p.description code {
font-style: normal;
}
p.description code,
.form-wrap p code {
color: #50575e;
}
.form-wrap .form-field {
margin: 1em 0;
padding: 0;
@@ -1998,7 +2001,7 @@ table.links-table {
}
.misc-pub-section {
padding: 20px 10px;
padding: 12px 10px;
}
#delete-action,
+1 -1
View File
File diff suppressed because one or more lines are too long
+23 -20
View File
@@ -493,7 +493,6 @@ form#tags-filter {
#post-body .misc-pub-response-to:before,
#post-body .misc-pub-comment-status:before {
font: normal 20px/1 dashicons;
speak: never;
display: inline-block;
margin-left: -1px;
padding-right: 3px;
@@ -504,37 +503,37 @@ form#tags-filter {
#post-body .misc-pub-post-status:before,
#post-body .misc-pub-comment-status:before {
content: "\f173";
content: "\f173" / '';
}
#post-body #visibility:before {
content: "\f177";
content: "\f177" / '';
}
.curtime #timestamp:before {
content: "\f145";
content: "\f145" / '';
position: relative;
top: -1px;
}
#post-body .misc-pub-uploadedby:before {
content: "\f110";
content: "\f110" / '';
position: relative;
top: -1px;
}
#post-body .misc-pub-uploadedto:before {
content: "\f318";
content: "\f318" / '';
position: relative;
top: -1px;
}
#post-body .misc-pub-revisions:before {
content: "\f321";
content: "\f321" / '';
}
#post-body .misc-pub-response-to:before {
content: "\f101";
content: "\f101" / '';
}
#timestampdiv {
@@ -1203,7 +1202,6 @@ form#tags-filter {
margin-right: 7px;
color: #dcdcde;
font: normal 20px/1 dashicons;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@@ -1230,43 +1228,43 @@ label.post-format-icon {
}
.post-format-icon.post-format-standard::before {
content: "\f109";
content: "\f109" / '';
}
.post-format-icon.post-format-image::before {
content: "\f128";
content: "\f128" / '';
}
.post-format-icon.post-format-gallery::before {
content: "\f161";
content: "\f161" / '';
}
.post-format-icon.post-format-audio::before {
content: "\f127";
content: "\f127" / '';
}
.post-format-icon.post-format-video::before {
content: "\f126";
content: "\f126" / '';
}
.post-format-icon.post-format-chat::before {
content: "\f125";
content: "\f125" / '';
}
.post-format-icon.post-format-status::before {
content: "\f130";
content: "\f130" / '';
}
.post-format-icon.post-format-aside::before {
content: "\f123";
content: "\f123" / '';
}
.post-format-icon.post-format-quote::before {
content: "\f122";
content: "\f122" / '';
}
.post-format-icon.post-format-link::before {
content: "\f103";
content: "\f103" / '';
}
/*------------------------------------------------------------------------------
@@ -1379,6 +1377,11 @@ p.description code {
font-style: normal;
}
p.description code,
.form-wrap p code {
color: #50575e;
}
.form-wrap .form-field {
margin: 1em 0;
padding: 0;
@@ -1997,7 +2000,7 @@ table.links-table {
}
.misc-pub-section {
padding: 20px 10px;
padding: 12px 10px;
}
#delete-action,
+1 -1
View File
File diff suppressed because one or more lines are too long
+49 -64
View File
@@ -169,14 +169,13 @@ input[type="radio"]:checked::before {
display: inline-block;
vertical-align: middle;
width: 1rem;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
input[type="checkbox"]:checked::before {
/* Use the "Yes" SVG Dashicon */
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E") / '';
margin: -0.1875rem -0.25rem 0 0;
height: 1.3125rem;
width: 1.3125rem;
@@ -228,11 +227,6 @@ textarea[readonly] {
::-moz-placeholder {
color: #646970;
opacity: 1;
}
:-ms-input-placeholder {
color: #646970;
}
.form-invalid .form-required,
@@ -246,7 +240,7 @@ textarea[readonly] {
}
.form-table .form-required.form-invalid td:after {
content: "\f534";
content: "\f534" / '';
font: normal 20px/1 dashicons;
color: #d63638;
margin-right: -25px;
@@ -259,7 +253,7 @@ textarea[readonly] {
}
.form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after {
content: "\f534";
content: "\f534" / '';
font: normal 20px/1 dashicons;
color: #d63638;
margin: 0 -29px 0 6px;
@@ -720,6 +714,37 @@ fieldset label,
display: inline-block;
}
/* Caps lock warning */
.wp-pwd .caps-warning {
display: none;
position: relative;
background: #fcf9e8;
border: 1px solid #f0c33c;
color: #1d2327;
padding: 6px 10px;
top: -8px;
}
.profile-php .wp-pwd .caps-warning {
padding: 3px 5px;
top: -4px;
border-radius: 4px;
}
.wp-pwd .caps-icon {
display: inline-flex;
justify-content: center;
width: 20px;
height: 20px;
margin-left: 5px;
vertical-align: middle;
}
.wp-pwd .caps-warning-text {
vertical-align: middle;
}
/* Caps lock warning */
p.search-box {
display: flex;
flex-wrap: wrap;
@@ -734,7 +759,6 @@ p.search-box {
clear: right;
}
.search-box input[name="s"],
.tablenav .search-plugins input[name="s"],
.tagsdiv .newtag {
float: right;
@@ -795,32 +819,6 @@ ul#add-to-blog-users {
outline: 2px solid transparent;
}
.button-add-site-icon {
width: 100%;
cursor: pointer;
text-align: center;
border: 1px dashed #c3c4c7;
box-sizing: border-box;
padding: 9px 0;
line-height: 1.6;
max-width: 270px;
border-radius: 4px;
background: #f0f0f1;
}
.button-add-site-icon:focus,
.button-add-site-icon:hover {
background: #fff;
}
.button-add-site-icon:focus {
background-color: #fff;
border-color: #3582c4;
border-style: solid;
box-shadow: 0 0 0 1px #3582c4;
outline: 2px solid transparent;
}
/*------------------------------------------------------------------------------
15.0 - Comments Screen
------------------------------------------------------------------------------*/
@@ -1122,7 +1120,7 @@ table.form-table td .updated p {
.pressthis-bookmarklet span:before {
color: #787c82;
font: normal 20px/1 dashicons;
content: "\f157";
content: "\f157" / '';
position: relative;
display: inline-block;
top: 4px;
@@ -1486,6 +1484,11 @@ table.form-table td .updated p {
font-weight: 600;
}
.privacy_requests .status-date {
display: block;
font-weight: 400;
}
.wp-privacy-request-form {
clear: both;
}
@@ -1498,28 +1501,6 @@ table.form-table td .updated p {
margin: 0;
}
.email-personal-data::before {
display: inline-block;
font: normal 20px/1 dashicons;
margin: 3px -2px 0 5px;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
vertical-align: top;
}
.email-personal-data--sending::before {
color: #d63638;
content: "\f463";
animation: rotation 2s infinite linear;
}
.email-personal-data--sent::before {
color: #68de7c;
content: "\f147";
}
/* =Media Queries
-------------------------------------------------------------- */
@@ -1593,10 +1574,6 @@ table.form-table td .updated p {
line-height: 0.76190476;
}
.wp-upload-form input[type="submit"] {
margin-top: 10px;
}
.wp-core-ui select,
.wp-admin .form-table select {
min-height: 40px;
@@ -1695,6 +1672,10 @@ table.form-table td .updated p {
padding: 8px;
}
.profile-php .wp-pwd .caps-warning {
padding: 8px;
}
.password-input-wrapper {
display: block;
}
@@ -1707,11 +1688,15 @@ table.form-table td .updated p {
}
p.search-box input[name="s"] {
float: none;
width: 100%;
float: none;
margin-bottom: 10px;
vertical-align: middle;
}
.js.plugins-php .search-box .wp-filter-search {
width: 100%;
margin-bottom: 0;
}
p.search-box input[type="submit"] {
margin-bottom: 10px;
+1 -1
View File
File diff suppressed because one or more lines are too long
+49 -64
View File
@@ -168,14 +168,13 @@ input[type="radio"]:checked::before {
display: inline-block;
vertical-align: middle;
width: 1rem;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
input[type="checkbox"]:checked::before {
/* Use the "Yes" SVG Dashicon */
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E") / '';
margin: -0.1875rem 0 0 -0.25rem;
height: 1.3125rem;
width: 1.3125rem;
@@ -227,11 +226,6 @@ textarea[readonly] {
::-moz-placeholder {
color: #646970;
opacity: 1;
}
:-ms-input-placeholder {
color: #646970;
}
.form-invalid .form-required,
@@ -245,7 +239,7 @@ textarea[readonly] {
}
.form-table .form-required.form-invalid td:after {
content: "\f534";
content: "\f534" / '';
font: normal 20px/1 dashicons;
color: #d63638;
margin-left: -25px;
@@ -258,7 +252,7 @@ textarea[readonly] {
}
.form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after {
content: "\f534";
content: "\f534" / '';
font: normal 20px/1 dashicons;
color: #d63638;
margin: 0 6px 0 -29px;
@@ -719,6 +713,37 @@ fieldset label,
display: inline-block;
}
/* Caps lock warning */
.wp-pwd .caps-warning {
display: none;
position: relative;
background: #fcf9e8;
border: 1px solid #f0c33c;
color: #1d2327;
padding: 6px 10px;
top: -8px;
}
.profile-php .wp-pwd .caps-warning {
padding: 3px 5px;
top: -4px;
border-radius: 4px;
}
.wp-pwd .caps-icon {
display: inline-flex;
justify-content: center;
width: 20px;
height: 20px;
margin-right: 5px;
vertical-align: middle;
}
.wp-pwd .caps-warning-text {
vertical-align: middle;
}
/* Caps lock warning */
p.search-box {
display: flex;
flex-wrap: wrap;
@@ -733,7 +758,6 @@ p.search-box {
clear: left;
}
.search-box input[name="s"],
.tablenav .search-plugins input[name="s"],
.tagsdiv .newtag {
float: left;
@@ -794,32 +818,6 @@ ul#add-to-blog-users {
outline: 2px solid transparent;
}
.button-add-site-icon {
width: 100%;
cursor: pointer;
text-align: center;
border: 1px dashed #c3c4c7;
box-sizing: border-box;
padding: 9px 0;
line-height: 1.6;
max-width: 270px;
border-radius: 4px;
background: #f0f0f1;
}
.button-add-site-icon:focus,
.button-add-site-icon:hover {
background: #fff;
}
.button-add-site-icon:focus {
background-color: #fff;
border-color: #3582c4;
border-style: solid;
box-shadow: 0 0 0 1px #3582c4;
outline: 2px solid transparent;
}
/*------------------------------------------------------------------------------
15.0 - Comments Screen
------------------------------------------------------------------------------*/
@@ -1121,7 +1119,7 @@ table.form-table td .updated p {
.pressthis-bookmarklet span:before {
color: #787c82;
font: normal 20px/1 dashicons;
content: "\f157";
content: "\f157" / '';
position: relative;
display: inline-block;
top: 4px;
@@ -1485,6 +1483,11 @@ table.form-table td .updated p {
font-weight: 600;
}
.privacy_requests .status-date {
display: block;
font-weight: 400;
}
.wp-privacy-request-form {
clear: both;
}
@@ -1497,28 +1500,6 @@ table.form-table td .updated p {
margin: 0;
}
.email-personal-data::before {
display: inline-block;
font: normal 20px/1 dashicons;
margin: 3px 5px 0 -2px;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
vertical-align: top;
}
.email-personal-data--sending::before {
color: #d63638;
content: "\f463";
animation: rotation 2s infinite linear;
}
.email-personal-data--sent::before {
color: #68de7c;
content: "\f147";
}
/* =Media Queries
-------------------------------------------------------------- */
@@ -1592,10 +1573,6 @@ table.form-table td .updated p {
line-height: 0.76190476;
}
.wp-upload-form input[type="submit"] {
margin-top: 10px;
}
.wp-core-ui select,
.wp-admin .form-table select {
min-height: 40px;
@@ -1694,6 +1671,10 @@ table.form-table td .updated p {
padding: 8px;
}
.profile-php .wp-pwd .caps-warning {
padding: 8px;
}
.password-input-wrapper {
display: block;
}
@@ -1706,11 +1687,15 @@ table.form-table td .updated p {
}
p.search-box input[name="s"] {
float: none;
width: 100%;
float: none;
margin-bottom: 10px;
vertical-align: middle;
}
.js.plugins-php .search-box .wp-filter-search {
width: 100%;
margin-bottom: 0;
}
p.search-box input[type="submit"] {
margin-bottom: 10px;
+1 -1
View File
File diff suppressed because one or more lines are too long
+26 -27
View File
@@ -269,9 +269,8 @@ th .comment-grey-bubble {
}
th .comment-grey-bubble:before {
content: "\f101";
content: "\f101" / '';
font: normal 20px/.5 dashicons;
speak: never;
display: inline-block;
padding: 0;
top: 4px;
@@ -476,7 +475,6 @@ table.media .column-title .filename {
.sorting-indicator:before {
font: normal 20px/1 dashicons;
speak: never;
display: inline-block;
padding: 0;
top: -4px;
@@ -491,11 +489,11 @@ table.media .column-title .filename {
}
.sorting-indicator.asc:before {
content: "\f142";
content: "\f142" / '';
}
.sorting-indicator.desc:before {
content: "\f140";
content: "\f140" / '';
}
th.sorted.desc .sorting-indicator.desc:before {
@@ -555,16 +553,15 @@ th.sorted.desc:hover .sorting-indicator.asc:before {
display: block;
padding: 1px 0 1px 2px;
color: #3c434a; /* same as table headers sort arrows */
content: "\f140";
content: "\f140" / '';
font: normal 20px/1 dashicons;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
speak: never;
}
.wp-list-table .is-expanded .toggle-row:before {
content: "\f142";
content: "\f142" / '';
}
.check-column {
@@ -604,10 +601,9 @@ th.sorted.desc:hover .sorting-indicator.asc:before {
.locked-indicator-icon:before {
color: #8c8f94;
content: "\f160";
content: "\f160" / '';
display: inline-block;
font: normal 20px/1 dashicons;
speak: never;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -765,7 +761,6 @@ th.sorted a span {
color: #c3c4c7;
display: inline-block;
font: normal 20px/1 dashicons;
speak: never;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -781,15 +776,15 @@ th.sorted a span {
}
.view-switch .view-list:before {
content: "\f163";
content: "\f163" / '';
}
.view-switch .view-excerpt:before {
content: "\f164";
content: "\f164" / '';
}
.view-switch .view-grid:before {
content: "\f509";
content: "\f509" / '';
}
.filter {
@@ -1314,8 +1309,10 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
white-space: nowrap;
}
.plugins .plugin-title img,
.plugins .plugin-title .dashicons {
.plugins .plugin-title .dashicons,
.plugins .plugin-title img.plugin-icon,
.plugins .plugin-title img.updates-table-screenshot {
float: right;
padding: 0 0 0 10px;
width: 64px;
@@ -1330,7 +1327,7 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
color: #c3c4c7;
}
#update-themes-table .plugin-title img,
#update-themes-table .plugin-title img.updates-table-screenshot,
#update-themes-table .plugin-title .dashicons {
width: 85px;
}
@@ -1413,18 +1410,17 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
.plugin-card .update-now:before {
color: #d63638;
content: "\f463";
content: "\f463" / '';
display: inline-block;
font: normal 20px/1 dashicons;
margin: -3px -2px 0 5px;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
vertical-align: middle;
}
.plugin-card .updating-message:before {
content: "\f463";
content: "\f463" / '';
animation: rotation 2s infinite linear;
}
@@ -1439,7 +1435,7 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
.plugin-card .updated-message:before {
color: #68de7c;
content: "\f147";
content: "\f147" / '';
}
.plugin-install-php #the-list {
@@ -1712,7 +1708,6 @@ div.action-links,
.plugin-card .column-compatibility span:before {
font: normal 20px/.5 dashicons;
speak: never;
display: inline-block;
padding: 0;
top: 4px;
@@ -1726,12 +1721,12 @@ div.action-links,
}
.plugin-card .column-compatibility .compatibility-incompatible:before {
content: "\f158";
content: "\f158" / '';
color: #d63638;
}
.plugin-card .column-compatibility .compatibility-compatible:before {
content: "\f147";
content: "\f147" / '';
color: #007017;
}
@@ -1739,7 +1734,7 @@ div.action-links,
margin: 20px 20px 0;
}
.plugin-icon {
.plugin-card .plugin-icon {
position: absolute;
top: 20px;
right: 20px;
@@ -2065,7 +2060,6 @@ div.action-links,
}
.row-actions {
margin-right: -8px;
margin-left: -8px;
padding-top: 4px;
}
@@ -2078,10 +2072,15 @@ div.action-links,
color: transparent;
}
.row-actions span {
font-size: 0;
}
.row-actions span a,
.row-actions span .button-link {
display: inline-block;
padding: 4px 8px;
padding: 4px 0 4px 16px;
font-size: 13px;
line-height: 1.5;
}
File diff suppressed because one or more lines are too long
+26 -27
View File
@@ -268,9 +268,8 @@ th .comment-grey-bubble {
}
th .comment-grey-bubble:before {
content: "\f101";
content: "\f101" / '';
font: normal 20px/.5 dashicons;
speak: never;
display: inline-block;
padding: 0;
top: 4px;
@@ -475,7 +474,6 @@ table.media .column-title .filename {
.sorting-indicator:before {
font: normal 20px/1 dashicons;
speak: never;
display: inline-block;
padding: 0;
top: -4px;
@@ -490,11 +488,11 @@ table.media .column-title .filename {
}
.sorting-indicator.asc:before {
content: "\f142";
content: "\f142" / '';
}
.sorting-indicator.desc:before {
content: "\f140";
content: "\f140" / '';
}
th.sorted.desc .sorting-indicator.desc:before {
@@ -554,16 +552,15 @@ th.sorted.desc:hover .sorting-indicator.asc:before {
display: block;
padding: 1px 2px 1px 0;
color: #3c434a; /* same as table headers sort arrows */
content: "\f140";
content: "\f140" / '';
font: normal 20px/1 dashicons;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
speak: never;
}
.wp-list-table .is-expanded .toggle-row:before {
content: "\f142";
content: "\f142" / '';
}
.check-column {
@@ -603,10 +600,9 @@ th.sorted.desc:hover .sorting-indicator.asc:before {
.locked-indicator-icon:before {
color: #8c8f94;
content: "\f160";
content: "\f160" / '';
display: inline-block;
font: normal 20px/1 dashicons;
speak: never;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -764,7 +760,6 @@ th.sorted a span {
color: #c3c4c7;
display: inline-block;
font: normal 20px/1 dashicons;
speak: never;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -780,15 +775,15 @@ th.sorted a span {
}
.view-switch .view-list:before {
content: "\f163";
content: "\f163" / '';
}
.view-switch .view-excerpt:before {
content: "\f164";
content: "\f164" / '';
}
.view-switch .view-grid:before {
content: "\f509";
content: "\f509" / '';
}
.filter {
@@ -1313,8 +1308,10 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
white-space: nowrap;
}
.plugins .plugin-title img,
.plugins .plugin-title .dashicons {
.plugins .plugin-title .dashicons,
.plugins .plugin-title img.plugin-icon,
.plugins .plugin-title img.updates-table-screenshot {
float: left;
padding: 0 10px 0 0;
width: 64px;
@@ -1329,7 +1326,7 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
color: #c3c4c7;
}
#update-themes-table .plugin-title img,
#update-themes-table .plugin-title img.updates-table-screenshot,
#update-themes-table .plugin-title .dashicons {
width: 85px;
}
@@ -1412,18 +1409,17 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
.plugin-card .update-now:before {
color: #d63638;
content: "\f463";
content: "\f463" / '';
display: inline-block;
font: normal 20px/1 dashicons;
margin: -3px 5px 0 -2px;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
vertical-align: middle;
}
.plugin-card .updating-message:before {
content: "\f463";
content: "\f463" / '';
animation: rotation 2s infinite linear;
}
@@ -1438,7 +1434,7 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
.plugin-card .updated-message:before {
color: #68de7c;
content: "\f147";
content: "\f147" / '';
}
.plugin-install-php #the-list {
@@ -1711,7 +1707,6 @@ div.action-links,
.plugin-card .column-compatibility span:before {
font: normal 20px/.5 dashicons;
speak: never;
display: inline-block;
padding: 0;
top: 4px;
@@ -1725,12 +1720,12 @@ div.action-links,
}
.plugin-card .column-compatibility .compatibility-incompatible:before {
content: "\f158";
content: "\f158" / '';
color: #d63638;
}
.plugin-card .column-compatibility .compatibility-compatible:before {
content: "\f147";
content: "\f147" / '';
color: #007017;
}
@@ -1738,7 +1733,7 @@ div.action-links,
margin: 20px 20px 0;
}
.plugin-icon {
.plugin-card .plugin-icon {
position: absolute;
top: 20px;
left: 20px;
@@ -2064,7 +2059,6 @@ div.action-links,
}
.row-actions {
margin-left: -8px;
margin-right: -8px;
padding-top: 4px;
}
@@ -2077,10 +2071,15 @@ div.action-links,
color: transparent;
}
.row-actions span {
font-size: 0;
}
.row-actions span a,
.row-actions span .button-link {
display: inline-block;
padding: 4px 8px;
padding: 4px 16px 4px 0;
font-size: 13px;
line-height: 1.5;
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+21 -23
View File
@@ -168,9 +168,9 @@
}
.media-item .filename {
padding: 14px 0;
padding: 14px 2px;
overflow: hidden;
margin-right: 6px;
margin-right: 4px;
}
.media-item .pinkynail {
@@ -355,10 +355,9 @@
#find-posts-close:before {
font: normal 20px/36px dashicons;
vertical-align: top;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f158";
content: "\f158" / '';
}
.find-box-buttons {
@@ -622,7 +621,7 @@ border color while dragging a file over the uploader drop area */
}
.upload-php .media-modal-close .media-modal-icon:before {
content: "\f335";
content: "\f335" / '';
font-size: 22px;
}
@@ -694,11 +693,11 @@ border color while dragging a file over the uploader drop area */
}
.edit-attachment-frame .edit-media-header .left:before {
content: "\f345";
content: "\f341" / '';
}
.edit-attachment-frame .edit-media-header .right:before {
content: "\f341";
content: "\f345" / '';
}
.edit-attachment-frame .edit-media-header [disabled],
@@ -902,6 +901,15 @@ border color while dragging a file over the uploader drop area */
display: block;
}
.imgedit-panel-active .imgedit-group-controls > .imgedit-crop-apply {
display: flex;
}
.imgedit-crop-apply {
gap: 4px;
flex-wrap: wrap;
}
.wp_attachment_holder .imgedit-wrap .image-editor {
float: left;
width: 250px;
@@ -972,20 +980,10 @@ border color while dragging a file over the uploader drop area */
padding: 1em 0 0;
}
.image-editor .imgedit-menu .button {
display: inline-block;
width: auto;
min-height: 28px;
font-size: 13px;
line-height: 2;
padding: 0 10px;
}
.imgedit-menu .button:after,
.imgedit-menu .button:before {
font: normal 16px/1 dashicons;
margin-left: 8px;
speak: never;
vertical-align: middle;
position: relative;
top: -2px;
@@ -1014,23 +1012,23 @@ border color while dragging a file over the uploader drop area */
}
.imgedit-crop:before {
content: "\f165";
content: "\f165" / '';
}
.imgedit-scale:before {
content: "\f211";
content: "\f211" / '';
}
.imgedit-rotate:before {
content: "\f167";
content: "\f167" / '';
}
.imgedit-undo:before {
content: "\f171";
content: "\f171" / '';
}
.imgedit-redo:before {
content: "\f172";
content: "\f172" / '';
}
.imgedit-crop-wrap {
@@ -1267,7 +1265,7 @@ audio, video {
.edit-attachment-frame textarea {
line-height: 1.5;
}
.wp_attachment_details label[for="content"] {
font-size: 14px;
line-height: 1.5;
+1 -1
View File
File diff suppressed because one or more lines are too long
+21 -23
View File
@@ -167,9 +167,9 @@
}
.media-item .filename {
padding: 14px 0;
padding: 14px 2px;
overflow: hidden;
margin-left: 6px;
margin-left: 4px;
}
.media-item .pinkynail {
@@ -354,10 +354,9 @@
#find-posts-close:before {
font: normal 20px/36px dashicons;
vertical-align: top;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f158";
content: "\f158" / '';
}
.find-box-buttons {
@@ -621,7 +620,7 @@ border color while dragging a file over the uploader drop area */
}
.upload-php .media-modal-close .media-modal-icon:before {
content: "\f335";
content: "\f335" / '';
font-size: 22px;
}
@@ -693,11 +692,11 @@ border color while dragging a file over the uploader drop area */
}
.edit-attachment-frame .edit-media-header .left:before {
content: "\f341";
content: "\f341" / '';
}
.edit-attachment-frame .edit-media-header .right:before {
content: "\f345";
content: "\f345" / '';
}
.edit-attachment-frame .edit-media-header [disabled],
@@ -901,6 +900,15 @@ border color while dragging a file over the uploader drop area */
display: block;
}
.imgedit-panel-active .imgedit-group-controls > .imgedit-crop-apply {
display: flex;
}
.imgedit-crop-apply {
gap: 4px;
flex-wrap: wrap;
}
.wp_attachment_holder .imgedit-wrap .image-editor {
float: right;
width: 250px;
@@ -971,20 +979,10 @@ border color while dragging a file over the uploader drop area */
padding: 1em 0 0;
}
.image-editor .imgedit-menu .button {
display: inline-block;
width: auto;
min-height: 28px;
font-size: 13px;
line-height: 2;
padding: 0 10px;
}
.imgedit-menu .button:after,
.imgedit-menu .button:before {
font: normal 16px/1 dashicons;
margin-right: 8px;
speak: never;
vertical-align: middle;
position: relative;
top: -2px;
@@ -1013,23 +1011,23 @@ border color while dragging a file over the uploader drop area */
}
.imgedit-crop:before {
content: "\f165";
content: "\f165" / '';
}
.imgedit-scale:before {
content: "\f211";
content: "\f211" / '';
}
.imgedit-rotate:before {
content: "\f167";
content: "\f167" / '';
}
.imgedit-undo:before {
content: "\f171";
content: "\f171" / '';
}
.imgedit-redo:before {
content: "\f172";
content: "\f172" / '';
}
.imgedit-crop-wrap {
@@ -1266,7 +1264,7 @@ audio, video {
.edit-attachment-frame textarea {
line-height: 1.5;
}
.wp_attachment_details label[for="content"] {
font-size: 14px;
line-height: 1.5;
+1 -1
View File
File diff suppressed because one or more lines are too long
+5 -6
View File
@@ -494,9 +494,8 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
top: 2px;
right: 2px;
color: #50575e;
content: "\f229";
content: "\f229" / '';
font: normal 18px/1 dashicons;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@@ -513,19 +512,19 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
}
.wp-slider .ui-slider-handle.from-handle:before {
content: "\f141";
content: "\f139" / '';
}
.wp-slider .ui-slider-handle.to-handle:before {
content: "\f139";
content: "\f141" / '';
}
.rtl .wp-slider .ui-slider-handle.from-handle:before {
content: "\f139";
content: "\f141" / '';
}
.rtl .wp-slider .ui-slider-handle.to-handle:before {
content: "\f141";
content: "\f139" / '';
left: -1px;
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+5 -6
View File
@@ -493,9 +493,8 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
top: 2px;
left: 2px;
color: #50575e;
content: "\f229";
content: "\f229" / '';
font: normal 18px/1 dashicons;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@@ -512,19 +511,19 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
}
.wp-slider .ui-slider-handle.from-handle:before {
content: "\f139";
content: "\f139" / '';
}
.wp-slider .ui-slider-handle.to-handle:before {
content: "\f141";
content: "\f141" / '';
}
.rtl .wp-slider .ui-slider-handle.from-handle:before {
content: "\f141";
content: "\f141" / '';
}
.rtl .wp-slider .ui-slider-handle.to-handle:before {
content: "\f139";
content: "\f139" / '';
right: -1px;
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+4 -4
View File
@@ -190,23 +190,23 @@ are styled in the Privacy section of edit.css */
.health-check-body .pass::before,
.health-check-body .good::before {
content: "\f147";
content: "\f147" / '';
color: #00a32a;
}
.health-check-body .warning::before {
content: "\f460";
content: "\f460" / '';
color: #dba617;
}
.health-check-body .info::before {
content: "\f348";
content: "\f348" / '';
color: #72aee6;
}
.health-check-body .fail::before,
.health-check-body .error::before {
content: "\f335";
content: "\f335" / '';
color: #d63638;
}
File diff suppressed because one or more lines are too long
+4 -4
View File
@@ -189,23 +189,23 @@ are styled in the Privacy section of edit.css */
.health-check-body .pass::before,
.health-check-body .good::before {
content: "\f147";
content: "\f147" / '';
color: #00a32a;
}
.health-check-body .warning::before {
content: "\f460";
content: "\f460" / '';
color: #dba617;
}
.health-check-body .info::before {
content: "\f348";
content: "\f348" / '';
color: #72aee6;
}
.health-check-body .fail::before,
.health-check-body .error::before {
content: "\f335";
content: "\f335" / '';
color: #d63638;
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+14 -25
View File
@@ -305,7 +305,7 @@ body.js .theme-browser.search-loading {
background: rgba(140, 143, 148, 0.1);
border-radius: 50%;
display: inline-block;
content: "\f132";
content: "\f132" / '';
-webkit-font-smoothing: antialiased;
font: normal 74px/115px dashicons;
width: 100px;
@@ -409,7 +409,7 @@ body.js .theme-browser.search-loading {
font: normal 22px/50px dashicons !important;
color: #787c82;
display: inline-block;
content: "\f335";
content: "\f335" / '';
font-weight: 300;
}
@@ -468,11 +468,11 @@ body.js .theme-browser.search-loading {
}
.theme-overlay .theme-header .left:before {
content: "\f345";
content: "\f341" / '';
}
.theme-overlay .theme-header .right:before {
content: "\f341";
content: "\f345" / '';
}
.theme-overlay .theme-wrap {
@@ -962,12 +962,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
}
.themes-php .wp-filter-search {
float: none;
clear: both;
right: 0;
left: 0;
width: 100%;
max-width: 280px;
}
.theme-install-php .wp-filter p.search-box {
@@ -1028,7 +1023,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
.theme-browser .theme .notice-success p:before {
color: #68de7c;
content: "\f147";
content: "\f147" / '';
display: inline-block;
font: normal 20px/1 'dashicons';
-webkit-font-smoothing: antialiased;
@@ -1523,7 +1518,7 @@ body.full-overlay-active {
.theme-install-overlay .close-full-overlay:before {
font: normal 22px/1 dashicons;
content: "\f335";
content: "\f335" / '';
position: relative;
top: 7px;
right: 13px;
@@ -1531,7 +1526,7 @@ body.full-overlay-active {
.theme-install-overlay .previous-theme:before {
font: normal 20px/1 dashicons;
content: "\f345";
content: "\f341" / '';
position: relative;
top: 6px;
right: 14px;
@@ -1539,7 +1534,7 @@ body.full-overlay-active {
.theme-install-overlay .next-theme:before {
font: normal 20px/1 dashicons;
content: "\f341";
content: "\f345" / '';
position: relative;
top: 6px;
right: 13px;
@@ -1625,10 +1620,9 @@ body.full-overlay-active {
.wp-full-overlay .collapse-sidebar-arrow:before {
display: block;
content: "\f148";
content: "\f148" / '';
background: #f0f0f1;
font: normal 20px/1 dashicons;
speak: never;
padding: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -1747,15 +1741,15 @@ body.full-overlay-active {
}
.wp-full-overlay-footer .devices .preview-desktop:before {
content: "\f472";
content: "\f472" / '';
}
.wp-full-overlay-footer .devices .preview-tablet:before {
content: "\f471";
content: "\f471" / '';
}
.wp-full-overlay-footer .devices .preview-mobile:before {
content: "\f470";
content: "\f470" / '';
}
@media screen and (max-width: 1024px) {
@@ -2014,13 +2008,8 @@ body.full-overlay-active {
.upload-plugin .wp-upload-form {
display: block;
}
}
@media aural {
.theme .notice:before,
.theme-info .updating-message:before,
.theme-info .updated-message:before,
.theme-install.updating-message:before {
speak: never;
:is(.upload-theme, .upload-plugin) .wp-upload-form input[type="submit"] {
margin-top: 10px;
}
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+14 -25
View File
@@ -304,7 +304,7 @@ body.js .theme-browser.search-loading {
background: rgba(140, 143, 148, 0.1);
border-radius: 50%;
display: inline-block;
content: "\f132";
content: "\f132" / '';
-webkit-font-smoothing: antialiased;
font: normal 74px/115px dashicons;
width: 100px;
@@ -408,7 +408,7 @@ body.js .theme-browser.search-loading {
font: normal 22px/50px dashicons !important;
color: #787c82;
display: inline-block;
content: "\f335";
content: "\f335" / '';
font-weight: 300;
}
@@ -467,11 +467,11 @@ body.js .theme-browser.search-loading {
}
.theme-overlay .theme-header .left:before {
content: "\f341";
content: "\f341" / '';
}
.theme-overlay .theme-header .right:before {
content: "\f345";
content: "\f345" / '';
}
.theme-overlay .theme-wrap {
@@ -961,12 +961,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
}
.themes-php .wp-filter-search {
float: none;
clear: both;
left: 0;
right: 0;
width: 100%;
max-width: 280px;
}
.theme-install-php .wp-filter p.search-box {
@@ -1027,7 +1022,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
.theme-browser .theme .notice-success p:before {
color: #68de7c;
content: "\f147";
content: "\f147" / '';
display: inline-block;
font: normal 20px/1 'dashicons';
-webkit-font-smoothing: antialiased;
@@ -1522,7 +1517,7 @@ body.full-overlay-active {
.theme-install-overlay .close-full-overlay:before {
font: normal 22px/1 dashicons;
content: "\f335";
content: "\f335" / '';
position: relative;
top: 7px;
left: 13px;
@@ -1530,7 +1525,7 @@ body.full-overlay-active {
.theme-install-overlay .previous-theme:before {
font: normal 20px/1 dashicons;
content: "\f341";
content: "\f341" / '';
position: relative;
top: 6px;
left: 14px;
@@ -1538,7 +1533,7 @@ body.full-overlay-active {
.theme-install-overlay .next-theme:before {
font: normal 20px/1 dashicons;
content: "\f345";
content: "\f345" / '';
position: relative;
top: 6px;
left: 13px;
@@ -1624,10 +1619,9 @@ body.full-overlay-active {
.wp-full-overlay .collapse-sidebar-arrow:before {
display: block;
content: "\f148";
content: "\f148" / '';
background: #f0f0f1;
font: normal 20px/1 dashicons;
speak: never;
padding: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -1746,15 +1740,15 @@ body.full-overlay-active {
}
.wp-full-overlay-footer .devices .preview-desktop:before {
content: "\f472";
content: "\f472" / '';
}
.wp-full-overlay-footer .devices .preview-tablet:before {
content: "\f471";
content: "\f471" / '';
}
.wp-full-overlay-footer .devices .preview-mobile:before {
content: "\f470";
content: "\f470" / '';
}
@media screen and (max-width: 1024px) {
@@ -2013,13 +2007,8 @@ body.full-overlay-active {
.upload-plugin .wp-upload-form {
display: block;
}
}
@media aural {
.theme .notice:before,
.theme-info .updating-message:before,
.theme-info .updated-message:before,
.theme-install.updating-message:before {
speak: never;
:is(.upload-theme, .upload-plugin) .wp-upload-form input[type="submit"] {
margin-top: 10px;
}
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -730,7 +730,7 @@ div#widgets-right .widget-top:hover,
}
.widgets-chooser .widgets-chooser-selected:before {
content: "\f147";
content: "\f147" / '';
display: block;
-webkit-font-smoothing: antialiased;
font: normal 26px/1 dashicons;
+1 -1
View File
File diff suppressed because one or more lines are too long

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