Make WordPress Core

Ticket #27438: 27438.diff

File 27438.diff, 1.5 KB (added by kovshenin, 11 years ago)
  • src/wp-admin/css/edit.css

     
    614614        text-align: center;
    615615}
    616616
    617 .wp-fullscreen-wrap .uploader-editor {
     617#wp-fullscreen-body .uploader-editor {
    618618        background: rgba( 0, 86, 132, 0.9 );
    619619        position: fixed;
    620620        z-index: 100050; /* above the editor toolbar */
    621621}
    622622
     623.wp-fullscreen-wrap .uploader-editor {
     624        opacity: 0;
     625}
     626
    623627.uploader-editor-content {
    624628        border: 1px dashed #fff;
    625629        position: absolute;
     
    629633        bottom: 10px;
    630634}
    631635
     636#wp-fullscreen-body .uploader-editor-content h3,
    632637#poststuff .uploader-editor-content h3 {
    633638        position: absolute;
    634639        top: 50%;
     
    640645        font-size: 40px;
    641646        color: #fff;
    642647        padding: 0;
     648        margin: 0;
    643649        display: none;
    644650}
    645651
     
    647653        background: rgba( 0, 86, 132, 0.9 );
    648654}
    649655
     656#wp-fullscreen-body .uploader-editor-content h3,
    650657#poststuff .uploader-editor.droppable h3 {
    651658        display: block;
    652659}
  • src/wp-includes/js/media-views.js

     
    35373537                        }
    35383538
    35393539                        media.View.prototype.render.apply( this, arguments );
    3540                         $( '.wp-editor-wrap' ).each( _.bind( this.attach, this ) );
     3540                        $( '.wp-editor-wrap, #wp-fullscreen-body' ).each( _.bind( this.attach, this ) );
    35413541                        return this;
    35423542                },
    35433543