Changes between Initial Version and Version 1 of Ticket #60809
- Timestamp:
- 03/20/2024 02:35:16 PM (11 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #60809
-
Property
Version
changed from
to
trunk
-
Property
Component
changed from
General
toEditor
-
Property
Version
changed from
-
Ticket #60809 – Description
initial v1 1 In WordPress 6.4.3, the block editor automatically applies this to .editor-styles-wrapper:1 In WordPress 6.4.3, the block editor automatically applies this to `.editor-styles-wrapper`: 2 2 3 {{{ 3 4 .editor-styles-wrapper.mce-content-body, .editor-styles-wrapper.editor-styles-wrapper { 4 5 opacity: 1; 5 6 } 7 }}} 6 8 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.9 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. 8 10 9 11 The 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. 10 12 11 In testing with WordPress Alpha 6.6 or with the latest gutenberg activated this doesnt appear tothe case, is there a reason this was removed from the 6.5 core?13 In 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?