Skip to content

Commit

Permalink
Update to WordPress 6.7.1. For more information, see https://wordpres…
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantheon Automation committed Nov 21, 2024
1 parent c0c901c commit 291a13f
Show file tree
Hide file tree
Showing 36 changed files with 225 additions and 85 deletions.
31 changes: 31 additions & 0 deletions wp-admin/about.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,37 @@
<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>
Expand Down
2 changes: 1 addition & 1 deletion wp-admin/css/common-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion wp-admin/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
7 changes: 5 additions & 2 deletions wp-admin/css/customize-controls-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -554,17 +554,19 @@ 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;
}

.accordion-section-title button.accordion-trigger {
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) {
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion wp-admin/css/customize-controls-rtl.min.css

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions wp-admin/css/customize-controls.css
Original file line number Diff line number Diff line change
Expand Up @@ -553,17 +553,19 @@ 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;
}

.accordion-section-title button.accordion-trigger {
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) {
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion wp-admin/css/customize-controls.min.css

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions wp-admin/css/login-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion wp-admin/css/login-rtl.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions wp-admin/css/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down
Loading

0 comments on commit 291a13f

Please sign in to comment.