Make WordPress Core

Changeset 20293


Ignore:
Timestamp:
03/28/2012 02:10:19 AM (13 years ago)
Author:
azaozz
Message:

Don't show dashed border on empty postbox containers under the editor, see #20015

Location:
trunk/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/wp-admin.dev.css

    r20282 r20293  
    18361836
    18371837.postbox-container .meta-box-sortables {
    1838     min-height: 50px;
    18391838    -moz-box-sizing: border-box;
    18401839    -webkit-box-sizing: border-box;
     
    18481847}
    18491848
    1850 .metabox-holder .postbox-container .empty-container {
     1849.metabox-holder .postbox-container .empty-container,
     1850#post-body.columns-2 #side-sortables:empty {
    18511851    border: 3px dashed #CCCCCC;
    18521852    height: 250px;
     
    18891889}
    18901890
     1891#post-body.columns-2 #side-sortables {
     1892    min-height: 250px;
     1893}
     1894
    18911895/* one column on the dash */
    1892 @media only screen and (max-width: 768px) {
     1896@media only screen and (max-width: 799px) {
    18931897    #wpbody-content #dashboard-widgets .postbox-container {
    18941898        width: 100%;
     
    19031907
    19041908/* two columns on the dash, but keep the setting if one is selected */
    1905 @media only screen and (min-width: 768px) and (max-width: 1200px) {
     1909@media only screen and (min-width: 800px) and (max-width: 1200px) {
    19061910    #wpbody-content #dashboard-widgets .postbox-container {
    19071911        width: 49.5%;
    19081912    }
    1909    
     1913
    19101914    #wpbody-content #dashboard-widgets #postbox-container-2,
    19111915    #wpbody-content #dashboard-widgets #postbox-container-3,
     
    19141918        width: 50.5%;
    19151919    }
    1916    
    1917     #wpbody-content .metabox-holder .postbox-container .empty-container,
    1918     #wpbody-content #postbox-container-3 .empty-container,
    1919     #wpbody-content #postbox-container-4 .empty-container {
     1920
     1921    #dashboard-widgets.metabox-holder .postbox-container .empty-container,
     1922    #dashboard-widgets #postbox-container-3 .empty-container,
     1923    #dashboard-widgets #postbox-container-4 .empty-container {
    19201924        border: 0 none;
    19211925        height: 0;
    19221926        min-height: 0;
    19231927    }
    1924    
     1928
    19251929    #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
    19261930        width: 100%;
     
    19461950
    19471951/* one column on the post write/edit screen */
    1948 @media only screen and (max-width: 1024px) {
     1952@media only screen and (max-width: 1025px) {
    19491953    #wpbody-content #poststuff #post-body {
    19501954        margin: 0;
    19511955    }
    1952    
     1956
    19531957    #wpbody-content #post-body.columns-2 #postbox-container-1 {
    19541958        margin-right: 0;
    19551959        width: 100%;
     1960    }
     1961
     1962    #poststuff #postbox-container-1 .empty-container,
     1963    #poststuff #postbox-container-1 #side-sortables:empty {
     1964        border: 0 none;
     1965        height: 0;
     1966        min-height: 0;
     1967    }
     1968
     1969    #poststuff #post-body.columns-2 #side-sortables {
     1970        min-height: 0;
    19561971    }
    19571972
     
    21212136
    21222137.welcome-panel .welcome-panel-close:before {
    2123     background: url('../images/xit.gif') 0 17% no-repeat;
    2124     content: ' ';
    2125     height: 100%;
    2126     width: 10px;
    2127     left: -12px;
    2128     position: absolute;
     2138    background: url('../images/xit.gif') 0 17% no-repeat;
     2139    content: ' ';
     2140    height: 100%;
     2141    width: 10px;
     2142    left: -12px;
     2143    position: absolute;
    21292144}
    21302145
    21312146.welcome-panel .welcome-panel-close:hover:before {
    2132     background-position: 100% 17%;
     2147    background-position: 100% 17%;
    21332148}
    21342149
     
    35823597.media-item .progress {
    35833598    float: right;
    3584     height: 22px;
    3585     margin: 6px 10px 0 0;
    3586     width: 200px;
     3599    height: 22px;
     3600    margin: 6px 10px 0 0;
     3601    width: 200px;
    35873602    line-height: 2em;
    35883603    padding: 0;
     
    46714686.about-wrap div.updated,
    46724687.about-wrap div.error {
    4673     display: none !important;
     4688    display: none !important;
    46744689}
    46754690
  • trunk/wp-admin/js/postbox.dev.js

    r20272 r20293  
    130130
    131131        _mark_area : function() {
    132             var visible = $('div.postbox:visible').length;
     132            var visible = $('div.postbox:visible').length, side = $('#post-body #side-sortables');
    133133
    134             $('#post-body .meta-box-sortables:visible, #dashboard-widgets .meta-box-sortables:visible').not('#advanced-sortables').each(function(n, el){
     134            $('#dashboard-widgets .meta-box-sortables:visible').each(function(n, el){
    135135                var t = $(this);
    136136
     
    140140                    t.addClass('empty-container');
    141141            });
     142
     143            if ( side.length ) {
     144                if ( side.children('.postbox:visible').length )
     145                    side.removeClass('empty-container');
     146                else if ( $('#postbox-container-1').css('width') == '280px' )
     147                    side.addClass('empty-container');
     148            }
    142149        },
    143150
Note: See TracChangeset for help on using the changeset viewer.