Update dashboard, memory, root (~10)
This commit is contained in:
@@ -591,19 +591,19 @@
|
||||
}
|
||||
|
||||
.priority-group {
|
||||
margin-bottom: var(--space-3);
|
||||
margin-bottom: var(--space-5);
|
||||
}
|
||||
|
||||
.priority-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
font-size: var(--text-xs);
|
||||
font-size: var(--text-sm);
|
||||
font-weight: 600;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: var(--space-2);
|
||||
color: var(--text-primary);
|
||||
margin-bottom: var(--space-3);
|
||||
cursor: pointer;
|
||||
padding: var(--space-1) 0;
|
||||
padding: var(--space-2) 0;
|
||||
}
|
||||
|
||||
.priority-header:hover {
|
||||
@@ -611,13 +611,7 @@
|
||||
}
|
||||
|
||||
.priority-header svg {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
transition: transform var(--transition-fast);
|
||||
}
|
||||
|
||||
.priority-header.collapsed svg {
|
||||
transform: rotate(-90deg);
|
||||
display: none;
|
||||
}
|
||||
|
||||
.priority-dot {
|
||||
@@ -1456,10 +1450,10 @@
|
||||
|
||||
// Priority labels
|
||||
const priorityLabels = {
|
||||
'urgent-important': '🔴 Urgent + Important',
|
||||
'important': '🟠 Important',
|
||||
'urgent': '🟡 Urgent',
|
||||
'backlog': '⚪ Backlog'
|
||||
'urgent-important': 'Urgent + Important',
|
||||
'important': 'Important',
|
||||
'urgent': 'Urgent',
|
||||
'backlog': 'Backlog'
|
||||
};
|
||||
|
||||
const priorityOrder = ['urgent-important', 'important', 'urgent', 'backlog'];
|
||||
@@ -2206,9 +2200,8 @@
|
||||
html += `
|
||||
<div class="priority-group">
|
||||
<div class="priority-header ${isCollapsed ? 'collapsed' : ''}" onclick="togglePriority('${priority}')">
|
||||
<i data-lucide="chevron-down"></i>
|
||||
<span>${priorityLabels[priority]}</span>
|
||||
<span style="margin-left: auto; opacity: 0.7">${issues.length}</span>
|
||||
<span style="margin-left: auto; opacity: 0.7; font-size: var(--text-xs);">${issues.length}</span>
|
||||
</div>
|
||||
<div class="priority-content ${isCollapsed ? 'hidden' : ''}">
|
||||
${issues.map(issue => renderIssueItem(issue)).join('')}
|
||||
@@ -2225,9 +2218,8 @@
|
||||
html += `
|
||||
<div class="priority-group">
|
||||
<div class="priority-header ${isDoneCollapsed ? 'collapsed' : ''}" onclick="togglePriority('done')">
|
||||
<i data-lucide="chevron-down"></i>
|
||||
<span>✅ Executate</span>
|
||||
<span style="margin-left: auto; opacity: 0.7">${doneIssues.length}</span>
|
||||
<span>Executate</span>
|
||||
<span style="margin-left: auto; opacity: 0.7; font-size: var(--text-xs);">${doneIssues.length}</span>
|
||||
</div>
|
||||
<div class="priority-content ${isDoneCollapsed ? 'hidden' : ''}">
|
||||
${doneIssues.map(issue => renderIssueItem(issue)).join('')}
|
||||
|
||||
Reference in New Issue
Block a user