From 9873f4c9e222bec5b3b49c2d2d48a5905fe53779 Mon Sep 17 00:00:00 2001 From: krassowski <5832902+krassowski@users.noreply.github.com> Date: Sat, 15 Jun 2024 18:57:07 +0100 Subject: [PATCH] Fix spurious details marker on Webkit browsers --- style/base.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style/base.css b/style/base.css index 95aa6ff..898c90e 100644 --- a/style/base.css +++ b/style/base.css @@ -74,6 +74,11 @@ min-width: 185px; } +.jp-CollapsibleSection > summary::-webkit-details-marker { + /* Safari/GNOME Web/Opera */ + display: none; +} + .jp-CollapsibleSection > summary:hover { background-color: var(--jp-layout-color2); }