How to change angular material sort icon

前端 未结 6 1100
半阙折子戏
半阙折子戏 2021-01-12 06:27

I need to change default arrow icon from angular material matSort to a custom arrow.

The current code

 

        
6条回答
  •  执念已碎
    2021-01-12 06:39

    @Artur

    You can try this

    [aria-sort='ascending'] {
      ::ng-deep .mat-sort-header-arrow{
        .mat-sort-header-indicator {
          &::before{
            font: normal normal normal 1.1rem/1 FontAwesome;
            content: "\f0d7";
            position: absolute;
            top: .2rem;
          }
        }
      }
    }
    
    [aria-sort='descending'] {
      ::ng-deep .mat-sort-header-arrow { 
        .mat-sort-header-indicator {
          &::before{
            font: normal normal normal 1.1rem/1 FontAwesome;
            content: "\f0d8";
            position: absolute;
            top: -.9rem;
          }
        }
      }
    }

提交回复
热议问题