From c190cc565a51c150131efc0c2245454f14e4db19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Thu, 26 Jan 2023 10:28:52 +0100 Subject: [PATCH] Make details styles match implementation. There's not any mention of the fallback summary which is rather unfortunate? Fixes #8610 --- source | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source b/source index 241fbae3d07..e3420e01915 100644 --- a/source +++ b/source @@ -123216,12 +123216,12 @@ input[type=image i][align=bottom i], object[align=bottom i] {
@namespace url(http://www.w3.org/1999/xhtml);
 
-summary {
+details > summary:first-of-type {
   display: list-item;
   counter-increment: list-item 0;
   list-style: disclosure-closed inside;
 }
-details[open] > summary {
+details[open] > summary:first-of-type {
   list-style-type: disclosure-open;
 }