Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #56114


Ignore:
Timestamp:
07/01/2022 12:57:46 PM (3 years ago)
Author:
sabernhardt
Comment:

Thanks for the report! The theme should be corrected, even if a change to the editor would fix the problem.

Some themes set the Separator block max-width to 100px without making an exception for the Dots style, which had worked with earlier versions of Gutenberg. Then GB30255 switched max-width: none to width: none, and GB33793 removed that for being invalid.

Twenty Fifteen already adjusts the max-width for Wide separators:

.wp-block-separator.is-style-wide {
	max-width: 100%;
}

And it could have the same for the Dots style:

.wp-block-separator.is-style-wide,
.wp-block-separator.is-style-dots {
	max-width: 100%;
}

Twenty Fifteen would need edits to both blocks.css and editor-blocks.css.

Other themes would need a similar change in only the blocks.css file (for the front end):

  • Twenty Eleven
  • Twenty Thirteen
  • Twenty Fourteen
  • Twenty Sixteen

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #56114

    • Property Keywords changed from needs-patch has-screenshots to has-screenshots needs-patch
    • Property Version changed from 6.0 to 5.8
    • Property Summary changed from Themes Twenty Fifteen Separator Block Dots styling Issue to Multiple Themes: Separator Block Dots Style Width
  • Ticket #56114 – Description

    initial v2  
    44
    551: Activate the Twenty Fifteen Themes
    6 
    762: add Separator block
    8 
    973: Select Dots style
    108