Fix waterfall and comparison dark mode backgrounds

This commit is contained in:
2025-12-28 02:24:18 +11:00
parent 4ca5ab1d71
commit 038e62415a
2 changed files with 6 additions and 6 deletions

View File

@@ -66,7 +66,7 @@
} }
.delta.neutral { .delta.neutral {
background: var(--color-border); background: var(--color-bg-tertiary);
color: var(--color-text-secondary); color: var(--color-text-secondary);
} }
</style> </style>

View File

@@ -18,7 +18,7 @@
.waterfall-canvas { .waterfall-canvas {
width: 100%; width: 100%;
overflow-x: auto; overflow-x: auto;
background: white; background: var(--color-bg-tertiary);
border-radius: 8px; border-radius: 8px;
padding: 1rem; padding: 1rem;
} }
@@ -33,7 +33,7 @@
} }
.waterfall-row:hover { .waterfall-row:hover {
background: rgba(114, 9, 183, 0.1); background: rgba(114, 9, 183, 0.2);
} }
.request-label { .request-label {
@@ -76,10 +76,10 @@
top: 50%; top: 50%;
left: 50%; left: 50%;
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
background: white; background: var(--color-bg-secondary);
padding: 2rem; padding: 2rem;
border-radius: 12px; border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.3); box-shadow: 0 10px 40px rgba(0,0,0,0.5);
max-width: 800px; max-width: 800px;
max-height: 80vh; max-height: 80vh;
overflow-y: auto; overflow-y: auto;
@@ -93,7 +93,7 @@
left: 0; left: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
background: rgba(0,0,0,0.5); background: rgba(0,0,0,0.7);
z-index: 999; z-index: 999;
} }