Compare commits

..

No commits in common. "999c960339f74bafebca268cf2538206f367a357" and "877db10c0958a690ad31fa86bf6ae5b27293362e" have entirely different histories.

View File

@ -3688,12 +3688,13 @@ body.objectKanbanColumnResizing * {
}
.dashboard-tab-item:not(.dashboard-tab-item-active):hover {
background: color-mix(in srgb, #ffffff 45%, 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);
background: var(--color-button-background);
border: 1px solid
color-mix(
in srgb,
var(--color-button-border) 40%,
var(--color-button-background)
);
}
.dashboard-tab-item-active {
@ -3945,18 +3946,15 @@ body.objectKanbanColumnResizing * {
margin-left: 1px;
margin-right: -2px;
border-radius: 8px;
color: color-mix(
in srgb,
var(--color-text-secondary, inherit) 70%,
transparent
);
color: var(--color-text-secondary, inherit);
opacity: 0.7;
cursor: pointer;
flex-shrink: 0;
transition: color 0.2s ease;
transition: opacity 0.2s ease;
}
.dashboard-tabs-close:hover {
color: var(--color-text-secondary, inherit);
opacity: 1;
}
.dashboard-tabs-close::before {