From 1b74d2c6b86bc0983663b0fdc194a67843c5eda0 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Mon, 7 Oct 2019 00:07:23 -0400 Subject: [PATCH] firefox eats the chevron, but webkit does not. sigh. --- views/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/views/style.css b/views/style.css index 1959541..16e81f1 100644 --- a/views/style.css +++ b/views/style.css @@ -79,6 +79,11 @@ header > details li { details summary { display: inline; } +@supports (-moz-appearance:none) { + details summary { + display: list-item; + } +} main { max-width: 1200px; margin: auto;