diff --git a/src/js/_enqueues/admin/postbox.js b/src/js/_enqueues/admin/postbox.js
index 9789518b65..09979217d4 100644
a
|
b
|
|
341 | 341 | _mark_area : function() { |
342 | 342 | var visible = $('div.postbox:visible').length, side = $('#post-body #side-sortables'); |
343 | 343 | |
344 | | $( '#dashboard-widgets .meta-box-sortables:visible' ).each( function() { |
| 344 | $( '.meta-box-sortables:visible' ).each( function() { |
345 | 345 | var t = $(this); |
346 | 346 | |
347 | 347 | if ( visible == 1 || t.children('.postbox:visible').length ) { |
diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index a8b8112b00..9f6bf15dac 100644
a
|
b
|
html.wp-toolbar { |
2005 | 2005 | text-align: center; |
2006 | 2006 | color: #ccc; |
2007 | 2007 | font-size: 18px; |
2008 | | display: none; |
| 2008 | display: block; |
2009 | 2009 | } |
2010 | 2010 | |
2011 | 2011 | .metabox-holder.columns-1 .postbox-container .empty-container, |
… |
… |
html.wp-toolbar { |
2040 | 2040 | height: 0; |
2041 | 2041 | min-height: 0; |
2042 | 2042 | } |
| 2043 | |
| 2044 | .metabox-holder .postbox-container .empty-container:after { |
| 2045 | display: none; |
| 2046 | } |
2043 | 2047 | } |
2044 | 2048 | |
2045 | 2049 | .js .widget .widget-top, |
diff --git a/src/wp-admin/css/dashboard.css b/src/wp-admin/css/dashboard.css
index eac01008e8..1cf884b815 100644
a
|
b
|
a.rsswidget { |
1151 | 1151 | .columns-prefs .columns-prefs-4 { |
1152 | 1152 | display: none; |
1153 | 1153 | } |
1154 | | |
1155 | | .metabox-holder .postbox-container .empty-container:after { |
1156 | | display: block; |
1157 | | } |
1158 | 1154 | } |
1159 | 1155 | |
1160 | 1156 | /* three columns on the dash */ |
… |
… |
a.rsswidget { |
1181 | 1177 | #dashboard-widgets #postbox-container-4 .empty-container:after { |
1182 | 1178 | display: none; |
1183 | 1179 | } |
1184 | | |
1185 | | .metabox-holder .postbox-container .empty-container:after { |
1186 | | display: block; |
1187 | | } |
1188 | 1180 | } |
1189 | 1181 | |
1190 | 1182 | @media screen and (max-width: 870px) { |
diff --git a/src/wp-admin/css/edit.css b/src/wp-admin/css/edit.css
index 20d4c4d27a..14b19aa8c2 100644
a
|
b
|
body.post-new-php .submitbox .submitdelete { |
151 | 151 | min-height: 50px; |
152 | 152 | } |
153 | 153 | |
| 154 | #post-body #normal-sortables.empty-container { |
| 155 | margin-bottom: 20px; |
| 156 | } |
| 157 | |
154 | 158 | .postbox { |
155 | 159 | position: relative; |
156 | 160 | min-width: 255px; |
… |
… |
body.post-new-php .submitbox .submitdelete { |
159 | 163 | background: #fff; |
160 | 164 | } |
161 | 165 | |
| 166 | #poststuff .metabox-holder .postbox-container .empty-container { |
| 167 | height: 50px; |
| 168 | } |
| 169 | |
162 | 170 | #trackback_url { |
163 | 171 | width: 99%; |
164 | 172 | } |