Media: Use flex-start for full browser support.
The value of `start` is not fully supported by Opera Mini which has 1.01% usage. There is no material change in functionality with this change. Follow-up to [55919]. Props davidbaumwald, sabernhardt, khokansardar, devsahadat. Fixes #60876. Built from https://develop.svn.wordpress.org/trunk@57933 git-svn-id: http://core.svn.wordpress.org/trunk@57434 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
103d0deb89
commit
a7f59e981f
|
@ -1125,7 +1125,7 @@ border color while dragging a file over the uploader drop area */
|
||||||
.imgedit-panel-tools > .imgedit-menu {
|
.imgedit-panel-tools > .imgedit-menu {
|
||||||
display: flex;
|
display: flex;
|
||||||
column-gap: 4px;
|
column-gap: 4px;
|
||||||
align-items: start;
|
align-items: flex-start;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1124,7 +1124,7 @@ border color while dragging a file over the uploader drop area */
|
||||||
.imgedit-panel-tools > .imgedit-menu {
|
.imgedit-panel-tools > .imgedit-menu {
|
||||||
display: flex;
|
display: flex;
|
||||||
column-gap: 4px;
|
column-gap: 4px;
|
||||||
align-items: start;
|
align-items: flex-start;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.6-alpha-57932';
|
$wp_version = '6.6-alpha-57933';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue