2022-02-28 21:25:06 +00:00
|
|
|
.component__tooltip-wrapper {
|
2024-06-11 11:56:50 +00:00
|
|
|
&.show-arrow {
|
|
|
|
|
@include tooltip5-arrow-styles;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-05 20:47:09 +00:00
|
|
|
display: inline-flex;
|
2022-03-22 21:33:25 +00:00
|
|
|
|
2023-11-10 21:31:11 +00:00
|
|
|
&__element {
|
|
|
|
|
white-space: nowrap;
|
2026-05-05 12:50:18 +00:00
|
|
|
line-height: inherit; // Same line height as parent
|
2023-11-10 21:31:11 +00:00
|
|
|
}
|
|
|
|
|
|
2026-05-05 12:50:18 +00:00
|
|
|
// text-decoration dashed cannot be used as it's not firefox compatible so must use border-bottom
|
|
|
|
|
// margin-bottom -1px is to compensate for the 1px height of the underline using border-bottom
|
2023-11-07 21:15:49 +00:00
|
|
|
&__underline {
|
|
|
|
|
width: fit-content;
|
|
|
|
|
border-bottom: 1px dashed $ui-fleet-black-50;
|
2026-05-05 12:50:18 +00:00
|
|
|
margin-bottom: -1px;
|
2022-02-28 21:25:06 +00:00
|
|
|
}
|
2022-10-04 14:03:51 +00:00
|
|
|
|
2022-02-28 21:25:06 +00:00
|
|
|
&__tip-text {
|
2023-12-14 19:49:56 +00:00
|
|
|
@include tooltip-text;
|
2022-02-28 21:25:06 +00:00
|
|
|
}
|
2022-03-22 21:33:25 +00:00
|
|
|
}
|