Make WordPress Core

Ticket #49288: 49288.2.diff

File 49288.2.diff, 3.0 KB (added by xkon, 5 years ago)
  • src/js/_enqueues/admin/postbox.js

    diff --git a/src/js/_enqueues/admin/postbox.js b/src/js/_enqueues/admin/postbox.js
    index ff144777f9..e64503e9a2 100644
    a b  
    236236                                                .end();
    237237                                },
    238238                                opacity: 0.65,
     239                                start: function() {
     240                                        $( 'body' ).addClass( 'is-dragging-metaboxes' );
     241                                },
    239242                                stop: function() {
    240243                                        var $el = $( this );
    241244
     245                                        $( 'body' ).removeClass( 'is-dragging-metaboxes' );
     246
    242247                                        if ( $el.find( '#dashboard_browser_nag' ).is( ':visible' ) && 'dashboard_browser_nag' != this.firstChild.id ) {
    243248                                                $el.sortable('cancel');
    244249                                                return;
    245250                                        }
    246 
    247251                                        postboxes.save_order(page);
    248252                                },
    249253                                receive: function(e,ui) {
     
    348352                _mark_area : function() {
    349353                        var visible = $('div.postbox:visible').length, side = $('#post-body #side-sortables');
    350354
    351                         $( '#dashboard-widgets .meta-box-sortables:visible' ).each( function() {
     355                        $( '.meta-box-sortables:visible' ).each( function() {
    352356                                var t = $(this);
    353357
    354358                                if ( visible == 1 || t.children('.postbox:visible').length ) {
  • src/wp-admin/css/common.css

    diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
    index a8b8112b00..45294db98e 100644
    a b html.wp-toolbar { 
    20032003        height: 1em;
    20042004        width: 200px;
    20052005        text-align: center;
    2006         color: #ccc;
     2006        color: #606a73;
    20072007        font-size: 18px;
    2008         display: none;
     2008        display: block;
    20092009}
    20102010
    20112011.metabox-holder.columns-1 .postbox-container .empty-container,
    html.wp-toolbar { 
    20332033        min-height: 250px;
    20342034}
    20352035
     2036body.is-dragging-metaboxes .meta-box-sortables.empty-container {
     2037        border-color: #606a73;
     2038}
     2039
    20362040/* one column on the dash */
    20372041@media only screen and (max-width: 799px) {
    20382042        #wpbody-content .metabox-holder .postbox-container .empty-container {
    html.wp-toolbar { 
    20402044                height: 0;
    20412045                min-height: 0;
    20422046        }
     2047
     2048        .metabox-holder .postbox-container .empty-container:after {
     2049                display: none;
     2050        }
    20432051}
    20442052
    20452053.js .widget .widget-top,
  • src/wp-admin/css/dashboard.css

    diff --git a/src/wp-admin/css/dashboard.css b/src/wp-admin/css/dashboard.css
    index eac01008e8..1cf884b815 100644
    a b a.rsswidget { 
    11511151        .columns-prefs .columns-prefs-4 {
    11521152                display: none;
    11531153        }
    1154 
    1155         .metabox-holder .postbox-container .empty-container:after {
    1156                 display: block;
    1157         }
    11581154}
    11591155
    11601156/* three columns on the dash */
    a.rsswidget { 
    11811177        #dashboard-widgets #postbox-container-4 .empty-container:after {
    11821178                display: none;
    11831179        }
    1184 
    1185         .metabox-holder .postbox-container .empty-container:after {
    1186                 display: block;
    1187         }
    11881180}
    11891181
    11901182@media screen and (max-width: 870px) {
  • src/wp-admin/css/edit.css

    diff --git a/src/wp-admin/css/edit.css b/src/wp-admin/css/edit.css
    index bfe6dc7c1d..3f99ed9d57 100644
    a b body.post-new-php .submitbox .submitdelete { 
    151151        min-height: 50px;
    152152}
    153153
     154#post-body #advanced-sortables {
     155        min-height: 20px;
     156}
     157
    154158.postbox {
    155159        position: relative;
    156160        min-width: 255px;