Ticket #28330: 28330.4.patch
File 28330.4.patch, 2.0 KB (added by , 11 years ago) |
---|
-
src/wp-admin/js/wp-fullscreen.js
198 198 s.$dfwTitle = null; 199 199 } 200 200 201 $( '#fullscreen-overlay' ).css( 'background-color', s.editor.dom.getStyle( s.editor.getBody(), 'background-color', true ) );202 s.$dfwTitle.add( s.$editorContainer ).css( 'color', s.editor.dom.getStyle( s.editor.getBody(), 'color', true ) );203 204 201 api.ui.fade( 'show', 'showing', 'shown' ); 205 202 }; 206 203 … … 416 413 }); 417 414 418 415 ps.subscribe( 'hiding', function() { // This event occurs while the overlay blocks the DFW UI. 419 s.$dfwTitle.add( s.$editorContainer ).css( 'color', '' );420 421 416 $body.removeClass( 'wp-fullscreen-active' ); 422 417 423 418 if ( s.$dfwTitle ) { -
src/wp-includes/css/editor.css
1797 1797 .wp-fullscreen-active.wp-dfw-show-ui .wp-editor-container { 1798 1798 -webkit-transition-duration: 0.4s; 1799 1799 transition-duration: 0.4s; 1800 border-color: currentColor;1800 border-color: #ccc; 1801 1801 } 1802 1802 1803 1803 .fade-1000, … … 1846 1846 1847 1847 .wp-fullscreen-active.wp-dfw-touch .wp-fullscreen-title, 1848 1848 .wp-fullscreen-active.wp-dfw-touch .wp-editor-container { 1849 border-color: currentColor;1849 border-color: #ccc; 1850 1850 } 1851 1851 1852 1852 .wp-dfw-touch #wp-fullscreen-statusbar { -
src/wp-includes/js/tinymce/skins/wordpress/wp-content.css
36 36 37 37 /* DFW mode */ 38 38 html.wp-fullscreen, 39 html.wp-fullscreen body {39 html.wp-fullscreen body#tinymce { 40 40 width: auto; 41 41 max-width: none; 42 42 min-height: 0; 43 43 overflow: hidden; 44 color: #333; 45 background: transparent; 44 46 } 45 47 46 48 .aligncenter,