From ab9255d9c0982a04357685c15f3e8af8522c73d3 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Sat, 27 Apr 2024 14:08:35 -0500 Subject: [PATCH] style comments disclosure widget --- static/css/custom.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/static/css/custom.css b/static/css/custom.css index d8e43e6..4941b84 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -391,4 +391,17 @@ a.tinylytics_webring { /* hr override */ hr { margin-top: 1.5rem; +} + +/* summary styling */ +details { + cursor: pointer; +} + +details summary::before { + content: 'Load '; +} + +details[open] summary::before { + content: 'Hide '; } \ No newline at end of file