feature/IO-3291-Tasks-Notifications: Checkpoint

This commit is contained in:
Dave Richer
2025-07-07 17:35:00 -04:00
parent f8a3d0f854
commit 2061a49e0e
6 changed files with 1059 additions and 624 deletions

View File

@@ -0,0 +1,66 @@
.task-center {
position: absolute;
top: 64px;
right: 0;
z-index: 1000;
width: 400px;
max-height: 500px;
background: #fff;
border-left: 1px solid #ccc;
box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
display: none;
&.visible {
display: block;
}
.task-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 12px;
background-color: #f5f5f5;
border-bottom: 1px solid #ddd;
}
.task-toggle {
display: flex;
align-items: center;
gap: 4px;
.anticon {
font-size: 14px;
}
}
.task-item {
padding: 12px;
border-bottom: 1px solid #f0f0f0;
cursor: pointer;
transition: background-color 0.2s;
&:hover {
background-color: #fafafa;
}
&.task-completed {
opacity: 0.6;
}
.ro-number {
font-weight: bold;
margin-right: 8px;
}
.task-body {
display: block;
margin-top: 4px;
}
.relative-time {
float: right;
font-size: 0.8em;
}
}
}