Skip to content

Commit a4a9331

Browse files
committed
fix(CellWithPopover): text overflow with ellipsis
1 parent baf5a6f commit a4a9331

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/CellWithPopover/CellWithPopover.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@
99

1010
&__popover {
1111
display: inline-block;
12-
overflow: hidden;
1312

1413
max-width: 100%;
1514
padding: var(--g-spacing-4);
1615

1716
vertical-align: middle;
1817
white-space: nowrap;
19-
text-overflow: ellipsis;
2018

2119
.g-popover__handler {
2220
display: inline;
@@ -27,7 +25,10 @@
2725
}
2826
}
2927
&__children-wrapper {
28+
overflow: hidden;
29+
3030
cursor: pointer;
31+
text-overflow: ellipsis;
3132

3233
&_full-width {
3334
width: 100%;

0 commit comments

Comments
 (0)