diff --git a/src/aggregator/web/index.html b/src/aggregator/web/index.html index e912e56..d18cf21 100644 --- a/src/aggregator/web/index.html +++ b/src/aggregator/web/index.html @@ -160,30 +160,30 @@ .task-card { position: relative; } .task-actions { position: absolute; - top: -8px; - right: -8px; + top: 4px; + right: 4px; display: none; gap: 4px; z-index: 10; } .task-card:hover .task-actions { display: flex; } .task-action-btn { - width: 24px; - height: 24px; - border-radius: 50%; + width: 20px; + height: 20px; + border-radius: 4px; border: none; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; - font-size: 14px; + font-size: 12px; font-weight: bold; - box-shadow: 0 2px 4px rgba(0,0,0,0.3); + opacity: 0.8; } - .task-action-btn.archive { background: #3b82f6; font-size: 12px; } + .task-action-btn.archive { background: #3b82f6; } .task-action-btn.delete { background: #ef4444; } - .task-action-btn:hover { transform: scale(1.1); } + .task-action-btn:hover { opacity: 1; } /* Inline editing styles */ .edit-input { background: #1e293b; @@ -216,6 +216,11 @@ gap: 0.5rem; margin-top: 0.25rem; } + .task-footer { + display: flex; + justify-content: flex-end; + margin-top: 0.5rem; + } /* Modal styles */ .modal-overlay { @@ -655,23 +660,8 @@