Changed the look of consolidated cards when multiple statuses are used.

This commit is contained in:
2025-09-28 08:42:33 +02:00
parent bc3cc176ef
commit 3f6af51a43
4 changed files with 52 additions and 1 deletions

View File

@@ -160,4 +160,22 @@
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
}
/* Partial Status Checkbox Styling */
.partial-status {
position: relative;
}
.partial-status::after {
content: '';
position: absolute;
top: 2px;
left: 2px;
right: 2px;
bottom: 2px;
background: #6f42c1;
border-radius: 2px;
opacity: 0.8;
pointer-events: none;
}