-
Current Task
-
{{ mission.currentTask }}
+
+
+ Keine offenen Aufgaben. Erstelle eine mit + New Task.
-
-
-
-
-
-
+
diff --git a/frontend/src/components/dashboard/OperationsFeed.vue b/frontend/src/components/dashboard/OperationsFeed.vue
index ba1c878..5a23da0 100644
--- a/frontend/src/components/dashboard/OperationsFeed.vue
+++ b/frontend/src/components/dashboard/OperationsFeed.vue
@@ -1,10 +1,52 @@
@@ -17,7 +59,7 @@ defineProps<{
@@ -33,7 +75,61 @@ defineProps<{
No operations recorded yet.
+
+
+
+
+
+
+
+
+
+
+
+ {{ dayLabel(selectedDayOffset) }}
+
+
+
+
+
+ Keine Einträge für diesen Tag.
+
+
+ {{ entry.time }}
+ ·
+
+ {{ entry.agent }}
+
+ {{ entry.action }}
+
+
+
+
+
@@ -121,9 +217,8 @@ defineProps<{
}
.feed-action {
color: #7e8799;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
+ white-space: normal;
+ word-break: break-word;
}
.feed-empty {
@@ -133,6 +228,26 @@ defineProps<{
color: #6b7385;
}
+.feed-more-btn {
+ display: block;
+ width: 100%;
+ padding: 8px;
+ margin-top: 4px;
+ background: rgba(139, 124, 246, 0.08);
+ border: 1px solid rgba(139, 124, 246, 0.12);
+ border-radius: 8px;
+ color: #a78bfa;
+ font-size: 9.5px;
+ font-weight: 600;
+ cursor: pointer;
+ transition: all 0.2s;
+ text-align: center;
+}
+.feed-more-btn:hover {
+ background: rgba(139, 124, 246, 0.14);
+ border-color: rgba(139, 124, 246, 0.2);
+}
+
/* TransitionGroup */
.feed-enter-active {
transition: all 0.3s ease;
@@ -152,4 +267,104 @@ defineProps<{
.feed-move {
transition: transform 0.3s ease;
}
+
+/* ── Modal Overlay ── */
+:global(.modal-overlay) {
+ position: fixed;
+ inset: 0;
+ z-index: 1000;
+ display: grid;
+ place-items: center;
+ background: rgba(0, 0, 0, 0.6);
+ backdrop-filter: blur(4px);
+ padding: 20px;
+}
+:global(.modal-content) {
+ background: #161b22;
+ border: 1px solid rgba(139, 124, 246, 0.15);
+ border-radius: 16px;
+ padding: 24px;
+ width: 100%;
+ max-width: 520px;
+ max-height: 80vh;
+ display: flex;
+ flex-direction: column;
+ gap: 16px;
+ box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
+}
+:global(.modal-header) {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ gap: 12px;
+}
+:global(.modal-title) {
+ margin: 0;
+ font-size: 15px;
+ font-weight: 600;
+ color: #e8eaf0;
+}
+:global(.modal-close-btn) {
+ display: grid;
+ place-items: center;
+ width: 28px;
+ height: 28px;
+ border: none;
+ background: rgba(255, 255, 255, 0.05);
+ border-radius: 6px;
+ color: #7e8799;
+ cursor: pointer;
+ transition: all 0.15s;
+}
+:global(.modal-close-btn:hover) {
+ background: rgba(255, 255, 255, 0.1);
+ color: #e8eaf0;
+}
+:global(.modal-nav) {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ gap: 12px;
+}
+:global(.nav-btn) {
+ display: grid;
+ place-items: center;
+ width: 30px;
+ height: 30px;
+ border: 1px solid rgba(139, 124, 246, 0.15);
+ background: rgba(139, 124, 246, 0.08);
+ border-radius: 8px;
+ color: #a78bfa;
+ cursor: pointer;
+ transition: all 0.15s;
+}
+:global(.nav-btn:hover:not(:disabled)) {
+ background: rgba(139, 124, 246, 0.16);
+ border-color: rgba(139, 124, 246, 0.3);
+}
+:global(.nav-btn:disabled) {
+ opacity: 0.3;
+ cursor: not-allowed;
+}
+:global(.nav-label) {
+ font-size: 12px;
+ font-weight: 600;
+ color: #d1d5db;
+ min-width: 100px;
+ text-align: center;
+}
+:global(.modal-entries) {
+ display: flex;
+ flex-direction: column;
+ gap: 4px;
+ overflow-y: auto;
+ max-height: 50vh;
+ padding-right: 4px;
+}
+:global(.modal-empty) {
+ text-align: center;
+ padding: 24px 0;
+ font-size: 11px;
+ color: #6b7385;
+}
diff --git a/frontend/src/components/dashboard/TeamNetwork.vue b/frontend/src/components/dashboard/TeamNetwork.vue
index 1cb4e3e..c4457dd 100644
--- a/frontend/src/components/dashboard/TeamNetwork.vue
+++ b/frontend/src/components/dashboard/TeamNetwork.vue
@@ -356,19 +356,20 @@ onUnmounted(() => {
{{ hero.role }}