mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
Fleet UI: [unreleased bug] Fix hover fill of reveal button (#13291)
This commit is contained in:
parent
78d070d0b2
commit
449d0c99d5
1 changed files with 19 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue