diff --git a/dashboard/index.html b/dashboard/index.html index 8d923ad..accebbd 100644 --- a/dashboard/index.html +++ b/dashboard/index.html @@ -687,6 +687,11 @@ border-color: var(--accent); } + .issue-checkbox.in-progress { + background: rgba(59, 130, 246, 0.3); + border-color: #3b82f6; + } + .issue-checkbox svg { width: 12px; height: 12px; @@ -698,6 +703,14 @@ display: block; } + .issue-checkbox.in-progress::after { + content: ''; + width: 8px; + height: 8px; + border-radius: 50%; + background: #3b82f6; + } + .issue-content { flex: 1; min-width: 0; @@ -738,6 +751,27 @@ .issue-owner.marius { color: #22c55e; } .issue-owner.robert { color: #f59e0b; } + .issue-status { + padding: 2px 8px; + border-radius: var(--radius-sm); + font-size: 11px; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 0.3px; + } + .issue-status.todo { + background: rgba(156, 163, 175, 0.2); + color: #9ca3af; + } + .issue-status.in-progress { + background: rgba(59, 130, 246, 0.2); + color: #3b82f6; + } + .issue-status.done { + background: rgba(34, 197, 94, 0.2); + color: #22c55e; + } + /* Todo's Panel */ .todos-panel { border-left: 3px solid #8b5cf6; } .todo-section { margin-bottom: 16px; } @@ -1266,10 +1300,21 @@ +
+ + +
+ +
+