From 53e7a2160276d2bdaf7a51c3ac9cb4c31a51d7da Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Sat, 18 Mar 2023 09:46:03 +0100 Subject: [PATCH] show edit of title and descr only when hovering --- .../dashboard-page/dashboard/dashboard.component.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pdb-js/src/app/dashboard-page/dashboard/dashboard.component.html b/pdb-js/src/app/dashboard-page/dashboard/dashboard.component.html index 7dc6a53..0368466 100644 --- a/pdb-js/src/app/dashboard-page/dashboard/dashboard.component.html +++ b/pdb-js/src/app/dashboard-page/dashboard/dashboard.component.html @@ -26,6 +26,15 @@ flex-direction: column; } + .editable-hovered { + visibility: hidden; + } + + .editable:hover .editable-hovered{ + visibility: visible; + } + + .handle { display: block; height: 1.5em;