AAE-48705 Fix for datatable column name wrapping when hovering over it

This commit is contained in:
Alex Molodyh
2026-07-27 13:37:21 -07:00
parent b6ae479cd0
commit 822b155cf7
2 changed files with 15 additions and 5 deletions
@@ -145,6 +145,7 @@
} }
<span <span
class="adf-datatable-cell-header-sort-indicator"
[class.adf-datatable__header--sorted-asc]="isColumnSorted(col, 'asc')" [class.adf-datatable__header--sorted-asc]="isColumnSorted(col, 'asc')"
[class.adf-datatable__header--sorted-desc]="isColumnSorted(col, 'desc')" [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; 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-asc,
.adf-datatable__header--sorted-desc { .adf-datatable__header--sorted-desc {
padding-right: 0.25rem;
&::after { &::after {
@include mixins.typo-icon; @include mixins.typo-icon;
content: '\e5d8'; content: '\e5d8';
left: 5px;
right: 5px;
position: relative;
vertical-align: middle; 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 { .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; margin-left: auto;
cursor: move; cursor: move;
margin-right: -0.5rem; margin-right: -0.5rem;