Fleet UI: [unreleased bug] Fix hover fill of reveal button (#13291)

This commit is contained in:
RachelElysia 2023-08-11 10:00:21 -04:00 committed by GitHub
parent 78d070d0b2
commit 449d0c99d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,4 +2,23 @@
display: inline-flex;
align-items: center;
padding: $pad-small $pad-xxsmall; // larger clickable area
svg {
path {
fill: none; // Chevron icon uses stroke color
}
}
&:hover,
&:focus {
.component__tooltip-wrapper__element {
color: $core-vibrant-blue-over;
}
svg {
path {
stroke: $core-vibrant-blue-over;
}
}
}
}