Skip to content

Commit

Permalink
fix(editor): Hover and active states not showing in execution list on…
Browse files Browse the repository at this point in the history
… dark mode (#9002)

Co-authored-by: Giulio Andreini <[email protected]>
  • Loading branch information
RicardoE105 and gandreini authored Mar 29, 2024
1 parent 8788e2a commit bead7eb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions packages/design-system/src/css/_tokens.dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,9 @@
// Notification
--color-notification-background: var(--prim-gray-740);

// Execution card
--execution-card-background-hover: var(--color-foreground-base);

// NDV
--color-run-data-background: var(--prim-gray-800);
--color-ndv-droppable-parameter: var(--prim-color-primary);
Expand Down
1 change: 1 addition & 0 deletions packages/design-system/src/css/_tokens.scss
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@
--execution-card-border-waiting: var(--prim-color-secondary-tint-300);
--execution-card-border-running: var(--prim-color-alt-b-tint-250);
--execution-card-border-unknown: var(--prim-gray-120);
--execution-card-background-hover: var(--color-foreground-light);

// NDV
--color-run-data-background: var(--color-background-base);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export default defineComponent({
&:hover,
&.active {
.executionLink {
background-color: var(--color-foreground-light);
background-color: var(--execution-card-background-hover);
}
}
Expand Down

0 comments on commit bead7eb

Please sign in to comment.