mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
33 lines
618 B
SCSS
33 lines
618 B
SCSS
.performance-impact-cell {
|
|
.__react_component_tooltip {
|
|
@include tooltip-text;
|
|
}
|
|
}
|
|
|
|
.data-table__pill {
|
|
color: $core-fleet-black;
|
|
font-weight: $bold;
|
|
padding: 4px 12px;
|
|
border-radius: 29px;
|
|
|
|
span {
|
|
border-radius: 29px;
|
|
background-color: $core-fleet-purple;
|
|
}
|
|
&--undetermined {
|
|
color: $ui-fleet-black-50;
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
padding: 0;
|
|
border-radius: 0;
|
|
}
|
|
&--minimal {
|
|
background-color: $ui-fleet-black-10;
|
|
}
|
|
&--considerable {
|
|
background-color: $ui-fleet-black-25;
|
|
}
|
|
&--excessive {
|
|
background-color: $ui-fleet-black-50;
|
|
}
|
|
}
|