Ticket #27438: 27438.diff
File 27438.diff, 1.5 KB (added by , 11 years ago) |
---|
-
src/wp-admin/css/edit.css
614 614 text-align: center; 615 615 } 616 616 617 .wp-fullscreen-wrap.uploader-editor {617 #wp-fullscreen-body .uploader-editor { 618 618 background: rgba( 0, 86, 132, 0.9 ); 619 619 position: fixed; 620 620 z-index: 100050; /* above the editor toolbar */ 621 621 } 622 622 623 .wp-fullscreen-wrap .uploader-editor { 624 opacity: 0; 625 } 626 623 627 .uploader-editor-content { 624 628 border: 1px dashed #fff; 625 629 position: absolute; … … 629 633 bottom: 10px; 630 634 } 631 635 636 #wp-fullscreen-body .uploader-editor-content h3, 632 637 #poststuff .uploader-editor-content h3 { 633 638 position: absolute; 634 639 top: 50%; … … 640 645 font-size: 40px; 641 646 color: #fff; 642 647 padding: 0; 648 margin: 0; 643 649 display: none; 644 650 } 645 651 … … 647 653 background: rgba( 0, 86, 132, 0.9 ); 648 654 } 649 655 656 #wp-fullscreen-body .uploader-editor-content h3, 650 657 #poststuff .uploader-editor.droppable h3 { 651 658 display: block; 652 659 } -
src/wp-includes/js/media-views.js
3537 3537 } 3538 3538 3539 3539 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 ) ); 3541 3541 return this; 3542 3542 }, 3543 3543