Fas 1a punkt 3+4: worker-härdning (DLQ, larm, multi-instance), AAMOS training export

This commit is contained in:
Sven (AAMOS AI)
2026-08-05 23:32:18 +07:00
parent d1455fb581
commit b2b6601f54
15 changed files with 9355 additions and 32 deletions
+48
View File
@@ -124,3 +124,51 @@ input, select {
.stat .value { font-size: 1.6rem; font-weight: 700; }
.stat .label { color: var(--muted); font-size: 0.8rem; }
.row { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.card {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.25rem;
margin-bottom: 1.25rem;
}
.card h3 { margin-top: 0; }
.metrics { display: flex; gap: 1rem; flex-wrap: wrap; }
.metric {
background: var(--bg);
border: 1px solid var(--border);
border-radius: 10px;
padding: 0.75rem 1rem;
min-width: 90px;
}
.metric .value { font-size: 1.4rem; font-weight: 700; }
.metric .label { color: var(--muted); font-size: 0.8rem; }
.btn {
background: var(--brand);
color: #fff;
border: none;
padding: 0.45rem 0.9rem;
border-radius: 8px;
cursor: pointer;
font-size: 0.9rem;
}
.btn:hover { background: var(--brand-dark); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn.small { padding: 0.25rem 0.55rem; font-size: 0.8rem; }
.btn.danger { background: var(--danger); }
.alert {
padding: 0.75rem 1rem;
border-radius: 8px;
margin-bottom: 1rem;
}
.alert.err { background: #fee2e2; color: var(--danger); }
.ellipsis {
max-width: 280px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}