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:
parent
239f27ccee
commit
078d8c07bb
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue