AAE-48705 Fix for datatable column name wrapping when hovering over it (#12081)

This commit is contained in:
Alex Molodyh
2026-07-29 21:00:54 -07:00
committed by GitHub
parent b8df098e35
commit f0c60b422d
2 changed files with 15 additions and 5 deletions
@@ -145,6 +145,7 @@
}
<span
class="adf-datatable-cell-header-sort-indicator"
[class.adf-datatable__header--sorted-asc]="isColumnSorted(col, 'asc')"
[class.adf-datatable__header--sorted-desc]="isColumnSorted(col, 'desc')"
>
@@ -562,17 +562,21 @@ $data-table-cell-min-width-file-size: $data-table-cell-min-width-1 !default;
align-items: center;
}
&.adf-sortable .adf-datatable-cell-header-sort-indicator {
display: inline-flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
flex: 0 0 24px;
min-width: 0;
}
.adf-datatable__header--sorted-asc,
.adf-datatable__header--sorted-desc {
padding-right: 0.25rem;
&::after {
@include mixins.typo-icon;
content: '\e5d8';
left: 5px;
right: 5px;
position: relative;
vertical-align: middle;
}
}
@@ -605,6 +609,11 @@ $data-table-cell-min-width-file-size: $data-table-cell-min-width-1 !default;
}
.adf-datatable-cell-header-drag-icon {
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 24px;
min-width: 0;
margin-left: auto;
cursor: move;
margin-right: -0.5rem;