Skip to content

Commit 5a4e843

Browse files
committed
fix(grid): use default arrow cursor on column header text
1 parent cd56c7b commit 5a4e843

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

projects/angular/components/ui-grid/src/ui-grid.component.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@
164164
[matTooltip]="column.title + (focusedColumnHeader ? ('\n' + column.description) : '')"
165165
[matTooltipDisabled]="resizeManager.isResizing"
166166
[attr.aria-label]="column.title + (column.description ? ('. ' + column.description) : '') + (column.sortable && intl.sortableMessage ? '. ' + intl.sortableMessage : '')"
167-
matTooltipClass="preserve-whitespace">
167+
matTooltipClass="preserve-whitespace"
168+
class="ui-grid-header-text">
168169
{{ column.title }}
169170
</p>
170171

projects/angular/components/ui-grid/src/ui-grid.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,10 @@ ui-grid {
373373
p {
374374
@extend %ellipse;
375375
}
376+
377+
.ui-grid-header-text {
378+
cursor: default;
379+
}
376380
}
377381

378382
.ui-grid-cell-content {

0 commit comments

Comments
 (0)