Skip to content

Commit

Permalink
Refresh WordPress Nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
deployment_bot committed Jun 3, 2024
1 parent caca49b commit 46f8b3a
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,8 @@
margin-left: 10px;
}

.media-item-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
}

.media-item .attachment-tools {
display: flex;
justify-content: flex-end;
align-items: center;
}

Expand Down Expand Up @@ -191,15 +185,10 @@
display: none;
}

.media-item .original {
position: relative;
min-height: 34px;
}

.media-item .progress {
float: left;
display: inline-block;
height: 22px;
margin: 7px 6px;
margin: 0 6px 7px;
width: 200px;
line-height: 2em;
padding: 0;
Expand Down Expand Up @@ -1437,3 +1426,17 @@ audio, video {
max-width: 100%;
}
}

@media only screen and (max-width: 375px) {
.media-item .attachment-tools {
align-items: baseline;
}
.media-item .edit-attachment.copy-to-clipboard-container {
flex-direction: column;
}

.copy-to-clipboard-container .success {
line-height: normal;
margin-top: 10px;
}
}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,8 @@
margin-right: 10px;
}

.media-item-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
}

.media-item .attachment-tools {
display: flex;
justify-content: flex-end;
align-items: center;
}

Expand Down Expand Up @@ -190,15 +184,10 @@
display: none;
}

.media-item .original {
position: relative;
min-height: 34px;
}

.media-item .progress {
float: right;
display: inline-block;
height: 22px;
margin: 7px 6px;
margin: 0 6px 7px;
width: 200px;
line-height: 2em;
padding: 0;
Expand Down Expand Up @@ -1436,3 +1425,17 @@ audio, video {
max-width: 100%;
}
}

@media only screen and (max-width: 375px) {
.media-item .attachment-tools {
align-items: baseline;
}
.media-item .edit-attachment.copy-to-clipboard-container {
flex-direction: column;
}

.copy-to-clipboard-container .success {
line-height: normal;
margin-top: 10px;
}
}

Large diffs are not rendered by default.

Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ function fileQueued( fileObj ) {
jQuery( '<div class="media-item">' )
.attr( 'id', 'media-item-' + fileObj.id )
.addClass( 'child-of-' + postid )
.append( '<div class="progress"><div class="percent">0%</div><div class="bar"></div></div>',
jQuery( '<div class="filename original">' ).text( ' ' + fileObj.name ) )
.append( jQuery( '<div class="filename original">' ).text( ' ' + fileObj.name ),
'<div class="progress"><div class="percent">0%</div><div class="bar"></div></div>' )
.appendTo( jQuery( '#media-items' ) );

// Disable submit.
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function getWordPressModuleDetails(wpVersion: string = "6.5"): { size: nu
case 'nightly':
/** @ts-ignore */
return {
size: 4939562,
size: 4941463,
url: url_nightly,
};

Expand Down
Binary file not shown.

0 comments on commit 46f8b3a

Please sign in to comment.