Ticket #6517: 6517.diff
File 6517.diff, 2.2 KB (added by , 16 years ago) |
---|
-
wp-admin/css/media.css
91 91 max-height: 40px; 92 92 } 93 93 94 .filename { 95 display: none; 94 .filename.original { 95 z-index: 10; 96 position: absolute; 96 97 } 98 .crunching { 99 display: block; 100 line-height: 32px; 101 text-align: right; 102 margin-right: 5px; 103 } 97 104 button.dismiss { 98 105 position: absolute; 99 106 top: 5px; … … 216 223 position: relative; 217 224 min-height: 36px; 218 225 } 219 #media-upload.filename {226 .filename { 220 227 display: block; 221 228 line-height: 36px; 222 229 margin-left: 50px; -
wp-includes/js/swfupload/handlers.js
24 24 // Lengthen the progress bar 25 25 jQuery('#media-item-' + fileObj.id + ' .bar').width(620*bytesDone/bytesTotal); 26 26 27 if ( bytesDone == bytesTotal )28 jQuery('#media-item-' + fileObj.id + ' .bar').html('<strong style="display: block; padding-top: 9px; padding-left: 1em;">' + swfuploadL10n.crunching + '</strong>');27 if ( bytesDone == bytesTotal ) 28 jQuery('#media-item-' + fileObj.id + ' .bar').html('<strong class="crunching">' + swfuploadL10n.crunching + '</strong>'); 29 29 } 30 30 31 31 function prepareMediaItem(fileObj, serverData) { -
wp-includes/script-loader.php
87 87 'is_lighttpd_before_150' => is_lighttpd_before_150(), 88 88 ) ); 89 89 $this->add( 'swfupload-queue', '/wp-includes/js/swfupload/plugins/swfupload.queue.js', array('swfupload'), '2.0.2'); 90 $this->add( 'swfupload-handlers', '/wp-includes/js/swfupload/handlers.js', array('swfupload'), '2.0.2-200803 01');90 $this->add( 'swfupload-handlers', '/wp-includes/js/swfupload/handlers.js', array('swfupload'), '2.0.2-20080331'); 91 91 // these error messages came from the sample swfupload js, they might need changing. 92 92 $this->localize( 'swfupload-handlers', 'swfuploadL10n', array( 93 93 'queue_limit_exceeded' => __('You have attempted to queue too many files.'),