Ticket #28592: 28592.patch
File 28592.patch, 1.0 KB (added by , 10 years ago) |
---|
-
src/wp-admin/css/admin-menu.css
612 612 613 613 614 614 /* Auto-folding of the admin menu */ 615 @media only screen and (max-width: 9 00px) {615 @media only screen and (max-width: 960px) { 616 616 .auto-fold #wpcontent, 617 617 .auto-fold #wpfooter { 618 618 margin-left: 36px; -
src/wp-admin/js/common.js
193 193 respWidth = Math.max( window.innerWidth, document.documentElement.clientWidth ); 194 194 } else { 195 195 // IE < 9 doesn't support @media CSS rules 196 respWidth = 9 01;196 respWidth = 961; 197 197 } 198 198 199 if ( respWidth && respWidth < 9 00 ) {199 if ( respWidth && respWidth < 960 ) { 200 200 if ( body.hasClass('auto-fold') ) { 201 201 body.removeClass('auto-fold').removeClass('folded'); 202 202 setUserSetting('unfold', 1);