2026-07-24 00:15:19 +00:00
|
|
|
:root {
|
|
|
|
|
--bg-color: #0f172a;
|
|
|
|
|
--text-main: #f8fafc;
|
|
|
|
|
--text-muted: #94a3b8;
|
|
|
|
|
--accent: #3b82f6;
|
|
|
|
|
--accent-hover: #2563eb;
|
2026-07-24 12:57:12 +00:00
|
|
|
--glass-bg: rgba(30, 41, 59, 0.75);
|
|
|
|
|
--glass-border: rgba(255, 255, 255, 0.12);
|
2026-07-24 00:15:19 +00:00
|
|
|
|
|
|
|
|
/* Chart Colors */
|
2026-07-24 12:57:12 +00:00
|
|
|
--color-running: #10b981;
|
|
|
|
|
--color-pending: #f59e0b;
|
|
|
|
|
--color-failed: #ef4444;
|
|
|
|
|
--color-unused: rgba(148, 163, 184, 0.2);
|
2026-07-24 00:15:19 +00:00
|
|
|
--color-node: rgba(30, 41, 59, 0.9);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
|
background-color: var(--bg-color);
|
|
|
|
|
color: var(--text-main);
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
background-image:
|
|
|
|
|
radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
|
|
|
|
|
radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.15) 0px, transparent 50%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100vh;
|
2026-07-24 12:57:12 +00:00
|
|
|
padding: 1.25rem;
|
|
|
|
|
gap: 1rem;
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.glass-panel {
|
|
|
|
|
background: var(--glass-bg);
|
2026-07-24 12:57:12 +00:00
|
|
|
backdrop-filter: blur(16px);
|
|
|
|
|
-webkit-backdrop-filter: blur(16px);
|
2026-07-24 00:15:19 +00:00
|
|
|
border: 1px solid var(--glass-border);
|
|
|
|
|
border-radius: 1rem;
|
|
|
|
|
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2026-07-24 12:57:12 +00:00
|
|
|
padding: 0.85rem 1.75rem;
|
|
|
|
|
z-index: 20;
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-24 13:20:03 +00:00
|
|
|
.logo-icon {
|
|
|
|
|
height: 32px;
|
|
|
|
|
width: auto;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-24 00:15:19 +00:00
|
|
|
.logo h1 {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: var(--text-main);
|
|
|
|
|
letter-spacing: -0.025em;
|
2026-07-24 12:57:12 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badge-3d {
|
|
|
|
|
background: linear-gradient(135deg, #3b82f6, #8b5cf6);
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 0.65rem;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
padding: 0.15rem 0.45rem;
|
|
|
|
|
border-radius: 0.375rem;
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 1rem;
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toggle-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
background: rgba(15, 23, 42, 0.6);
|
|
|
|
|
padding: 0.25rem;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
border: 1px solid var(--glass-border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toggle-btn {
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
border-radius: 0.375rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toggle-btn.active {
|
|
|
|
|
background: var(--accent);
|
|
|
|
|
color: white;
|
2026-07-24 12:57:12 +00:00
|
|
|
box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-buttons {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-btn {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
background: rgba(15, 23, 42, 0.6);
|
|
|
|
|
border: 1px solid var(--glass-border);
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
padding: 0.5rem 0.85rem;
|
|
|
|
|
font-size: 0.825rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-btn:hover {
|
|
|
|
|
background: rgba(30, 41, 59, 0.9);
|
|
|
|
|
color: var(--text-main);
|
|
|
|
|
border-color: rgba(255, 255, 255, 0.25);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-btn.active {
|
|
|
|
|
background: rgba(59, 130, 246, 0.2);
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
border-color: var(--accent);
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-content {
|
|
|
|
|
flex: 1;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-radius: 1rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.loading {
|
|
|
|
|
position: absolute;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
padding: 3rem;
|
2026-07-24 12:57:12 +00:00
|
|
|
z-index: 30;
|
2026-07-24 00:15:19 +00:00
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.loading.hidden {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spinner {
|
|
|
|
|
width: 3rem;
|
|
|
|
|
height: 3rem;
|
|
|
|
|
border: 3px solid rgba(255,255,255,0.1);
|
|
|
|
|
border-top-color: var(--accent);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
to { transform: rotate(360deg); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chart-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2026-07-24 12:57:12 +00:00
|
|
|
cursor: grab;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chart-container:active {
|
|
|
|
|
cursor: grabbing;
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
2026-07-24 12:57:12 +00:00
|
|
|
.navigation-hint {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 1rem;
|
|
|
|
|
left: 1rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
padding: 0.6rem 1rem;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
z-index: 10;
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
2026-07-24 12:57:12 +00:00
|
|
|
.navigation-hint kbd {
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
|
padding: 0.1rem 0.35rem;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--text-main);
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
2026-07-24 12:57:12 +00:00
|
|
|
.legend-panel {
|
|
|
|
|
position: absolute;
|
2026-07-24 13:28:05 +00:00
|
|
|
bottom: 1rem;
|
2026-07-24 12:57:12 +00:00
|
|
|
right: 1rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
padding: 0.75rem 1.1rem;
|
|
|
|
|
font-size: 0.775rem;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-24 13:20:03 +00:00
|
|
|
.version-overlay {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 1rem;
|
2026-07-24 13:28:05 +00:00
|
|
|
left: 1rem;
|
2026-07-24 13:20:03 +00:00
|
|
|
padding: 0.35rem 0.75rem;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
z-index: 10;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-24 12:57:12 +00:00
|
|
|
.legend-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
color: var(--text-muted);
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
2026-07-24 12:57:12 +00:00
|
|
|
.legend-dot {
|
|
|
|
|
width: 0.65rem;
|
|
|
|
|
height: 0.65rem;
|
|
|
|
|
border-radius: 50%;
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
2026-07-24 12:57:12 +00:00
|
|
|
.legend-dot.running { background-color: var(--color-running); box-shadow: 0 0 6px var(--color-running); }
|
|
|
|
|
.legend-dot.pending { background-color: var(--color-pending); box-shadow: 0 0 6px var(--color-pending); }
|
|
|
|
|
.legend-dot.failed { background-color: var(--color-failed); box-shadow: 0 0 6px var(--color-failed); }
|
|
|
|
|
.legend-dot.unused { background-color: #64748b; opacity: 0.5; }
|
|
|
|
|
|
|
|
|
|
.legend-divider {
|
|
|
|
|
height: 1px;
|
|
|
|
|
background: var(--glass-border);
|
|
|
|
|
margin: 0.25rem 0;
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
2026-07-24 12:57:12 +00:00
|
|
|
.legend-note {
|
|
|
|
|
font-size: 0.725rem;
|
|
|
|
|
color: var(--accent);
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip {
|
|
|
|
|
position: absolute;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
z-index: 100;
|
2026-07-24 12:57:12 +00:00
|
|
|
font-size: 0.85rem;
|
2026-07-24 00:15:19 +00:00
|
|
|
transition: opacity 0.2s ease, transform 0.1s ease;
|
2026-07-24 12:57:12 +00:00
|
|
|
min-width: 250px;
|
|
|
|
|
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip.hidden {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip-title {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
border-bottom: 1px solid var(--glass-border);
|
|
|
|
|
padding-bottom: 0.5rem;
|
|
|
|
|
word-break: break-all;
|
2026-07-24 12:57:12 +00:00
|
|
|
color: var(--text-main);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2026-07-24 12:57:12 +00:00
|
|
|
margin-bottom: 0.3rem;
|
2026-07-24 00:15:19 +00:00
|
|
|
gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip-label {
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip-value {
|
|
|
|
|
font-weight: 600;
|
2026-07-24 12:57:12 +00:00
|
|
|
color: var(--text-main);
|
2026-07-24 00:15:19 +00:00
|
|
|
}
|
2026-07-24 12:57:12 +00:00
|
|
|
|