mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-21 23:58:06 +00:00
16 lines
291 B
SCSS
16 lines
291 B
SCSS
.truncated-text-with-tooltip {
|
|
display: block;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
|
|
&__tooltip {
|
|
overflow-wrap: break-word;
|
|
|
|
// Allows component to correctly render tooltips on hover for modals
|
|
&#{&} {
|
|
z-index: z('modal');
|
|
}
|
|
}
|
|
}
|