Skip to content

Commit

Permalink
Recompile WordPress major and beta versions
Browse files Browse the repository at this point in the history
  • Loading branch information
deployment_bot committed Mar 5, 2024
1 parent dcebfb9 commit 3d7836d
Show file tree
Hide file tree
Showing 110 changed files with 934 additions and 493 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1596,10 +1596,8 @@ div.action-links,
display: none;
}

.plugin-card .plugin-dependencies {
background-color: #e5f5fa;
border-right: 3px solid #72aee6;
margin-bottom: .5em;
.plugin-card .notice.plugin-dependencies {
margin: auto 20px 20px;
padding: 15px;
}

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1595,10 +1595,8 @@ div.action-links,
display: none;
}

.plugin-card .plugin-dependencies {
background-color: #e5f5fa;
border-left: 3px solid #72aee6;
margin-bottom: .5em;
.plugin-card .notice.plugin-dependencies {
margin: auto 20px 20px;
padding: 15px;
}

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,10 @@ border color while dragging a file over the uploader drop area */
position: relative;
}

.post-type-attachment .wp-filter select {
margin: 0 0 0 6px;
}

/**
* Media Library grid view
*/
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,10 @@ border color while dragging a file over the uploader drop area */
position: relative;
}

.post-type-attachment .wp-filter select {
margin: 0 6px 0 0;
}

/**
* Media Library grid view
*/
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,7 @@ $( function() {
lastClicked = this;

// Toggle the "Select all" checkboxes depending if the other ones are all checked or not.
var unchecked = $(this).closest('tbody').find(':checkbox').filter(':visible:enabled').not(':checked');
var unchecked = $(this).closest('tbody').find('tr.iedit').find(':checkbox').filter(':visible:enabled').not(':checked');

/**
* Determines if all checkboxes are checked.
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1664,6 +1664,8 @@
$reorderNav = control.container.find( '.menu-item-reorder-nav' );
$reorderNav.find( '.menus-move-up, .menus-move-down, .menus-move-left, .menus-move-right' ).on( 'click', function() {
var moveBtn = $( this );
control.params.depth = control.getDepth();

moveBtn.focus();

var isMoveUp = moveBtn.is( '.menus-move-up' ),
Expand All @@ -1677,8 +1679,19 @@
control.moveDown();
} else if ( isMoveLeft ) {
control.moveLeft();
if ( 1 === control.params.depth ) {
control.container.find( '.is-submenu' ).hide();
} else {
control.container.find( '.is-submenu' ).show();
}
} else if ( isMoveRight ) {
control.moveRight();
control.params.depth += 1;
if ( 0 === control.params.depth ) {
control.container.find( '.is-submenu' ).hide();
} else {
control.container.find( '.is-submenu' ).show();
}
}

moveBtn.focus(); // Re-focus after the container was moved.
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ window.wp = window.wp || {};
$prev = $this.parent().prev().children( '.ntdelbutton' ),
$next = $this.parent().next().children( '.ntdelbutton' );

$( 'input#cb-select-all-1, input#cb-select-all-2' ).prop( 'checked', false );
$( 'table.widefat input[value="' + id + '"]' ).prop( 'checked', false );
$( '#_' + id ).parent().remove();
wp.a11y.speak( wp.i18n.__( 'Item removed.' ), 'assertive' );
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@
"fontWeight": "400",
"lineHeight": "1.55"
},
"css": ".wp-site-blocks *:focus{outline-width:2px;outline-style:solid}"
"css": ":where(.wp-site-blocks *:focus){outline-width:2px;outline-style:solid}"
},
"templateParts": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item,
#wpadminbar .shortlink-input {
line-height: 2;
height: 26px;
height: 1.625rem;
white-space: nowrap;
min-width: 140px;
}
Expand Down Expand Up @@ -448,11 +448,6 @@ html:lang(he-il) .rtl #wpadminbar * {
background: none;
}

#wpadminbar #wp-admin-bar-user-info a {
display: grid;
row-gap: 12px;
}

#wp-admin-bar-user-info .avatar {
position: absolute;
right: -72px;
Expand All @@ -469,7 +464,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar #wp-admin-bar-user-info span {
background: none;
padding: 0;
height: 18px;
height: 1.125rem;
}

#wpadminbar #wp-admin-bar-user-info .display-name,
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item,
#wpadminbar .shortlink-input {
line-height: 2;
height: 26px;
height: 1.625rem;
white-space: nowrap;
min-width: 140px;
}
Expand Down Expand Up @@ -447,11 +447,6 @@ html:lang(he-il) .rtl #wpadminbar * {
background: none;
}

#wpadminbar #wp-admin-bar-user-info a {
display: grid;
row-gap: 12px;
}

#wp-admin-bar-user-info .avatar {
position: absolute;
left: -72px;
Expand All @@ -468,7 +463,7 @@ html:lang(he-il) .rtl #wpadminbar * {
#wpadminbar #wp-admin-bar-user-info span {
background: none;
padding: 0;
height: 18px;
height: 1.125rem;
}

#wpadminbar #wp-admin-bar-user-info .display-name,
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
--wp-admin-border-width-focus:2px;
--wp-block-synced-color:#7a00df;
--wp-block-synced-color--rgb:122, 0, 223;
--wp-bound-block-color:#9747ff;
}
@media (min-resolution:192dpi){
:root{
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
--wp-admin-border-width-focus:2px;
--wp-block-synced-color:#7a00df;
--wp-block-synced-color--rgb:122, 0, 223;
--wp-bound-block-color:#9747ff;
}
@media (min-resolution:192dpi){
:root{
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
--wp-admin-border-width-focus:2px;
--wp-block-synced-color:#7a00df;
--wp-block-synced-color--rgb:122, 0, 223;
--wp-bound-block-color:#9747ff;
}
@media (min-resolution:192dpi){
:root{
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
--wp-admin-border-width-focus:2px;
--wp-block-synced-color:#7a00df;
--wp-block-synced-color--rgb:122, 0, 223;
--wp-bound-block-color:#9747ff;
}
@media (min-resolution:192dpi){
:root{
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
--wp-admin-border-width-focus:2px;
--wp-block-synced-color:#7a00df;
--wp-block-synced-color--rgb:122, 0, 223;
--wp-bound-block-color:#9747ff;
}
@media (min-resolution:192dpi){
:root{
Expand Down
Loading

0 comments on commit 3d7836d

Please sign in to comment.