简体   繁体   中英

Change mat-sort-header ascending/descending icon to custom like font-awesome caret-down/caret-up Angular 8

Trying to Change mat-sort-header default ascending/descending icon to custom icon(ie fontawesome caret-down) using Angular8/"@angular/material": "^7.3.7",

Not a great css developer searched through various links How to change angular material sort icon Creating custom arrow in Angular Material sort header Didn't fit my scenario.

在此处输入图片说明

Any help would be great.

you need to make display: none to other icons that are used for default icon. then use add content as CSS before selector and use content to show your font awesome icon.

[aria-sort="descending"] {
  ::ng-deep .mat-sort-header-arrow {
    .mat-sort-header-indicator {
      &::before {
        content: "<i class='fa fa-caret-down'>...</i>";
        top: -1.0em;
        position: absolute;
      }
    }
  }
}

Live Example: Stackblitz

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM