Refine Dashboard Tab Hover Styles for Improved Visual Feedback

- Updated hover styles for inactive dashboard tab items to enhance visual clarity and user interaction.
- Adjusted background and border properties for both light and dark modes, ensuring consistent appearance across themes.
This commit is contained in:
Tom Butcher 2026-09-18 23:52:37 +01:00
parent 877db10c09
commit ae2ea0dc13

View File

@ -3688,13 +3688,12 @@ body.objectKanbanColumnResizing * {
}
.dashboard-tab-item:not(.dashboard-tab-item-active):hover {
background: var(--color-button-background);
border: 1px solid
color-mix(
in srgb,
var(--color-button-border) 40%,
var(--color-button-background)
);
background: color-mix(in srgb, #ffffff 35%, transparent);
border: 1px solid var(--color-header-border);
}
.dark-mode .dashboard-tab-item:not(.dashboard-tab-item-active):hover {
background: color-mix(in srgb, #ffffff 2.75%, transparent);
}
.dashboard-tab-item-active {