Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -809,6 +809,14 @@ svg.graph > g.graph > polygon {
stroke: none !important;
}

/* The graph-level label (e.g. "Merge Queue") is a <text> directly under g.graph,
sitting on the transparent page background. Graphviz bakes it as black, which is
unreadable in dark mode. Use the theme text color so it adapts. Cluster and node
labels live in their own <g> and keep the colors set in the diagram. */
svg.graph > g.graph > text {
fill: var(--theme-text);
}

hr {
border: none;
border-bottom: 1px solid var(--theme-border-color);
Expand Down