Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #60809


Ignore:
Timestamp:
03/20/2024 02:35:16 PM (11 months ago)
Author:
sabernhardt
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #60809

    • Property Version changed from to trunk
    • Property Component changed from General to Editor
  • Ticket #60809 – Description

    initial v1  
    1 In WordPress 6.4.3, the block editor automatically applies this to .editor-styles-wrapper:
     1In WordPress 6.4.3, the block editor automatically applies this to `.editor-styles-wrapper`:
    22
     3{{{
    34.editor-styles-wrapper.mce-content-body, .editor-styles-wrapper.editor-styles-wrapper {
    45    opacity: 1;
    56}
     7}}}
    68
    7 While testing WordPress 6.5, this no longer occurs. Our theme has 'opacity: 0' applied to the body, and we use jquery to change it to 'opacity: 1' when the DOM is loaded. This means that in 6.5, our block editor has 0 opacity.
     9While testing WordPress 6.5, this no longer occurs. Our theme has `opacity: 0` applied to the body, and we use jQuery to change it to `opacity: 1` when the DOM is loaded. This means that in 6.5, our block editor has 0 opacity.
    810
    911The issue for us is that this also applies to the block editor and as a result we see a grey box instead of the blocks of content.
    1012
    11 In testing with WordPress Alpha 6.6 or with the latest gutenberg activated this doesnt appear to the case, is there a reason this was removed from the 6.5 core?
     13In testing with WordPress Alpha 6.6 or with the latest Gutenberg activated this doesn't appear to be the case, is there a reason this was removed from the 6.5 core?