Revert "Feature: 15605 merge inherited queries and policies"

This commit is contained in:
RachelElysia
2024-05-07 13:30:39 -04:00
committed by GitHub
parent 9e66ef6b34
commit e92e76aee3
56 changed files with 801 additions and 1686 deletions
@@ -56,6 +56,7 @@ const DropdownOptionTooltipWrapper = ({
clickable={clickable}
offset={offset}
positionStrategy="fixed"
classNameArrow="tooltip-arrow"
>
{tipContent}
</ReactTooltip5>
@@ -17,5 +17,21 @@
text-align: center;
}
@include tooltip5-arrow-styles;
// arrow styles directly from react-tooltip-5 css
.tooltip-arrow {
width: 8px;
height: 8px;
}
[class*="react-tooltip__place-top"] > .styles-module_arrow__K0L3T {
transform: rotate(45deg);
}
[class*="react-tooltip__place-right"] > .styles-module_arrow__K0L3T {
transform: rotate(135deg);
}
[class*="react-tooltip__place-bottom"] > .styles-module_arrow__K0L3T {
transform: rotate(225deg);
}
[class*="react-tooltip__place-left"] > .styles-module_arrow__K0L3T {
transform: rotate(315deg);
}
}