From aa0a876e195b4e74a11cadf77d67a97a7c241c71 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 25 Feb 2019 21:54:01 +0100 Subject: [PATCH] Add styling for `details` elements --- blog/static/css/main.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/blog/static/css/main.css b/blog/static/css/main.css index 222f589f..3564bfe8 100644 --- a/blog/static/css/main.css +++ b/blog/static/css/main.css @@ -308,3 +308,11 @@ aside.post_aside { border-left: .1rem solid #e5e5e5; border-right: .1rem solid #e5e5e5; } + +details summary { + cursor: pointer; +} + +details summary h3, details summary h4, details summary h5, details summary h6 { + display: inline; +}