Make WordPress Core

Ticket #15580: 15580_loading_overlay.diff

File 15580_loading_overlay.diff, 1.8 KB (added by batmoo, 14 years ago)

Clean up loading overlay

  • wp-admin/css/ie.dev.css

     
    463463.menu li.sortable-placeholder {
    464464        min-width:400px;
    465465}
     466
     467#loading-items {
     468        filter:alpha(opacity=70);
     469}
     470 No newline at end of file
  • wp-admin/css/wp-admin.dev.css

     
    41894189#loading-items {
    41904190        position: absolute;
    41914191        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 {
    41944199        font-weight: bold;
    41954200        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;
    41974205}
    41984206#howto {
    41994207        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
    
     
    1616                this.$tbody = $('#the-list, #the-comment-list');
    1717
    1818                this.$overlay = $('<div id="loading-items">')
    19                         .html(listTableL10n.loading)
     19                        .append($('<span>' + listTableL10n.loading + '</span>'))
    2020                        .hide()
    2121                        .prependTo($('body'));
    2222        },