1
0
Fork 0
mirror of synced 2024-10-03 10:36:59 +13:00

Fix: Text overlap in data table#961

fix: Text overlap in data table #961

This fix clamps the text to one line and hides the overflow with an ellipsis.
This commit is contained in:
Joe 2021-01-07 12:15:55 +00:00
parent 239f27ccee
commit 078d8c07bb

View file

@ -103,6 +103,15 @@
opacity: 1;
}
.column-header-name {
white-space: normal !important;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
}
.sort-icon {
position: relative;
top: 2px;