feature/IO-3291-Tasks-Notifications: Checkpoint

This commit is contained in:
Dave Richer
2025-07-10 10:12:50 -04:00
parent 4a30a5bc64
commit 79e379b61a
3 changed files with 149 additions and 110 deletions

View File

@@ -66,53 +66,50 @@
margin-bottom: 15px;
}
.task-table {
width: 100%;
.task-row {
cursor: pointer;
border-bottom: 1px solid #f0f0f0;
display: flex;
justify-content: space-between;
align-items: flex-start;
border-collapse: collapse;
&:hover {
background: #f5f5f5;
}
.task-row {
cursor: pointer;
border-bottom: 1px solid #f0f0f0;
.task-title-cell {
flex: 1;
padding: 6px 8px;
vertical-align: top;
//font-size: 12px;
line-height: 1.2;
max-width: 350px; // or whatever fits your layout
&:hover {
background: #f5f5f5;
}
td {
padding: 6px 8px;
vertical-align: top;
//font-size: 12px;
line-height: 1.2;
}
.task-title-cell {
width: 100%;
max-width: 350px; // or whatever fits your layout
.task-title {
font-size: 16px;
font-weight: 550;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%; // Or a specific width if you want more control
display: inline-block;
vertical-align: middle;
}
.task-ro-number {
margin-top: 20px;
color: #1677ff;
}
}
.task-due-cell {
text-align: right;
.task-title {
font-size: 16px;
font-weight: 550;
white-space: nowrap;
color: rgba(0, 0, 0, 0.45);
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%; // Or a specific width if you want more control
display: inline-block;
vertical-align: middle;
}
.task-ro-number {
margin-top: 20px;
color: #1677ff;
}
}
.task-due-cell {
padding: 6px 8px;
vertical-align: top;
//font-size: 12px;
line-height: 1.2;
text-align: right;
white-space: nowrap;
color: rgba(0, 0, 0, 0.45);
}
}
@@ -136,8 +133,15 @@
}
}
.ReactVirtuoso__item {
margin: 0 !important;
padding: 0 !important;
.no-tasks-message,
.error-message {
padding: 16px;
text-align: center;
color: rgba(0, 0, 0, 0.45);
}
.loading-footer {
padding: 16px;
text-align: center;
}
}