feat: Jobs infrastructure, endpoints, UI and worker prioritization

This commit is contained in:
Richard
2026-07-06 19:58:23 +02:00
parent 33a52ed173
commit fb703b6c81
9 changed files with 321 additions and 26 deletions
+19 -3
View File
@@ -447,9 +447,25 @@ body {
.btn-primary { background: var(--primary); color: #000; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; transition: all 0.2s; }
.btn-primary:hover { filter: brightness(1.1); }
.tabs-nav { display: flex; gap: 12px; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 8px; flex-wrap: wrap; align-items: center; }
.btn-tab { white-space: nowrap; padding: 8px 16px; border-radius: 6px; font-size: 14px; transition: background 0.2s; }
.btn-tab:hover { background: var(--bg-input); }
.btn-tab.active { background: var(--bg-input); color: var(--primary) !important; border-bottom: 2px solid var(--primary) !important; }
.btn-tab {
white-space: nowrap;
padding: 8px 16px;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
transition: all 0.2s;
background: transparent;
color: var(--text-muted);
border: none;
cursor: pointer;
}
.btn-tab:hover { background: var(--bg-input); color: var(--text-primary); }
.btn-tab.active {
background: var(--bg-input);
color: var(--primary) !important;
border-bottom: 2px solid var(--primary) !important;
border-radius: 6px 6px 0 0;
}
.stat-group { margin-bottom: 16px; }
.stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 4px; }
.stat-value { font-size: 15px; font-weight: 600; color: var(--text-primary); }