Changes between Initial Version and Version 1 of Ticket #64525
- Timestamp:
- 01/17/2026 07:14:13 PM (7 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #64525
-
Property
Version
changed from
6.9to4.4 -
Property
Component
changed from
ThemestoBundled Theme -
Property
Summary
changed from
Twenty Sixteen Theme Using “block” value instead of “list-item” for the “display” property of “summary” elements.toTwenty Sixteen: “summary” elements use “block” value instead of “list-item” for the “display” property
-
Property
Version
changed from
-
Ticket #64525 – Description
initial v1 1 1 Hi! 🙋🏻♂️ 2 2 3 I noticed that when I added details / summary elements to my WordPress page, the little triangle thingy was not there. It's an indicator to show if the “details”element is opened or closed. After some testing, I fixed the problem by adding the following style to the “Additional CSS” area…3 I noticed that when I added `details` / `summary` elements to my WordPress page, the little triangle thingy was not there. It's an indicator to show if the `details` element is opened or closed. After some testing, I fixed the problem by adding the following style to the “Additional CSS” area… 4 4 5 5 {{{ … … 13 13 Yet, this didn't seem like solving the problem, only covering it. So, I looked to see why the summary elements were having their default display value changed. I looked at the styling and it seems to trace back to here… 14 14 15 https://core.trac.wordpress.org/browser/trunk/src/wp-content/themes/twentysixteen/style.css?#L85 15 [https://core.trac.wordpress.org/browser/6.9/src/wp-content/themes/twentysixteen/style.css?#L85 style.css, line 85] 16 16 17 …which changes the “display” value of summary elements to “block”.17 …which changes the `display` value of `<summary>` elements to `block`. 18 18 19 19 That seemed incorrect, so I searched this site to see if anyone reported the problem. It looks like the following links are related… 20 20 21 [https://core.trac.wordpress.org/ticket/58915] 22 [https://core.trac.wordpress.org/attachment/ticket/58915/58915.patch ]21 #58915 22 [https://core.trac.wordpress.org/attachment/ticket/58915/58915.patch 58915.patch] 23 23 24 I was wondering, if this issue was addressed, why did I still see a problem? That's when I looked at the file being modified. It's the blocks.cssfile.24 I was wondering, if this issue was addressed, why did I still see a problem? That's when I looked at the file being modified. It's the `blocks.css` file. 25 25 26 26 I use the “Classic Editor” plugin on my website, which disables Gutenberg. Additionally, the details and summary tags were being added to an article page. Essentially, I was building an FAQ page. 27 27 28 So, perhaps that means the style.css file should be updated too. **It looks like “summary” should not be part of that CSS declaration.** And since ticket 58915 mentioned the Twenty Thirteen theme, perhaps that style.cssfile needs to be fixed too…28 So, perhaps that means the `style.css` file should be updated too. **It looks like “summary” should not be part of that CSS declaration.** And since ticket #58915 mentioned the Twenty Thirteen theme, perhaps that `style.css` file needs to be fixed too… 29 29 30 https://core.trac.wordpress.org/browser/trunk/src/wp-content/themes/twentythirteen/style.css#L78 30 [https://core.trac.wordpress.org/browser/6.9/src/wp-content/themes/twentythirteen/style.css#L78 style.css, line 78]