feature/IO-3291-Tasks-Notifications: Checkpoint

This commit is contained in:
Dave Richer
2025-07-09 11:59:57 -04:00
parent 5d69d37db2
commit 9e5689b06f
3 changed files with 107 additions and 48 deletions

View File

@@ -44,13 +44,31 @@
color: rgba(0, 0, 0, 0.85);
font-weight: 500;
border-bottom: 1px solid #e8e8e8;
position: sticky;
top: 0;
z-index: 1;
}
.task-meta {
display: flex;
justify-content: space-between;
margin-top: 4px;
font-size: 12px;
color: rgba(0, 0, 0, 0.45);
.ro-number {
white-space: nowrap;
}
.relative-time {
white-space: nowrap;
}
}
.task-item {
padding: 12px 16px;
border-bottom: 1px solid #f0f0f0;
display: block;
overflow: visible;
width: 100%;
box-sizing: border-box;
cursor: pointer;
@@ -70,17 +88,16 @@
justify-content: space-between;
align-items: center;
width: 100%;
box-sizing: border-box;
.ro-number {
margin: 0;
color: #1677ff;
font-weight: 500;
flex-shrink: 0;
white-space: nowrap;
}
.relative-time {
margin: 0;
font-size: 12px;
color: rgba(0, 0, 0, 0.45);
white-space: nowrap;
@@ -93,10 +110,32 @@
margin-top: 4px;
color: rgba(0, 0, 0, 0.85);
font-weight: 500;
font-size: 14px;
}
}
.ant-badge {
width: 100%;
}
button {
margin: 16px auto;
display: block;
padding: 8px 16px;
background-color: #1677ff;
color: white;
border: none;
border-radius: 4px;
font-size: 14px;
cursor: pointer;
&:hover {
background-color: #4096ff;
}
&:disabled {
background-color: #d9d9d9;
cursor: not-allowed;
}
}
}