Skip to content

Commit

Permalink
fix(ui): RunInfo - show help icon on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
vio committed May 21, 2023
1 parent 4e987da commit 6e0b45a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/ui/src/components/run-info/run-info.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,19 @@
width: 5em;
}

/* Hover state */
.titleIcon span[aria-controls=""] {
opacity: 0;
visibility: none;
transition: var(--ui-transition-out);
}

.root:hover .titleIcon span {
opacity: 1;
visibility: visible;
transition: var(--ui-transition-in);
}

/* Size large */
.large .info {
margin-top: var(--space-xxsmall);
Expand Down

0 comments on commit 6e0b45a

Please sign in to comment.