Media: set the image editor spinner on the smallest possible area.
When using spinners as background images, the re-painted area should be the smallest possible one. See similar performance issue in #31196, #33311, #33322, and #34951. Fixes #35296. git-svn-id: https://develop.svn.wordpress.org/trunk@36162 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
59d442f921
commit
a12087bf0f
@ -875,16 +875,30 @@ border color while dragging a file over the uploader drop area */
|
||||
.imgedit-wait {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
background: #fff url(../images/spinner.gif) no-repeat center;
|
||||
-webkit-background-size: 20px 20px;
|
||||
background-size: 20px 20px;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
width: 100%;
|
||||
height: 500px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.imgedit-wait:before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin: -10px 0 0 -10px;
|
||||
background: transparent url(../images/spinner.gif) no-repeat center;
|
||||
-webkit-background-size: 20px 20px;
|
||||
background-size: 20px 20px;
|
||||
-webkit-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
}
|
||||
|
||||
.no-float {
|
||||
float: none;
|
||||
}
|
||||
@ -1093,7 +1107,7 @@ audio, video {
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
.imgedit-wait {
|
||||
.imgedit-wait:before {
|
||||
background-image: url(../images/spinner-2x.gif);
|
||||
}
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ var imageEdit = window.imageEdit = {
|
||||
var wait = $('#imgedit-wait-' + postid);
|
||||
|
||||
if ( toggle ) {
|
||||
wait.height( $('#imgedit-panel-' + postid).height() ).fadeIn('fast');
|
||||
wait.fadeIn( 'fast' );
|
||||
} else {
|
||||
wait.fadeOut('fast');
|
||||
}
|
||||
|
@ -1721,13 +1721,6 @@
|
||||
position: static;
|
||||
}
|
||||
|
||||
.media-modal .imgedit-wait {
|
||||
height: auto !important;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.media-modal .imgedit-wrap .imgedit-panel-content {
|
||||
padding: 16px;
|
||||
position: absolute;
|
||||
|
Loading…
Reference in New Issue
Block a user