mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
## #25038 Refactor to TooltipWrapper and add offset to the tooltips on hover of the profile aggregate status indicators. <img width="1345" alt="Screenshot 2024-12-29 at 9 00 38 PM" src="https://github.com/user-attachments/assets/3bf5cf3c-e9fc-47dc-aa07-9cef42edcae0" /> - [x] Changes file added for user-visible changes in `changes/`, - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
26 lines
425 B
SCSS
26 lines
425 B
SCSS
.status-indicator-with-icon {
|
|
// default layout is horizontal
|
|
&__value {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
|
|
.icon {
|
|
margin-right: $pad-xsmall;
|
|
}
|
|
|
|
span {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
// overrides for different layout
|
|
&__value-vertical {
|
|
flex-direction: column;
|
|
gap: $pad-xsmall;
|
|
}
|
|
|
|
.indicator-tip-text {
|
|
text-align: center;
|
|
}
|
|
}
|