From fd00916b90e1d31f1b7091da3630a971b244fcee Mon Sep 17 00:00:00 2001 From: Birgit Brecknell Date: Fri, 23 Aug 2024 12:57:27 +1000 Subject: [PATCH] fix pointer for expanded solutions box Signed-off-by: Birgit Brecknell --- assets/css/style.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/assets/css/style.scss b/assets/css/style.scss index b4f50107da..85a44ffb94 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -306,12 +306,13 @@ a[href*="//"]:not([href*="{{site.url}}"],.skip-icon):after { width: 32%; } -/* add margin below tutorials solutions boxes */ +/* tutorials solutions boxes */ details { - cursor: pointer; padding-bottom: 20px; } - summary { display:list-item; } +details > summary { + cursor: pointer; +}