Merge pull request #2914 from apoapostolov/fix/topology-controls-dark-mode

fix(dashboard): theme ReactFlow Controls +/- buttons for dark mode
This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-05-29 17:11:22 -03:00
committed by GitHub

View File

@@ -412,3 +412,18 @@ select option {
background-color: var(--color-surface);
color: var(--color-text-main);
}
/* ReactFlow Controls (zoom +/- buttons) dark mode theming */
.react-flow__controls-button {
background-color: var(--color-surface);
border-bottom-color: var(--color-border);
fill: var(--color-text-main);
}
.react-flow__controls-button:hover {
background-color: var(--color-bg-subtle);
}
.react-flow__controls-button svg {
fill: var(--color-text-main);
}