Make WordPress Core

Ticket #28330: 28330.4.patch

File 28330.4.patch, 2.0 KB (added by azaozz, 11 years ago)
  • src/wp-admin/js/wp-fullscreen.js

     
    198198                        s.$dfwTitle = null;
    199199                }
    200200
    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 
    204201                api.ui.fade( 'show', 'showing', 'shown' );
    205202        };
    206203
     
    416413        });
    417414
    418415        ps.subscribe( 'hiding', function() { // This event occurs while the overlay blocks the DFW UI.
    419                 s.$dfwTitle.add( s.$editorContainer ).css( 'color', '' );
    420 
    421416                $body.removeClass( 'wp-fullscreen-active' );
    422417
    423418                if ( s.$dfwTitle ) {
  • src/wp-includes/css/editor.css

     
    17971797.wp-fullscreen-active.wp-dfw-show-ui .wp-editor-container {
    17981798        -webkit-transition-duration: 0.4s;
    17991799        transition-duration: 0.4s;
    1800         border-color: currentColor;
     1800        border-color: #ccc;
    18011801}
    18021802
    18031803.fade-1000,
     
    18461846
    18471847.wp-fullscreen-active.wp-dfw-touch  .wp-fullscreen-title,
    18481848.wp-fullscreen-active.wp-dfw-touch .wp-editor-container {
    1849         border-color: currentColor;
     1849        border-color: #ccc;
    18501850}
    18511851
    18521852.wp-dfw-touch #wp-fullscreen-statusbar {
  • src/wp-includes/js/tinymce/skins/wordpress/wp-content.css

     
    3636
    3737/* DFW mode */
    3838html.wp-fullscreen,
    39 html.wp-fullscreen body {
     39html.wp-fullscreen body#tinymce {
    4040        width: auto;
    4141        max-width: none;
    4242        min-height: 0;
    4343        overflow: hidden;
     44        color: #333;
     45        background: transparent;
    4446}
    4547
    4648.aligncenter,