Ticket #15580: 15580_loading_overlay.diff
File 15580_loading_overlay.diff, 1.8 KB (added by , 14 years ago) |
---|
-
wp-admin/css/ie.dev.css
463 463 .menu li.sortable-placeholder { 464 464 min-width:400px; 465 465 } 466 467 #loading-items { 468 filter:alpha(opacity=70); 469 } 470 No newline at end of file -
wp-admin/css/wp-admin.dev.css
4189 4189 #loading-items { 4190 4190 position: absolute; 4191 4191 z-index: 9999; 4192 padding: 10px 0; 4193 background-color: #fff; 4192 padding-top: 30px; 4193 background-color: #F8F7F3; 4194 opacity: 0.7; 4195 height: 100%; 4196 width: 100%; 4197 } 4198 #loading-items span { 4194 4199 font-weight: bold; 4195 4200 text-align: center; 4196 opacity: 0.5; 4201 background: url(../images/loading-lg.gif) no-repeat 50% top; 4202 line-height: 32px; 4203 display: block; 4204 text-indent: -9999px; 4197 4205 } 4198 4206 #howto { 4199 4207 font-size: 11px; -
wp-admin/js/list-table.dev.js
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-admin\images\loading-lg.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream
16 16 this.$tbody = $('#the-list, #the-comment-list'); 17 17 18 18 this.$overlay = $('<div id="loading-items">') 19 . html(listTableL10n.loading)19 .append($('<span>' + listTableL10n.loading + '</span>')) 20 20 .hide() 21 21 .prependTo($('body')); 22 22 },