From 99457474523ef651da37448d03f57771ecfeaa22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABlle=20Morin?= Date: Fri, 6 Sep 2019 13:18:02 +0200 Subject: [PATCH] fix: Firefox 69 disclosure triangle masked --- src/styles/base/header.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/styles/base/header.scss b/src/styles/base/header.scss index c1c2e25..947f756 100644 --- a/src/styles/base/header.scss +++ b/src/styles/base/header.scss @@ -65,7 +65,7 @@ summary { &::-moz-list-bullet { - list-style-type: none; + list-style-type: none; /* To remove the disclosure triangle on Firefox v.<69 */ } &::-webkit-details-marker { @@ -114,6 +114,8 @@ summary { padding: 18px; cursor: pointer; + display: block; /* To remove the disclosure triangle on Firefox v.>=69 */ + &:focus { background-color: $color-233-18-29; color: $color-0-0-100;