Media: Prevent hidden overflow on uploaded image names.
Allow the image upload notification to expand height and display the full image name when uploaded. Primarily effects mobile devices, where the available space for image names is narrow. Props sumitsingh. Fixes #54812. Built from https://develop.svn.wordpress.org/trunk@55091 git-svn-id: http://core.svn.wordpress.org/trunk@54624 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1eb631da4d
commit
8c310381f2
|
@ -192,7 +192,7 @@
|
|||
|
||||
.media-item .original {
|
||||
position: relative;
|
||||
height: 34px;
|
||||
min-height: 34px;
|
||||
}
|
||||
|
||||
.media-item .progress {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -191,7 +191,7 @@
|
|||
|
||||
.media-item .original {
|
||||
position: relative;
|
||||
height: 34px;
|
||||
min-height: 34px;
|
||||
}
|
||||
|
||||
.media-item .progress {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.2-alpha-55090';
|
||||
$wp_version = '6.2-alpha-55091';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue