From 169f8bc1bdc107132d08ae9af9cfa94e1799d082 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 11 Nov 2024 06:07:07 +0100 Subject: [PATCH] Hide handle when details are open --- app/assets/stylesheets/layout.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/layout.scss b/app/assets/stylesheets/layout.scss index 5d29752..7a25533 100644 --- a/app/assets/stylesheets/layout.scss +++ b/app/assets/stylesheets/layout.scss @@ -310,4 +310,12 @@ details.tree { .handle { cursor: move; +} + +details[open] { + summary { + .handle { + display: none; + } + } } \ No newline at end of file