From: Cameron Otsuka Date: Wed, 17 Dec 2025 20:11:53 +0000 (-0800) Subject: fix summary marker turning into emoji on ios X-Git-Tag: v2.2.0~22 X-Git-Url: https://git.otsuka.systems/?a=commitdiff_plain;h=2e2f9e23799a1dcb32bf9fbea11ce5bea88e0466;p=cotsuka.github.io fix summary marker turning into emoji on ios --- diff --git a/src/styles/style.css b/src/styles/style.css index 3a60f50..3c82f02 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -105,4 +105,10 @@ code { clip: rect(0, 0, 0, 0); word-wrap: normal; border: 0; +} +details > summary { + list-style-type: "▸"; +} +details[open] > summary { + list-style-type: "▾"; } \ No newline at end of file