From 5498aa33689af64e7a69abed91ee31dc2d7d011e Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Fri, 18 Sep 2026 02:48:20 +0100 Subject: [PATCH] Enhance Dashboard Tab Close Button with Transition Effect - Added a transition effect to the opacity of the dashboard tab close button for smoother visual feedback on hover. - Updated CSS styles to improve user interaction and visual consistency within the dashboard component. --- assets/stylesheets/App.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/stylesheets/App.css b/assets/stylesheets/App.css index d32f01ed..d3870990 100644 --- a/assets/stylesheets/App.css +++ b/assets/stylesheets/App.css @@ -3745,6 +3745,11 @@ body.objectKanbanColumnResizing * { opacity: 0.7; cursor: pointer; flex-shrink: 0; + transition: opacity 0.2s ease; +} + +.dashboard-tabs-close:hover { + opacity: 1; } .dashboard-tabs-close::before {