Ticket #35296: 35296.patch
File 35296.patch, 2.0 KB (added by , 9 years ago) |
---|
-
src/wp-admin/css/media.css
875 875 .imgedit-wait { 876 876 position: absolute; 877 877 top: 0; 878 b ackground: #fff url(../images/spinner.gif) no-repeat center;879 -webkit-background-size: 20px 20px;880 background -size: 20px 20px;878 bottom: 0; 879 width: 100%; 880 background: #fff; 881 881 opacity: 0.7; 882 882 filter: alpha(opacity=70); 883 width: 100%;884 height: 500px;885 883 display: none; 886 884 } 887 885 886 .imgedit-wait:before { 887 content: ""; 888 display: block; 889 width: 20px; 890 height: 20px; 891 position: absolute; 892 left: 50%; 893 top: 50%; 894 margin: -10px 0 0 -10px; 895 background: transparent url(../images/spinner.gif) no-repeat center; 896 -webkit-background-size: 20px 20px; 897 background-size: 20px 20px; 898 -webkit-transform: translateZ(0); 899 transform: translateZ(0); 900 } 901 888 902 .no-float { 889 903 float: none; 890 904 } … … 1093 1107 @media print, 1094 1108 (-webkit-min-device-pixel-ratio: 1.25), 1095 1109 (min-resolution: 120dpi) { 1096 .imgedit-wait {1110 .imgedit-wait:before { 1097 1111 background-image: url(../images/spinner-2x.gif); 1098 1112 } 1099 1113 } -
src/wp-admin/js/image-edit.js
56 56 var wait = $('#imgedit-wait-' + postid); 57 57 58 58 if ( toggle ) { 59 wait. height( $('#imgedit-panel-' + postid).height() ).fadeIn('fast');59 wait.fadeIn( 'fast' ); 60 60 } else { 61 61 wait.fadeOut('fast'); 62 62 } -
src/wp-includes/css/media-views.css
1721 1721 position: static; 1722 1722 } 1723 1723 1724 .media-modal .imgedit-wait {1725 height: auto !important;1726 right: 0;1727 bottom: 0;1728 left: 0;1729 }1730 1731 1724 .media-modal .imgedit-wrap .imgedit-panel-content { 1732 1725 padding: 16px; 1733 1726 position: absolute;