plugin updates

This commit is contained in:
Tony Volpe
2024-11-25 13:10:11 -05:00
parent 864fe717f9
commit 76d447655a
48 changed files with 1945 additions and 200 deletions

View File

@@ -53,6 +53,37 @@ 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="column">
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
<p>
<?php
printf(
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
_n(
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
16
),
'6.7.1',
'16'
);
?>
<?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.7.1' )
)
);
?>
</p>
</div>
</div>
<div class="about__section">
<div class="column">
<h2>

View File

@@ -2463,7 +2463,7 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
}
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before {
position: relative;
right: -1px
right: -1px;
}
.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down {

View File

@@ -2462,7 +2462,7 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
}
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before {
position: relative;
left: -1px
left: -1px;
}
.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down {

View File

@@ -554,7 +554,8 @@ body.trashing #publish-settings {
.15s border-color ease-in-out;
}
.accordion-section-title:has(button.accordion-trigger) {
.accordion-section-title:has(button.accordion-trigger),
#customize-controls .current-panel .control-section > h3.accordion-section-title:has(button.accordion-trigger) {
padding: 0;
}
@@ -562,9 +563,10 @@ body.trashing #publish-settings {
all: unset;
width: 100%;
height: 100%;
padding: 10px 14px 11px 10px;
padding: 10px 14px 11px 30px;
display: flex;
align-items: center;
box-sizing: border-box;
}
.accordion-section-title button.accordion-trigger:has(.menu-in-location) {
@@ -588,6 +590,7 @@ body.trashing #publish-settings {
#customize-outer-theme-controls .accordion-section-title:after {
content: "\f341";
color: #a7aaad;
pointer-events: none;
}
#customize-theme-controls .accordion-section-content,

File diff suppressed because one or more lines are too long

View File

@@ -553,7 +553,8 @@ body.trashing #publish-settings {
.15s border-color ease-in-out;
}
.accordion-section-title:has(button.accordion-trigger) {
.accordion-section-title:has(button.accordion-trigger),
#customize-controls .current-panel .control-section > h3.accordion-section-title:has(button.accordion-trigger) {
padding: 0;
}
@@ -561,9 +562,10 @@ body.trashing #publish-settings {
all: unset;
width: 100%;
height: 100%;
padding: 10px 10px 11px 14px;
padding: 10px 30px 11px 14px;
display: flex;
align-items: center;
box-sizing: border-box;
}
.accordion-section-title button.accordion-trigger:has(.menu-in-location) {
@@ -587,6 +589,7 @@ body.trashing #publish-settings {
#customize-outer-theme-controls .accordion-section-title:after {
content: "\f345";
color: #a7aaad;
pointer-events: none;
}
#customize-theme-controls .accordion-section-content,

File diff suppressed because one or more lines are too long

View File

@@ -270,11 +270,11 @@ p {
vertical-align: baseline;
}
.login .wp-login-logo {
.login h1 {
text-align: center;
}
.login .wp-login-logo a {
.login h1 a {
background-image: url(../images/w-logo-blue.png?ver=20131202);
background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
background-size: 84px;
@@ -324,13 +324,13 @@ p {
.login #nav a:hover,
.login #backtoblog a:hover,
.login .wp-login-logo a:hover {
.login h1 a:hover {
color: #135e96;
}
.login #nav a:focus,
.login #backtoblog a:focus,
.login .wp-login-logo a:focus {
.login h1 a:focus {
color: #043959;
}
@@ -391,7 +391,7 @@ body.interim-login {
margin: 5px auto 20px;
}
.interim-login.login .wp-login-logo a {
.interim-login.login h1 a {
width: auto;
}

File diff suppressed because one or more lines are too long

View File

@@ -269,11 +269,11 @@ p {
vertical-align: baseline;
}
.login .wp-login-logo {
.login h1 {
text-align: center;
}
.login .wp-login-logo a {
.login h1 a {
background-image: url(../images/w-logo-blue.png?ver=20131202);
background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
background-size: 84px;
@@ -323,13 +323,13 @@ p {
.login #nav a:hover,
.login #backtoblog a:hover,
.login .wp-login-logo a:hover {
.login h1 a:hover {
color: #135e96;
}
.login #nav a:focus,
.login #backtoblog a:focus,
.login .wp-login-logo a:focus {
.login h1 a:focus {
color: #043959;
}
@@ -390,7 +390,7 @@ body.interim-login {
margin: 5px auto 20px;
}
.interim-login.login .wp-login-logo a {
.interim-login.login h1 a {
width: auto;
}

File diff suppressed because one or more lines are too long

View File

@@ -319,7 +319,7 @@
$selected = 'selected';
}
$html += '<option ' + $selected + ' value="0">No Parent</option>';
$html += '<option ' + $selected + ' value="0">' + wp.i18n._x( 'No Parent', 'menu item without a parent in navigation menu' ) + '</option>';
$.each( menuItems, function() {
var menuItem = $(this),
@@ -364,7 +364,13 @@
if ( i == itemPosition ) {
$selected = 'selected';
}
$html += '<option ' + $selected + ' value="' + i + '">' + i + ' of ' + totalMenuItems + '</option>';
var itemString = wp.i18n.sprintf(
/* translators: 1: The current menu item number, 2: The total number of menu items. */
wp.i18n._x( '%1$s of %2$s', 'part of a total number of menu items' ),
i,
totalMenuItems
);
$html += '<option ' + $selected + ' value="' + i + '">' + itemString + '</option>';
}
} else {
@@ -380,7 +386,13 @@
if ( i == itemPosition ) {
$selected = 'selected';
}
$html += '<option ' + $selected + ' value="' + i + '">' + i + ' of ' + totalSubMenuItems + '</option>';
var submenuString = wp.i18n.sprintf(
/* translators: 1: The current submenu item number, 2: The total number of submenu items. */
wp.i18n._x( '%1$s of %2$s', 'part of a total number of menu items' ),
i,
totalSubMenuItems
);
$html += '<option ' + $selected + ' value="' + i + '">' + submenuString + '</option>';
}
}

File diff suppressed because one or more lines are too long

View File

@@ -659,8 +659,10 @@ jQuery( function($) {
'li.popular-category > label input[type="checkbox"]',
function() {
var t = $(this), c = t.is(':checked'), id = t.val();
if ( id && t.parents('#taxonomy-'+taxonomy).length )
$('#in-' + taxonomy + '-' + id + ', #in-popular-' + taxonomy + '-' + id).prop( 'checked', c );
if ( id && t.parents('#taxonomy-'+taxonomy).length ) {
$('input[id^="in-' + taxonomy + '-' + id + '"]').prop('checked', c);
$('input#in-popular-' + taxonomy + '-' + id).prop('checked', c);
}
}
);

File diff suppressed because one or more lines are too long