Media: Revert [46354] preventing bad clipping of text in image details page.

See #47115.

Built from https://develop.svn.wordpress.org/trunk@46355


git-svn-id: http://core.svn.wordpress.org/trunk@46154 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
antpb 2019-09-30 17:12:59 +00:00
parent 7c8028febf
commit 247e7eb7d5
19 changed files with 25 additions and 68 deletions

View File

@ -655,12 +655,6 @@ form#tags-filter {
margin-bottom: 20px;
}
.wp_attachment_details .attachment-content-description {
margin-top: 0.5385em;
display: inline-block;
min-height: 1.6923em;
}
/* Suggested text for privacy policy */
.wp-privacy-policy-guide {
max-width: 1000px;

File diff suppressed because one or more lines are too long

View File

@ -655,12 +655,6 @@ form#tags-filter {
margin-bottom: 20px;
}
.wp_attachment_details .attachment-content-description {
margin-top: 0.5385em;
display: inline-block;
min-height: 1.6923em;
}
/* Suggested text for privacy policy */
.wp-privacy-policy-guide {
max-width: 1000px;

File diff suppressed because one or more lines are too long

View File

@ -800,11 +800,6 @@ border color while dragging a file over the uploader drop area */
margin-bottom: 5px;
}
.attachment-details .setting + .description a:focus {
/* Only visible in Windows High Contrast mode */
outline: 1px solid transparent;
}
.wp_attachment_details .attachment-alt-text-description {
margin-top: 5px;
}
@ -1119,14 +1114,10 @@ span.imgedit-scale-warn {
padding: 10px;
}
.imgedit-settings .imgedit-original-dimensions {
display: inline-block;
}
.imgedit-settings .imgedit-scale input[type="text"],
.imgedit-settings .imgedit-crop-ratio input[type="text"],
.imgedit-settings .imgedit-crop-sel input[type="text"] {
width: 80px;
width: 50px;
font-size: 14px;
padding: 5px 8px;
}
@ -1139,11 +1130,6 @@ span.imgedit-scale-warn {
color: #444;
}
.imgedit-settings .imgedit-scale-button-wrapper {
margin-top: 0.3077em;
display: block;
}
.imgedit-settings .imgedit-scale .button {
margin-bottom: 0;
}

File diff suppressed because one or more lines are too long

View File

@ -800,11 +800,6 @@ border color while dragging a file over the uploader drop area */
margin-bottom: 5px;
}
.attachment-details .setting + .description a:focus {
/* Only visible in Windows High Contrast mode */
outline: 1px solid transparent;
}
.wp_attachment_details .attachment-alt-text-description {
margin-top: 5px;
}
@ -1119,14 +1114,10 @@ span.imgedit-scale-warn {
padding: 10px;
}
.imgedit-settings .imgedit-original-dimensions {
display: inline-block;
}
.imgedit-settings .imgedit-scale input[type="text"],
.imgedit-settings .imgedit-crop-ratio input[type="text"],
.imgedit-settings .imgedit-crop-sel input[type="text"] {
width: 80px;
width: 50px;
font-size: 14px;
padding: 5px 8px;
}
@ -1139,11 +1130,6 @@ span.imgedit-scale-warn {
color: #444;
}
.imgedit-settings .imgedit-scale-button-wrapper {
margin-top: 0.3077em;
display: block;
}
.imgedit-settings .imgedit-scale .button {
margin-bottom: 0;
}

File diff suppressed because one or more lines are too long

View File

