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.
This commit is contained in:
Tom Butcher 2026-09-18 02:48:20 +01:00
parent 251bb716cf
commit 5498aa3368

View File

@ -3745,6 +3745,11 @@ body.objectKanbanColumnResizing * {
opacity: 0.7; opacity: 0.7;
cursor: pointer; cursor: pointer;
flex-shrink: 0; flex-shrink: 0;
transition: opacity 0.2s ease;
}
.dashboard-tabs-close:hover {
opacity: 1;
} }
.dashboard-tabs-close::before { .dashboard-tabs-close::before {