Changes between Initial Version and Version 75 of Ticket #55974
- Timestamp:
- 06/07/2024 04:35:41 AM (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #55974
- Property Keywords has-patch needs-testing added; needs-patch removed
-
Property
Milestone
changed from
Awaiting Review
toFuture Release
-
Property
Type
changed from
defect (bug)
toenhancement
-
Property
Summary
changed from
Twenty Twenty: border color issue in Pullquote block
toBundled theme: Add support for border options
-
Ticket #55974 – Description
initial v75 1 In Twenty Twenty Theme, when we add Pullquote block in editor side and add any border style after that choose border color, We can see that border color is seen in editor side. But when we see the same Pullquote block at front side, border color is not reflected. 1 This description was updates June 7, 2024 2 2 3 Steps to replicate: 4 1: Activate the Twenty Twenty Theme 5 2: Add Pullquote block 6 3: Add border style 7 4: choose border color 8 5: Save Page/Post 9 6: View the page/post at front side 3 The classic bundled themes are missing support for border options for most blocks. 4 Some blocks, like the pullquote, have border options enabled by default, but most blocks do not. 10 5 11 For better understanding I provide video attachment link. 12 Video URL : https://share.cleanshot.com/bqZzSHG6AGVy2hslSIqc 6 The border options include border color, width, style, and radius. 7 They can be enabled by adding {{{add_theme_support( 'border' );}}} or 8 {{{ add_theme_support( 'appearance-tools' );}}}. 13 9 14 Thanks 10 The appearance-tools adds several options besides the borders, so the suggested change is to use {{{add_theme_support( 'border' );}}}. 11 12 {{{add_theme_support( 'border' );}}} can be added to themes existing setup function. 13 After that, all supported blocks needs to be tested. 14 15 - Testing has shown that there are usually only a small number of issues found with the border support, but additional fixes may be needed for blocks that use images. 16 17 18 The following blocks support border controls as of** WordPress version 6.6 Beta1**, and needs to be tested. 19 ''Note that it is necessary to test if these blocks have working border controls until there is a patch to test.'' 20 21 Avatar 22 Button 23 Code 24 Column 25 Columns 26 Comments Title 27 Cover 28 Details 29 Footnotes 30 Group 31 Image 32 Post Featured Image 33 Pullquote 34 Read More 35 Search 36 Table 37 Verse 38 39 40 41