@ -38,9 +38,9 @@ function wp_image_editor( $post_id, $msg = false ) {
if ( $msg ) {
if ( isset( $msg->error ) ) {
$note = "<div class='error' tabindex='-1' role='alert'><p>$msg->error</p></div>";
$note = "<div class='error'><p>$msg->error</p></div>";
} elseif ( isset( $msg->msg ) ) {
$note = "<div class='updated' tabindex='-1' role='alert'><p>$msg->msg</p></div>";
$note = "<div class='updated'><p>$msg->msg</p></div>";
}
}
@ -62,7 +62,7 @@ function wp_image_editor( $post_id, $msg = false ) {
printf(
/* translators: %s: Image width and height in pixels. */
__( 'Original dimensions %s' ),
'<span class="imgedit-original-dimensions">' . $meta['width'] . ' &times; ' . $meta['height'] . '</span>'
$meta['width'] . ' &times; ' . $meta['height']
);
?>
</p>
@ -78,7 +78,7 @@ function wp_image_editor( $post_id, $msg = false ) {
<label for="imgedit-scale-height-<?php echo $post_id; ?>" class="screen-reader-text"><?php _e( 'scale height' ); ?></label>
<input type="text" id="imgedit-scale-height-<?php echo $post_id; ?>" onkeyup="imageEdit.scaleChanged(<?php echo $post_id; ?>, 0, this)" onblur="imageEdit.scaleChanged(<?php echo $post_id; ?>, 0, this)" value="<?php echo isset( $meta['height'] ) ? $meta['height'] : 0; ?>" />
<span class="imgedit-scale-warn" id="imgedit-scale-warn-<?php echo $post_id; ?>">!</span>
<div class="imgedit-scale-button-wrapper"><input id="imgedit-scale-button" type="button" onclick="imageEdit.action(<?php echo "$post_id, '$nonce'"; ?>, 'scale')" class="button button-primary" value="<?php esc_attr_e( 'Scale' ); ?>" /></div>
<input id="imgedit-scale-button" type="button" onclick="imageEdit.action(<?php echo "$post_id, '$nonce'"; ?>, 'scale')" class="button button-primary" value="<?php esc_attr_e( 'Scale' ); ?>" />
</div>
</fieldset>
@ -235,7 +235,7 @@ function wp_image_editor( $post_id, $msg = false ) {
<input type="hidden" id="imgedit-y-<?php echo $post_id; ?>" value="<?php echo isset( $meta['height'] ) ? $meta['height'] : 0; ?>" />
<div id="imgedit-crop-<?php echo $post_id; ?>" class="imgedit-crop-wrap">
<img id="image-preview-<?php echo $post_id; ?>" src="<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>?action=imgedit-preview&amp;_ajax_nonce=<?php echo $nonce; ?>&amp;postid=<?php echo $post_id; ?>&amp;rand=<?php echo rand( 1, 99999 ); ?>" alt="" />
<img id="image-preview-<?php echo $post_id; ?>" onload="imageEdit.imgLoaded('<?php echo $post_id; ?>')" src="<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>?action=imgedit-preview&amp;_ajax_nonce=<?php echo $nonce; ?>&amp;postid=<?php echo $post_id; ?>&amp;rand=<?php echo rand( 1, 99999 ); ?>" alt="" />
</div>
<div class="imgedit-submit">

View File

@ -3207,7 +3207,7 @@ function edit_form_image_editor( $post ) {
?>
<label for="attachment_content" class="attachment-content-description"><strong><?php _e( 'Description' ); ?></strong>
<label for="attachment_content"><strong><?php _e( 'Description' ); ?></strong>
<?php
if ( preg_match( '#^(audio|video)/#', $post->post_mime_type ) ) {

View File

@ -503,7 +503,7 @@
// If a response is returned, close the editor and show an error.
if ( ret.error ) {
$('#imgedit-response-' + postid).html('<div class="error" role="alert"><p>' + ret.error + '</p></div>');
$('#imgedit-response-' + postid).html('<div class="error"><p>' + ret.error + '</p></div>');
imageEdit.close(postid);
return;
}
@ -517,7 +517,7 @@
}
if ( ret.msg ) {
$('#imgedit-response-' + postid).html('<div class="updated" role="alert"><p>' + ret.msg + '</p></div>');
$('#imgedit-response-' + postid).html('<div class="updated"><p>' + ret.msg + '</p></div>');
}
if ( self._view ) {

File diff suppressed because one or more lines are too long

View File

@ -1322,7 +1322,7 @@ i.mce-i-wp_code:before {
.wp-core-ui .quicktags-toolbar input.button.button-small {
/* .button-small is normally 11px, but a bit too small for these buttons. */
font-size: 12px;
min-height: 26px;
height: 26px;
line-height: 2;
}
}

File diff suppressed because one or more lines are too long

View File

@ -1322,7 +1322,7 @@ i.mce-i-wp_code:before {
.wp-core-ui .quicktags-toolbar input.button.button-small {
/* .button-small is normally 11px, but a bit too small for these buttons. */
font-size: 12px;
min-height: 26px;
height: 26px;
line-height: 2;
}
}

File diff suppressed because one or more lines are too long

View File

@ -3249,8 +3249,6 @@ Select = MediaFrame.extend(/** @lends wp.media.view.MediaFrame.Select.prototype
* Create the default states on the frame.
*/
createStates: function() {
console.log("test");
this.on( 'content:render:edit-image', this.editState, this );
var options = this.options;
if ( this.options.states ) {
@ -3265,8 +3263,7 @@ Select = MediaFrame.extend(/** @lends wp.media.view.MediaFrame.Select.prototype
multiple: options.multiple,
title: options.title,
priority: 20
}),
new wp.media.controller.EditImage( { model: this.options.editImage } ),
})
]);
},

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3-beta1-46354';
$wp_version = '5.3-beta1-46355';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.