From 302d50e62c86d668664623cca2917c5768ab42c8 Mon Sep 17 00:00:00 2001 From: Anthony Burchell Date: Tue, 22 Jun 2021 04:25:16 +0000 Subject: [PATCH] Media: Improve upload page media item layout on smaller screens. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This allows smaller screens to wrap error messages and other uploader media item elements in a more readable way. Props joedolson sabernhardt, Presskopp. See #51754. git-svn-id: https://develop.svn.wordpress.org/trunk@51195 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/async-upload.php | 56 ++++++++++++++++++----------------- src/wp-admin/css/media.css | 11 +++++-- 2 files changed, 38 insertions(+), 29 deletions(-) diff --git a/src/wp-admin/async-upload.php b/src/wp-admin/async-upload.php index 6e04e0a19a..d152673f69 100644 --- a/src/wp-admin/async-upload.php +++ b/src/wp-admin/async-upload.php @@ -49,35 +49,37 @@ if ( isset( $_REQUEST['attachment_id'] ) && (int) $_REQUEST['attachment_id'] && switch ( $_REQUEST['fetch'] ) { case 3: ?> -
- '; - } +
+
+ '; + } - // Title shouldn't ever be empty, but use filename just in case. - $file = get_attached_file( $post->ID ); - $file_url = wp_get_attachment_url( $post->ID ); - $title = $post->post_title ? $post->post_title : wp_basename( $file ); - ?> -
- - + // Title shouldn't ever be empty, but use filename just in case. + $file = get_attached_file( $post->ID ); + $file_url = wp_get_attachment_url( $post->ID ); + $title = $post->post_title ? $post->post_title : wp_basename( $file ); + ?> +
+ + +
+
+
+ + + + + ' . _x( 'Edit', 'media item' ) . ''; + } else { + echo '' . _x( 'Success', 'media item' ) . ''; + } + ?>
-
-
- - - - - ' . _x( 'Edit', 'media item' ) . ''; - } else { - echo '' . _x( 'Success', 'media item' ) . ''; - } - ?>