Changeset 29533
- Timestamp:
- 08/18/2014 06:22:54 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/wp-fullscreen.js
r29340 r29533 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 }; … … 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 -
trunk/src/wp-includes/css/editor.css
r29446 r29533 1807 1807 -webkit-transition-duration: 0.4s; 1808 1808 transition-duration: 0.4s; 1809 border-color: currentColor;1809 border-color: #ccc; 1810 1810 } 1811 1811 … … 1856 1856 .wp-fullscreen-active.wp-dfw-touch .wp-fullscreen-title, 1857 1857 .wp-fullscreen-active.wp-dfw-touch .wp-editor-container { 1858 border-color: currentColor;1858 border-color: #ccc; 1859 1859 } 1860 1860 -
trunk/src/wp-includes/js/tinymce/skins/wordpress/wp-content.css
r29471 r29533 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
Note: See TracChangeset
for help on using the changeset viewer.