From 6f2b91f76e2dada4827f2ce994645b631604425f Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 11 Dec 2024 21:40:17 +0200 Subject: [PATCH] style(next): explore showing tree actions on hover only --- src/public/stylesheets/theme-next/shell.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/public/stylesheets/theme-next/shell.css b/src/public/stylesheets/theme-next/shell.css index d01c6c40b..7bd975dd3 100644 --- a/src/public/stylesheets/theme-next/shell.css +++ b/src/public/stylesheets/theme-next/shell.css @@ -348,6 +348,12 @@ div.quick-search .search-button.show { #left-pane .tree-actions { right: 3px; bottom: 6px; + transform: translateY(200%) !important; + transition: transform 250ms ease-in-out; +} + +#left-pane:hover .tree-actions { + transform: translateY(0) !important; } button.tree-floating-button {