Skip to content

Commit c58661a

Browse files
fix(Nodes): fix version column overflow
1 parent 44dd3b4 commit c58661a

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

src/components/CellWithPopover/CellWithPopover.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,11 @@
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;
18-
white-space: nowrap;
19-
text-overflow: ellipsis;
2017

2118
.g-popover__handler {
2219
display: inline;
@@ -27,7 +24,11 @@
2724
}
2825
}
2926
&__children-wrapper {
27+
overflow: hidden;
28+
3029
cursor: pointer;
30+
white-space: nowrap;
31+
text-overflow: ellipsis;
3132

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

src/containers/Storage/PaginatedStorageGroupsTable/columns/StorageGroupsColumns.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
}
88

99
&__pool-name-wrapper {
10-
overflow: hidden;
11-
12-
white-space: nowrap;
13-
text-overflow: ellipsis;
1410
direction: rtl;
1511
}
1612

0 commit comments

Comments
 (0)